cnlselectronics
Forum Replies Created
-
Thank you 🙂
Is there a reason that our Woocommerce catalogue images have now changed from 300×300 images to 150×150? WordPress is still set to 300×300 and I added code to our functions file to show 300×300 but they are still very pixelated and show a smaller size for the ones thats offloaded?
If I clear the Optimole CSS/JS Cache. They return as being sharp again but then appear to go pixelated after a period of time- This reply was modified 2 years, 6 months ago by cnlselectronics.
All appears well 🙂 thank you!
is there a limit number of images that can be offloaded by the way? Our of curiosity? 🙂- This reply was modified 2 years, 6 months ago by cnlselectronics.
It seems to be on the move now! 🙂 Will keep this open but respond once its ended or errors occur
hmmm… I can’t be 100% if im totally honest. I would try to “regenerate thumbnails” to try and see if that resolves the issue. Would be my first call of action. Can download a small plugin for regenerating thumbnails. Let it finish then delete the plugin again and test your image links after its done.
Shouldnt take too long unless you have lots of images. For reference, mine took around 14 hours for 25,000 imagesUpon checking…. your href for the hyperlink of that image (presumably lightbox?) is optimole. Even though the image is sourced on your server.
Presumably you need to change that hyperlink to your own? for any images that are clickableThe URL that shows at the bottom of the screen when hovering does show that at present. If you right click and “Open image in new tab”. It shows the image is sourced from your WordPress folder however
Have you checked on an incognito window? All your images show fine for me and image URLs are your server, not Optimoles
Forum: Plugins
In reply to: [Payment Plugins for PayPal WooCommerce] Pay Later MessagingConsider it done 🙂
Forum: Plugins
In reply to: [Payment Plugins for PayPal WooCommerce] Pay Later MessagingThank you for responding so quickly! Fantastic!
i added the shortcode and it worked great, no styling issues or anything. Perfect!Forum: Plugins
In reply to: [Permalink Manager for WooCommerce] Slug missing a /Just to add. When im in the last child category, the slug is okay. Only on product page, the / disappears
Resolved this 🙂 Siteground optimiser plugin setting : Defer render blocking.
Turn that off and carousels work fine again, incase someone else is having the same issue.
ThanksForum: Plugins
In reply to: [Weight Based Shipping for WooCommerce] Shipping Cost VS LocationNot to worry…. now i realise it needs to be GB instead of UK. So for anyone wanting the “County” field to be required on UK shipping options. Adding the below to functions.php will work 🙂
add_filter(‘woocommerce_get_country_locale’, function($locale) {
$locale[‘GB’][‘state’][‘required’] = true;
return $locale;
});
Forum: Plugins
In reply to: [Weight Based Shipping for WooCommerce] Shipping Cost VS LocationHi Dan,
that’s perfect! worked a treat. However, the difference in shipping cost only shows if the “county” field is completed. Which is optional as default by woocommerce, so if customers don’t fill this out then they still get the cheaper shipping option. I tried to add the below code to Astras theme functions file but it didnt seem to take affect and is still optional. Is there something that i’m missing here?add_filter(‘woocommerce_get_country_locale’, function($locale) {
$locale[‘UK’][‘state’][‘required’] = true;
return $locale;
});
Thanks again,Thank you for the snippet! I have added it to the site files now. Now the meta description for each product page should only show 160 characters to Google is that correct?
I can see in the RankMath section of editing a product the 160 suggestion. Its set to automatically use the products short description to be the meta description. Which is a lot more than 160 characters. Will this eventually alter this and limit it to 160?
ThanksForum: Plugins
In reply to: [WooCommerce] Missing Product page partsHi guys,
So sorry for the late reply. I did find the problem. The variant title I added was called “rating” for a capacitor which would be the correct variant title for the product but it was picking up the word rating as the 5 star review and pulling the rating code in twice. Changed the variant title and it worked great.
Overlooked a little mistake I think but learning is learning:) thank you both for the reply
Steven