paulc123
Forum Replies Created
-
Thanks so much for your quick support, it is very much appreciated. Oddly this was not in my source:
<meta name="tsf:aqp" value="1" />However adding this DID fix the problem:
add_filter( 'the_seo_framework_query_supports_seo', '__return_false' );As I’m sure you know it stops the whole SEO Framework block appearing for these particular pages, which is great. I can do some spefic work for these.
I appreciate that as you say, loading
wp-load.phpdirectly is an unusual approach but in this case works for the specific siutation.- This reply was modified 3 months, 1 week ago by paulc123.
Forum: Plugins
In reply to: [which template file] noindex being added automaticallySorry, realise I posted this on wrong plugin support thread. Please ignore, have marked as resolved.
Forum: Plugins
In reply to: [WP-PageNavi] Plugin Not UpdatedIt concerned me until I scrolled down here and saw comments from the author. Basically it’s not abandoned, works fine, and being monitored. Just hasn’t bumped the version to remove that message. A sticky might make this clear.
The same has happened to me. A couple of months ago I noticed this happening and as the site only sells products later in the year I unpublished the page. It stopped the fraudulent payment attempts. Then last week it started again even though the form was not accessible on the site. So with captcha or not it makes no difference. I had to deactivate the plugin.
Same problem as @whereverpanda
Had to remove the bracket otherwise the site went down. After this editors can now see the submission page and select a form. But the page hangs. Have had to make a client an administrator to see submissions.
FWIW I had this in wp-config.php:
define( ‘UPLOADS’, ”.’media’ );WordPress Download Manager used to ignore this and use the standard uploads folder. Now it doesn’t.
I’ve just tried uploading a new document and for that one when I “Generate Download Link” and copy & paste the URL into a browser I can see the file. I tried editing and updating an existing download but this didn’t work.
Forum: Plugins
In reply to: [Custom Post Type UI] Huge Icon after updateA hard refresh (CTRL+F5) on Windows resolved this for me.
Hi Draakjuh
I had the same problem so assumed this hadn’t been done yet. Anyway a hack …
<?
if (is_archive()){ if(is_year()){//in media archive custom post type browsing by year echo '<a title="Go to Home." href="/">Home</a> > <a title="Go to Media Center." href="/media-center/">Media Center</a> > <a href="/media-center/media-archive/">Media Archive</a> > '; echo get_the_date( 'Y' ); }else{//in monthly news archive echo '<a title="Go to Home." href="/">Home</a> > <a title="Go to Media Center." href="/">Media Center</a> > '; echo get_the_date( 'F' ); } }else{//not in archive -just use the breadcrumb if(function_exists('bcn_display')) { bcn_display(); } }?>