cnlselectronics
Forum Replies Created
-
Upon 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
Forum: Plugins
In reply to: [Premium Addons for Elementor] Woo Products CarouselResolved 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: [WooCommerce Weight Based Shipping] 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: [WooCommerce Weight Based Shipping] 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