This topic has 8 replies, 3 voices, and was last updated 2 years, 8 months ago ago by Rose Tyler
Greetings…..!
Do you recommend any plugin to display the estimated delivery date in product page? I’ve tried few but it’s not working with Xstore theme single product page. Everything is designed to work with woocommerce default product page. Please share your thoughts on this.
Hello,
Check this topic – https://www.8theme.com/topic/shipping-time-in-meta/
We did not test such plugins officially so can give solid recommendations, unfortunately. You can submit a request here – https://www.8theme.com/taskboard/
Please note that we do not give a guaranty for full theme compatibility with all existing 3rd party plugins. Sometimes, not always, you need additionally customize the theme or plugin to make them work together. Unfortunately, it’s not possible for the author to make the theme compatible with all the existing plugins and additional customization is outside the scope of our support.
Regards
Thanks for your feedback Rose. I totally understand your point. But this is basic feature that must have in an ecommerce theme. I will submit a request through the given link. Thank you.
Thanks for understanding. Have a nice day!
Regards
@a4ashan
Not admin but I have found an easy solution so hope this helps fix your immediate need without a plugin.
I had similar need – to add text below the button / above wishlist and again, above meta but below wishlist. So depending on how your store is set up – the order is –
1. Cart Button
2. Wishlist
3. Meta
I use all 3 (as in I have wishlist activated) so what I did was simply add this css to the page css itself – so in each product, you literally add the following custom css to suit –
To add custom text directly below the add to cart button
.product-content form.cart::after {
content: "Delivery in 7 days";
}
This is overqualified for a reason. If you just use form.cart::after then it will also show the delivery text next to the button on the footer sticky cart. So if this is ok, do not use the overqualified css – just use form.cart::after
To add custom text directly above the wishlist element
.product-content .yith-wcwl-add-to-wishlist.wishlist-fragment::before {
content: "Delivery in 3 days";
}
To add custom text directly above the meta / below wishlist
.product_meta::before {
content: "Delivery in 3 days";
}
Hope this helps solve your immediate problem without a plugin 🙂
See demo showing your site with this css added – https://i.imgur.com/X1NAToe.png
Hi Niddy,
Thank you for the suggestion. I’m running a marketplace with multiple vendors. So I need to set delivery time per category.
Ahh – it works fine on a per product basis for single sites. That’s all I needed. ?
Good luck.
Hello,
We are glad that this question was solved 🙂
Regards
You must be logged in to reply to this topic.Log in/Sign up