Author is Aleš Sýkora
Updated: 22. 9. 2022, Added: 22. 9. 2022
WooCommerce Add to cart message position in Oxygen Builder
Need to change the position of WooCommerce Notice bar on single product template in Oxygen Builder? I mean this WooCommerce notice after add to cart:
It's simple. You just need to add the text block with PHP dynamic data value or code block. As PHP function, use this code:
<?php wc_print_notices(); ?>
I would suggest using the code block. Add your custom css class and then style the block with CSS:
.your-code-block-class .woocommerce-message {
}
That's it!