Osclass forums
Support forums => Themes => Modern => Topic started 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
-
Hi,
try
<?php echo osc_city(); ?>
the _e() is calling the translation file.
-
not returing anything........
blank output
-
Hi,
Should be osc_city_name()
Regards
-
i tried
echo osc_city();
echo osc_city_name();
echo osc_region();
echo osc_country();
echo osc_region_name();
no result nothing is shwing
-
What theme are you using?
-
modern theme
-
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
-
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
-
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
-
it is giving chennai.domainname.com . how to make it to show only chennai
-
My mistake, no http:// there:
<?php echo ucwords(preg_replace("~^(.*?)\..*$~", "$1", $_SERVER[HTTP_HOST])); ?>
-
great ...thank you
-
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(); ?>
......
-----------------------------------------------------------------------------
-
Hello,
To show the current search city use <?php echo osc_search_city(); ?>. The code that @teseo provided was for subdomains.
Regards.
-
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.)
-
So you want this code: <?php echo ucwords(preg_replace("~^(.*?)\..*$~", "$1", $_SERVER[HTTP_HOST])); ?> to output region name and not slug?
Use this then:
<?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.
-
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.
-
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.
echo (osc_search_city() != '') ? osc_search_city() : osc_search_region();
Regards.
-
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.
-
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.
-
thanks a lot , in witch file i have to put the code?
-
maybe change in function.php
---------------------------------------------------------------------------
/* 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>';
}
}
}
-
Yes, change osc_base_url() with my code.
Regards.
-
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:
/* 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 */
-
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:
<?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_exists( osc_uploads_path() . $logo ) ) {
return $html;
} else {
return '<a href="'.$link.'">'.osc_page_title().'</a>';
}
}
}
/* logo */
Regards.