Osclass forums

Support forums => Themes => Modern => Topic started by: mandi007 on June 06, 2014, 09:02:29 am

Title: how to print the current city name the user is viewing
Post by: mandi007 on June 06, 2014, 09:02:29 am
i used the <?php _e(osc_city() ); ?> 


but it is giving some Project-Id-Version: Osclass Report-Msgid-Bugs-To: http://osclass.org/ (http://osclass.org/) POT-Creation-Date: 2013-12-03 16:09:49+00:00 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PO-Revision-Date: 2013-12-03 17:37+0100 Last-Translator: _CONEJO Language-Team: Translations


please give me some suggestions
Title: Re: how to print the current city name the user is viewing
Post by: cartagena68 on June 06, 2014, 09:41:12 am
Hi,
 try

<?php echo osc_city(); ?>

the _e() is calling the translation file.
Title: Re: how to print the current city name the user is viewing
Post by: mandi007 on June 06, 2014, 10:07:53 am
not returing anything........


blank output
Title: Re: how to print the current city name the user is viewing
Post by: teseo on June 06, 2014, 01:34:08 pm
Hi,

Should be osc_city_name()

Regards
Title: Re: how to print the current city name the user is viewing
Post by: mandi007 on June 06, 2014, 02:47:33 pm
i tried
 echo osc_city();
 echo osc_city_name();
echo osc_region();
 echo osc_country();
 echo osc_region_name();
no result nothing is shwing
Title: Re: how to print the current city name the user is viewing
Post by: teseo on June 06, 2014, 02:55:18 pm
What theme are you using?
Title: Re: how to print the current city name the user is viewing
Post by: mandi007 on June 06, 2014, 03:23:39 pm
modern theme
Title: Re: how to print the current city name the user is viewing
Post by: teseo on June 06, 2014, 03:50:09 pm
I assume you're not referring to item view (I think osc_city_name() should work there), but search page (Ads list), try this:

<?php echo Params::getParam('sCity'); ?>

Regards
Title: Re: how to print the current city name the user is viewing
Post by: mandi007 on June 06, 2014, 03:57:13 pm
No actually what i want is .....if a user come to my site and if he choose a subdomain  say for example chennai and after clicking it i want to show in home page like "find ads in chennai" for registered and also not registered user.  i want to print the user current viewing location name in homepage
Title: Re: how to print the current city name the user is viewing
Post by: teseo on June 06, 2014, 04:21:27 pm
You should have started explaining exactly that, a lot of time wasted here...  :-\

Sorry, no experience with subdomains. You might extract the city part of the subdomain:

<?php echo ucwords(preg_replace("~http://(.*?)\..*$~", "$1", $_SERVER[HTTP_HOST])); ?>

This should give you "Chennai" when your enter http://chennai.yourdomain.com (http://chennai.yourdomain.com), but wouldn't cover cities with name having more than one word. If you have any I'd need to know how the URL looks like... For instance, "Ashok Nagar" would appear as http://ashok-nagar.yourdomain.com? (http://ashok-nagar.yourdomain.com?)  ???

Regards
Title: Re: how to print the current city name the user is viewing
Post by: mandi007 on June 06, 2014, 08:40:14 pm
it is giving chennai.domainname.com . how to make it to show only chennai
Title: Re: how to print the current city name the user is viewing
Post by: teseo on June 06, 2014, 08:53:28 pm
My mistake, no http:// there:

<?php echo ucwords(preg_replace("~^(.*?)\..*$~", "$1", $_SERVER[HTTP_HOST])); ?>
Title: Re: how to print the current city name the user is viewing
Post by: mandi007 on June 08, 2014, 08:35:36 pm
great ...thank you
Title: Re: how to print the current city name the user is viewing
Post by: omid_firoznia on January 19, 2019, 11:02:26 pm
Hi
many thanks for :
<?php echo ucwords(preg_replace("~^(.*?)\..*$~", "$1", $_SERVER[HTTP_HOST])); ?>

but right now its print | (s_slug) | please let me know what is i have to change, that it print | (s_name) |?

what i want exactly is when any users (registered or not registered) going to a region or a city url, the name of that region Or city showing up before or after logo.

(https://i.imgur.com/QeGIsZY.jpg)


i put it in header.php as below:

-----------------------------------------------------------------------------
......
    </div>
    <div class="clear"></div>
    <div class="wrapper">
        <div id="logo"><?php echo ucwords(preg_replace("~^(.*?)\..*$~", "$1", $_SERVER[HTTP_HOST])); ?>
            <?php echo logo_header(); ?>
......
-----------------------------------------------------------------------------
Title: Re: how to print the current city name the user is viewing
Post by: WEBmods on January 20, 2019, 01:55:33 am
Hello,

To show the current search city use <?php echo osc_search_city(); ?>. The code that @teseo provided was for subdomains.

Regards.
Title: Re: how to print the current city name the user is viewing
Post by: omid_firoznia on January 20, 2019, 03:40:04 pm
Thanks a lot.

I use region as subdomain , what shall I do about them that show name of region ?
I mean for region only showing region name and for city only showing city name? (Right now city name is ok.)
Title: Re: how to print the current city name the user is viewing
Post by: WEBmods on January 20, 2019, 03:53:50 pm
So you want this code: <?php echo ucwords(preg_replace("~^(.*?)\..*$~", "$1", $_SERVER[HTTP_HOST])); ?> to output region name and not slug?

Use this then:

Code: [Select]
<?php echo Region::newInstance()->findBySlug(ucwords(preg_replace("~^(.*?)\..*$~""$1"$_SERVER[HTTP_HOST])))['s_name']; ?>

It will search for the region by its slug and output its name.

Regards.
Title: Re: how to print the current city name the user is viewing
Post by: omid_firoznia on January 23, 2019, 05:52:15 pm
thanks a lot.

if i don't use sub-domain how can i combain <?php echo osc_search_city(); ?> and <?php echo osc_search_region(); ?> to show the name , But i want when its in a city just show name of city with out region name.
Title: Re: how to print the current city name the user is viewing
Post by: WEBmods on January 25, 2019, 01:41:15 am
osc_search_region() and osc_search_city() will only work for search.

Use this to show only city when a region is selected or only region when no city is selected.

Code: [Select]
echo (osc_search_city() != '') ? osc_search_city() : osc_search_region();

Regards.
Title: Re: how to print the current city name the user is viewing
Post by: omid_firoznia on January 30, 2019, 06:28:47 pm
thanks a lot.    ;)    :)    im very thanks full.   ;)
--------------------------------------------------------------------------------

1-how to set {logo name} link that when in city or region or region name clicking on it its goes to first page of That city or region not HomePage.


2-also how to put this LINK on city name and region name that showing on header.
Title: Re: how to print the current city name the user is viewing
Post by: WEBmods on January 30, 2019, 08:32:35 pm
You need to put an anchor (https://www.w3schools.com/html/html_links.asp) with the href attribute of "echo (osc_search_city() != '') ? osc_search_url(array('sCity' => osc_search_city())) : osc_search_url(array('sRegion' => osc_search_region()));"

Regards.
Title: Re: how to print the current city name the user is viewing
Post by: omid_firoznia on January 31, 2019, 05:07:52 am
thanks a lot , in witch file i have to put the code?
Title: Re: how to print the current city name the user is viewing
Post by: omid_firoznia on January 31, 2019, 05:39:00 am
maybe change in function.php

---------------------------------------------------------------------------
Code: [Select]
  /* logo */
    if( !function_exists('logo_header') ) {
        function logo_header() {
             $logo = osc_get_preference('logo','bender');
             $html = '<a href="'.osc_base_url().'"><img border="0" alt="' . osc_page_title() . '" src="' . bender_logo_url() . '"></a>';
             if( $logo!='' && file_exists( osc_uploads_path() . $logo ) ) {
                return $html;
             } else {
                return '<a href="'.osc_base_url().'">'.osc_page_title().'</a>';
            }
        }
    }
Title: Re: how to print the current city name the user is viewing
Post by: WEBmods on January 31, 2019, 08:51:53 am
Yes, change osc_base_url() with my code.

Regards.
Title: Re: how to print the current city name the user is viewing
Post by: omid_firoznia on January 31, 2019, 07:21:35 pm
I did as you said but doesn't work!
getting this error:

Parse error: syntax error, unexpected '') ? osc_search_url(array('' (T_CONSTANT_ENCAPSED_STRING) in public_html/oc-content/themes/bender/functions.php on line 176

here is the code:

Code: [Select]
    /* logo */
    if( !function_exists('logo_header') ) {
        function logo_header() {
             $logo = osc_get_preference('logo','bender');
             $html = '<a href="echo (osc_search_city() != '') ? osc_search_url(array('sCity' => osc_search_city())) : osc_search_url(array('sRegion' => osc_search_region()));"><img border="0" alt="' . osc_page_title() . '" src="' . bender_logo_url() . '"></a>';
             if( $logo!='' && file_exists( osc_uploads_path() . $logo ) ) {
                return $html;
             } else {
                return '<a href="echo (osc_search_city() != '') ? osc_search_url(array('sCity' => osc_search_city())) : osc_search_url(array('sRegion' => osc_search_region()));">'.osc_page_title().'</a>';
            }
        }
    }
    /* logo */
Title: Re: how to print the current city name the user is viewing
Post by: WEBmods on January 31, 2019, 08:16:16 pm
Here goes full code that will make logo go to home on all pages but search pages, when on search page it goes to city or region:

Code: [Select]
<?php
    
/* logo */
    
if( !function_exists('logo_header') ) {
        function 
logo_header() {
             
$link osc_base_url();
             if(
osc_is_search_page()) {
                 
$city osc_search_city();
                 
$region osc_search_region_id();
                 if(
$city != '') {
                     
$link osc_search_url(array('sCity' => $city));
                 } elseif(
$region != '') {
                     
$link osc_search_url(array('sRegion' => $region));
                 }
             }
             
$logo osc_get_preference('logo','bender');
             
$html '<a href="'.$link.'"><img border="0" alt="' osc_page_title() . '" src="' bender_logo_url() . '"></a>';
             if( 
$logo!='' && file_existsosc_uploads_path() . $logo ) ) {
                return 
$html;
             } else {
                return 
'<a href="'.$link.'">'.osc_page_title().'</a>';
            }
        }
    }
    
/* logo */

Regards.