twelvell
Forum Replies Created
-
Hi @miemie
I want to show all variations only for one product category, for instance, we have categories Knives and Towels. If a user clicks on Knives then all variations are available on the category page. If clicking on Towels no variations are listed there, only parent/main products.
Regards
Forum: Plugins
In reply to: [The Events Calendar] The events Calendar List|Month|DayI would like to report the same issue. Does The author using Polylang plugin? Maybe the website is translated?
A hint if it is possible or I was not able to clearly explain what I want to achieve would be great to have. I didn’t found anything similar in the NextGEN documentation as there are more general functions explained.
Anyone?
Forum: Plugins
In reply to: [Worth The Read] Translate # min readI am not sure if this will be the correct approach, but I edited the line like this:
$time_format = empty($options['time-format']) ? __('# min read','wpml_domain_name') : $options['time-format'];
This works for me and I am able to scan for the # min read string with WPMLForum: Plugins
In reply to: [Postman SMTP Mailer/Email Log] Clean the db after uninstallBump! Which table does the plugin stores data? Is the table removed from db after deleting the plugin?
Thanks
Forum: Plugins
In reply to: [Nextend Google Connect] Avatar image sizeFound out that the size can be specified by adding
?sz=600
at the end of the image link, but I am not sure where to add this in the code.Hi Andrew,
I got the same problem and I found this solution working pretty fine for me on the latest plugin version. Follow these steps:
1 Open file nextend-twitter-connect.php which is located in plugin directory /wp-content/plugins/nextend-twitter-connect
2 Find the line:
update_user_meta($ID, 'twitter_profile_picture', $resp->profile_image_url);
3 Replace the line with the following code lines: `$profile_img_url = $resp->profile_image_url_https; // Calls 48×48 https URL
$url_info = pathinfo($profile_img_url); //puts url info into a variable
$url_ext = $url_info[‘extension’]; // declares profile image extensionif ($url_ext === jpeg) {
$original_img_short = substr($profile_img_url, 0, -12); //deletes 12 chars from end for jpeg
}
else {
$original_img_short = substr($profile_img_url, 0, -11); //deletes 11 chars from end for jpg/png
}$original_img_final = $original_img_short.’.’.$url_ext; // Adds extension back to URL
update_user_meta($ID, ‘twitter_profile_picture’, $original_img_final);`
What it does is the code manually rewrites the image link by removing the last 11 symbols if image is in .png or .jpg and last 12 symbols if the image is in a .jpeg format.
Hope this helps!