darrencss
Forum Replies Created
-
Forum: Plugins
In reply to: [Genesis Grid] Wrong Featured Image Size DisplayedFigured this out as an issue with ‘wordpress responsive images’. So what happens is the grid is using the image as intended but wordpress is adding all the alternative image options to your source code.
This means if you open the image you get the maximum size that will fit your screen.
So this useful function that nobody wanted or needed can be disabled thus:
//* Disable Responsive Images
add_filter( ‘max_srcset_image_width’, create_function( ”, ‘return 1;’ ) );Forum: Plugins
In reply to: [Genesis Grid] Wrong Featured Image Size DisplayedI’m having same problem. Image set at 400 x 400 but the full size image is used regardless.
Archive pages have now doubled in size – thanks Bill!!
Thanks
Forum: Plugins
In reply to: [Yoast SEO - Advanced SEO with real-time guidance and built-in AI] NoodpSorry, other way round. If you add a meta description the noodp is inserted by default.
Crazy!!
Forum: Plugins
In reply to: [Yoast SEO - Advanced SEO with real-time guidance and built-in AI] NoodpThis is now a ‘feature’. If you haven’t added a meta description to the post then noodp will be inserted whether you want it or not.
There have been major bugs with each update. The latest bugs are described as features and will not be fixed.
Forum: Plugins
In reply to: [Yoast SEO - Advanced SEO with real-time guidance and built-in AI] No sitemapIf no sitemap existed before then you need to publish a post for the sitemap to be processed.
Try editing an existing post and update. Then try the sitemap link again?
Is there any disadvantage to just deactivating Yoast while working in the site, and then turning it back on?
Yes, I tried this and it screws up the urls of posts and categories. It may be an isolated issue but be careful.
This issue has been answered here
https://wordpress.org/support/topic/noodp-still-thereThey have ‘decided’ you should have this where you have not added a meta description. Deselecting it in the options makes no difference.
If you add a meta description to a page the noodp will not show.
It’s just a result of the arrogance of team Yoast, thinking they know so much more than you on what is good for your site.
I managed to do this by playing with the moving sharing icons code found here:
http://jetpack.me/2013/06/10/moving-sharing-icons/However, what I really wanted to achieve is for the module script and css not to load on every post whether sharing was selected or not.
I found that by creating a custom post type I can select this post type as an option in the sharing settings which gives me the granular control I was looking for.
Ok, it looks like the ideal way to do this with a conditional tag:
is_category( ” );Something like this maybe?
//* Only show sharing buttons on category 53 function jptweak_remove_share() { if ( is_category( '53' ) ) { remove_filter( 'the_content', 'sharing_display',19 ); remove_filter( 'the_excerpt', 'sharing_display',19 ); if ( class_exists( 'Jetpack_Likes' ) ) { remove_filter( 'the_content', array( Jetpack_Likes::init(), 'post_likes' ), 30, 1 ); } } } add_action( 'loop_start', 'jptweak_remove_share' );Looks OK to me on Chrome.
I see it.
After initial setup of the xml sitemap it helps if you re-publish an existing post.
@ov3rfly
Thanks for that. It isn’t a big issue – just one more unwanted feature to contend with.Thanks and goodbye.