Dave
Forum Replies Created
-
Forum: Plugins
In reply to: [Media File Renamer: Rename for better SEO (AI-Powered)] ApostrophesGreat! Either a hyphen or an underscore should help with SEO ??
Forum: Plugins
In reply to: [WP Store Locator] Start Marker is Placed on the Equator Near AfricaI 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!
Forum: Plugins
In reply to: [WP Store Locator] Start Marker is Placed on the Equator Near AfricaClearing 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.
Forum: Plugins
In reply to: [Multipage] WordPress SEO by Yoast compatibility issue@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
Forum: Plugins
In reply to: [Multipage] WordPress SEO by Yoast compatibility issue@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?
Forum: Plugins
In reply to: [Multipage] WordPress SEO by Yoast compatibility issue@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.
Forum: Plugins
In reply to: [Multipage] WordPress SEO by Yoast compatibility issueWP 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.
Forum: Plugins
In reply to: [Multipage] WordPress SEO by Yoast compatibility issue@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!
Forum: Plugins
In reply to: [WP-Ban] Doesn't work for all ips@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.
Forum: Plugins
In reply to: [Better Anchor Links] idbal16 Undefined ConstantIt 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?