Forum Replies Created

Viewing 10 replies - 46 through 55 (of 55 total)
  • Thread Starter Dave

    (@csn123)

    Great! Either a hyphen or an underscore should help with SEO ??

    Thread Starter Dave

    (@csn123)

    I think my theme might have been interfering with the code somehow. I disabled all the plugins, switched the theme over to the default TwentySixteen theme and could see the dropdown box.

    I’ve set the default address and reverted all other changes. Everything now looks and works like it should.

    Many thanks for your help!

    Thread Starter Dave

    (@csn123)

    Clearing the cache doesn’t change anything.

    The address doesn’t autocomplete in the admin. Checking my (Firefox) browser errors it comes up with this:

    Error: TypeError: google.maps.places is undefined
    Source File: /wp-content/plugins/wp-store-locator/admin/js/wpsl-admin.min.js
    Line: 1

    Viewing the source for the map display page it reveals:

    "zoomLatlng":""

    It sounds like a JS conflict might be the issue here.

    Thread Starter Dave

    (@csn123)

    @sergio – I’ve cracked it!

    In sgr-nextpage-titles.php on line 133 it reads:

    add_filter( 'wp_title',array( &$this, 'enhance_title' ), 30 );

    When the force option is on WordPress SEO favours “wpseo_title” using different priority settings (100 instead of 30). Changing line 133 to read as follows fixes the problem:

    add_filter( 'wp_title',array( &$this, 'enhance_title' ), 30 );
    add_filter( 'wpseo_title',array( &$this, 'enhance_title' ), 100 );

    Thank you very much for your help with all of this.

    Dave

    Thread Starter Dave

    (@csn123)

    @sergio – Thanks for the link. I am very jealous it works for you!

    On digging around a bit further it seems the WordPress SEO option in SEO > Titles & Metas entitled “Enable force rewrite titles” messes up the titles for me. If I disable this my titles mess up and look awful, but as a glimmer of hope the titles display as:

    POSTNAME – SECTIONTITLE Of 3 – SITETITLE SITETITLE

    Enabling the option cleans the title up but removes the section title, taking it back to:

    POSTNAME – PAGE 1 OF 3 – SITETITLE

    If you “Enable force rewrite titles” does the same happen on your installation?

    Thread Starter Dave

    (@csn123)

    @sergio – Thanks for your continued help.

    Am I using the correct SEO title structure? Am I right in thinking the %%page%% section of the title is re-purposed the section title hook?

    I wonder if a dedicated command could be used instead, such as %%multipage%% ? Having not delved into the world of Yoast’s SEO code I don’t know how feasible this would be.

    Thread Starter Dave

    (@csn123)

    WP 4.2.1 in default American English, WordPress SEO 2.1.1 and Multipage Plugin 1.2.4.

    My SEO title structure is:

    %%title%% %%page%% %%sep%% %%sitename%%

    What setup are you testing it on, and what is your SEO title structure?

    Thanks for your help.

    Thread Starter Dave

    (@csn123)

    @sergio – Thank you for looking into this. I’ve updated my plugin to the latest version (1.2.4) but the titles are still showing as “POSTNAME – PAGE 1 OF 3 – SITETITLE” rather than “POSTNAME – SECTIONTITLE – SITETITLE”

    Is there a way to get the section title to appear in the title tag instead of the page numbers?

    Thanks for your help!

    @lester – I’ve noticed the same problem on mine. The IP address 195.189.249.105 is one I’ve noticed that doesn’t seem to be blocked, despite being added to the “Banned IPs:” section of the plugin on its own line.

    I don’t know what makes it special. Other IPs seem to be blocked but every now and then ones like the above seem to slip through.

    Thread Starter Dave

    (@csn123)

    It looks like the bug is with this line:

    wp_register_sidebar_widget(idbal16,'Better Anchor Links', array(&$this, 'widget'));

    idbal16 should have quotes around it – i.e.:

    wp_register_sidebar_widget('idbal16','Better Anchor Links', array(&$this, 'widget'));

    This removes the error message in Debug Bar.

    Can this mod be added to the plugin?

Viewing 10 replies - 46 through 55 (of 55 total)