Rich B
Forum Replies Created
-
AuthorPosts
-
Guys, im loading the site in Chrome with AdBlock installed and it blocks all the stylesheets from loading, so the site just looks like a jumble of text. AdBlock is pretty popular and lot of people have it installed.
Sorry for any confusion, if I turn off AdBlock I can see the site just fine.
Thanks
RichPaolo thanks! How could we do the same thing?
Is it listening for certain city names?Thanks
RichThis reply has been marked as private.Hi Adele
It looks like your CSS files are not loading which would cause this issue. GD Booster does not seem to be caching them correctly, there are errors in the inspector console.
Rich
Have done a lot of GD customisations and would be interested, email me with the details if you still need someone: [email protected]
Happy to take a look at this for you, email me: [email protected]
Weird, the update on my local does not work but on the live site it does, sorry to have bothered you!
Hi Simone
Thanks, thats fixed the database but the near search will still only find my default location and none of the other listings…
Thanks
Ah for mine it does not, if I set the city as London and the region as Greater London when i select the autocomplete it searched for ‘In: London (City)’
Ok found a solution, this only works if you have ticked the option to force Yoast to re-write the head meta.
Essentially the code below takes the original geo injected output from yoast for the homepage, removes it and replaces it with the actual yoast meta:
// Remove default geo_homepage meta and replace with yoast function yoast_get_home_title() { return get_bloginfo('name'); } function yoast_get_home_description() { $homeid = get_option('page_on_front'); return get_post_meta($homeid, '_yoast_wpseo_metadesc', true); } function yoast_get_home_url() { return get_bloginfo('url'); } function geodir_wpseo_homepage_meta() { global $post; if ( is_home() ) { add_filter('geodir_add_meta_keywords' , '__return_false', 1) ; add_filter( 'wpseo_title', '__return_false', 1 ); add_filter( 'wpseo_metadesc', '__return_false', 1 ); add_filter( 'wpseo_canonical', '__return_false', 1 ); add_filter( 'wpseo_title', 'yoast_get_home_title', 2 ); add_filter( 'wpseo_metadesc', 'yoast_get_home_description', 2 ); add_filter( 'wpseo_canonical', 'yoast_get_home_url', 2 ); } } add_filter( 'wp_head', 'geodir_wpseo_homepage_meta', 1 );
Still having the same issue, tried Michaels solution and its still not working 🙁
Hi Yvette sorry about that, please email me on [email protected]
This reply has been marked as private.Hi Stiofan
That works perfectly thank you so much!
Even the forgot password form is working now 🙂
RichThis reply has been marked as private. -
AuthorPosts