chris055
Forum Replies Created
-
Yes I have change the order of the accounts and it only posts to the first account, not the second.
Forum: Plugins
In reply to: [Simple Pagination] Pagination breaks between pages 10 and 20Thank you for fix
I was able to find the code in smartyoutube.php of the plugin:
$ap = ''; if ( is_single() ) { if ( $context == 'post' && $autoplay_first && ! $this->first ) { $ap = '&autoplay=1'; $this->first = true; } else if ( ( $context == 'post' && $autoplay && ! $autoplay_first ) || ( $context == 'excerpt' && $autoplay ) ) { $ap = '&autoplay=1'; } else { $ap = ''; }replace with:
$ap = ''; if ( is_single() ) { $ap = '&autoplay=1';Just disable Autoplay in the Plugin options but this replacement of code will Autoplay in Single Posts.
Forum: Plugins
In reply to: [Simple Pagination] Pagination breaks between pages 10 and 20I am having the same problem, is there a fix for this?
Would it be safe to remove this lines also? (from template-thumbnails.php)
$this->diagnostic_generate_thumbnails() ) $this->ensure_resized_post_thumbnail( get_the_ID(), $dimensions );^^ I was looking for this solution forever! Thank you!!
After switching the code my website loads a lot faster now!
Thanks dude!
I think is because on the description of the plugin it says that it generates a post thumbnail from “first image in post” or any custom post type and it not from “First uploaded image”, if it did then it would be creating a thumbnail with the original file name of the image plus the thumbnail size (ex. blah-120×120.jpg) instead of blah-350×350-120×120.jpg
In this thread the author states that there is an option for this on the PRO version, which is only $5 so I’m going to buy it right now lol
http://ww.wp.xz.cn/support/topic/auto-thumbnail-from-1st-uploaded-image
Bump
Forum: Plugins
In reply to: [Featured Post with thumbnail] Can't change thumbnail sizeYou can edit the width and height of the image by opening index.php in the featured-post-with-thumbnail folder under wp-content/plugins
Your theme probably makes a different size image than the plugin.
What I did to solve the problem was disable all image related settings on my theme and let the plugin handle all the thumbnail work
That query gave me an error:
#1242 – Subquery returns more than 1 row
Is there a way we could use “post_title” as a value in the plugin?
Is there any way to do this?
I recently have change the titles of all my articles and All In One Seo Custom Fields still have the old names of my articles so i need to update the custom fields to be the same as the Tittle which is post_title.
please help!