Sleerts
Forum Replies Created
-
Forum: Plugins
In reply to: [Video Thumbnails] 2 images for the same postSorry π
I’d kick it to your theme support page on how to delete the featured thumbnail or wait for this developer to official let us know.
Forum: Plugins
In reply to: [Video Thumbnails] 2 images for the same postRemove all of this –
if (has_post_thumbnail($post->ID) && $show_thumbnail) { //Could use suffusion_get_image(), but the theme uploader recommends use of the_post_thumbnail at least once in the theme... //echo suffusion_get_image(array('no-link' => true)); if ($suf_excerpt_thumbnail_size == 'custom') { $thumbnail = get_the_post_thumbnail(null, 'excerpt-thumbnail'); } else { $thumbnail = get_the_post_thumbnail(null, $suf_excerpt_thumbnail_size); } echo "<div class='$suf_excerpt_thumbnail_alignment-thumbnail'>" . $thumbnail . "</div>"; }See what happens.
Forum: Plugins
In reply to: [Video Thumbnails] 2 images for the same postCurrently in the process of learning php…
That being said..I’d go and ask for assistance in removing the featured image in suffusion.
If I had to GUESS, I’d remove this and see what happens –
if (has_post_thumbnail($post->ID) && $show_thumbnail)Make sure you backup the php file so that you can re-upload it via FTP if it crashes and burns.
Forum: Plugins
In reply to: [Video Thumbnails] 2 images for the same postSure
Forum: Plugins
In reply to: [Video Thumbnails] 2 images for the same postTechnically I’m not giving you really a good fix…it’s more of a work around. Not familiar with that theme…plus unless you’ve setup a child theme if your theme is updated the tweak will be lost. They’ve gotta have a content.php file or they re-named it. Use Notepad ++ and search for thumbnail, should be similar to string I posted above.
Forum: Plugins
In reply to: [Video Thumbnails] 2 images for the same postI removed line #18 of TwentyTwelve content.php
<?php the_post_thumbnail(); ?>It has corrected it. However, I don’t have any posts that are just using a featured image instead of a video thumbnail.
Anyone confirm this resolves it?
Figured it out. Even though I had sharing via Jetpack disabled in the post I had to go into sharing and disable it by clicking Disable CSS and JS. Thanks
WordPress version:3.4
WordPress SEO version:1.2.2I did this: Tried to post a link on Facebook
I expected the plugin to do this: Use the meta tags for description indicated in the post
Instead it did this:
Did not use the meta description indicated in the post under general or social. Instead it used the title of the post for the description. Facebook scrape tells me this:
Open Graph Warning That Should Be Fixed.
Parser Mismatched Metadata:The parser’s result for this metadata did not match the input metadata. Likely, this was caused by the data being ordered in an unexpected way, multiple values being given for a property only expecting a single value, or property values for a given property being mismatched. Here are the input property =>content pairs that were not seen in the parsed result: ‘og:description => Jealous?’Code available on pastebin, sorry bout that…
For some reason my code did not publish, sorry about that.
Anyone?
[Code moderated as per the Forum Rules. The maximum number of lines of code that you can post in these forums is ten lines. Please use the pastebin]