Rich B

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 31 total)
  • Author
    Posts
  • in reply to: Stars #37960

    Rich B
    Free User
    Post count: 36

    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
    Rich

    in reply to: Search Permalinks are messy #37952

    Rich B
    Free User
    Post count: 36

    Paolo thanks! How could we do the same thing?
    Is it listening for certain city names?

    Thanks
    Rich

    in reply to: Search Permalinks are messy #37950

    Rich B
    Free User
    Post count: 36
    This reply has been marked as private.
    in reply to: Stars #37917

    Rich B
    Free User
    Post count: 36

    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

    in reply to: need developer for finetuning and finishing #34553

    Rich B
    Free User
    Post count: 36

    Have done a lot of GD customisations and would be interested, email me with the details if you still need someone: rich@iwantthiswebsite.com

    in reply to: Need someone to fix ratings/reviews plugin #34552

    Rich B
    Free User
    Post count: 36

    Happy to take a look at this for you, email me: rich@iwantthiswebsite.com

    in reply to: Inconsistent database after upgrade #32137

    Rich B
    Free User
    Post count: 36

    Weird, the update on my local does not work but on the live site it does, sorry to have bothered you!

    in reply to: Inconsistent database after upgrade #32112

    Rich B
    Free User
    Post count: 36

    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

    in reply to: Nearby autocomplete – strange entried #30692

    Rich B
    Free User
    Post count: 36

    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)’

    in reply to: Meta title bug with SEO plugins #30056

    Rich B
    Free User
    Post count: 36

    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 );
    in reply to: Meta title bug with SEO plugins #30008

    Rich B
    Free User
    Post count: 36

    Still having the same issue, tried Michaels solution and its still not working 🙁

    in reply to: Tidy up with Virtue theme #29720

    Rich B
    Free User
    Post count: 36

    Hi Yvette sorry about that, please email me on rich@iwantthiswebsite.com

    in reply to: Tidy up with Virtue theme #28435

    Rich B
    Free User
    Post count: 36
    This reply has been marked as private.
    in reply to: Custom login form #28354

    Rich B
    Free User
    Post count: 36

    Hi Stiofan
    That works perfectly thank you so much!
    Even the forgot password form is working now 🙂
    Rich

    in reply to: Custom login form #28297

    Rich B
    Free User
    Post count: 36
    This reply has been marked as private.
Viewing 15 posts - 1 through 15 (of 31 total)