Add Info after Price
-
Hi,
on my standard products I have an additional info below the price leading to the shipping cost page. The filter in the functions.php isadd_filter( 'woocommerce_get_price_html', 'custom_versand_message' ); function custom_versand_message( $versand ) { $zzgl = '<a style="display:block;font-size:14px;font-weight:400;text-align:left;" href="versand-und-zahlungsinformationen" target="_blank">zzgl. Versand</a>'; return $versand . $zzgl; }
This will now be hidden with the bundle price. Is there a similar filter I can use for the smart bundle?
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Add Info after Price’ is closed to new replies.