Hi @marcrix,
Thanks for getting back to us. Thank you for reaching out to WooCommerce support. I understand that you would like to display shipping information near the ‘Add to Cart’ button on your product page.
Currently, WooCommerce does not have a built-in shortcode for displaying shipping information. However, it might be possible to achieve this with some custom CSS. Here’s a basic example of how you could duplicate content by projecting it from an attribute as pseudo-elements:
<div class="duplicate" title="text to duplicate"></div>
.duplicate::before,
.duplicate::after {
content:attr(title);
display:block;
}
In this example, the ‘title’ attribute of the ‘duplicate’ class is being used to duplicate the text. You could potentially use a similar method to duplicate your shipping information. However, to provide a more accurate solution, could you please share the link to your website? This will help me understand your setup better and provide a more tailored solution.
Also, since you’re using the “WooCommerce Custom Product Addon” plugin, you might want to check their documentation or reach out to their support for any plugin-specific shortcodes or functions that could help in this situation.
Looking forward to hearing from you soon.