Woocommerce and Astra
-
Hello,
We purchased the MSRP Pricing plugin/extension from Woocommerce. This should show the MSRP price before the normal price. With Astra (which we use on all our sites), it shows above the title. I have removed that action and hook from woocommerce_single_product_summary and replaced it with a different priority. Priority 6-9 makes no change. Priority 10 makes below the Meta section. How can we show this below the title? It shows correctly on all the other popular themse but cant seem to get it to work with Astra and id rather keep Astra if possible.Basic code should put it below title. So this is the code I tried, which does move it but it seems Astras woocommerce summary is all 1 section and priorities dont do anything:
add_action( 'init', function () {
? ? global $woocommerce_msrp_frontend;
? ? remove_action(
? ? ? ? 'woocommerce_single_product_summary',
? ? ? ? [ $woocommerce_msrp_frontend, 'show_msrp' ],
? ? ? ? 7
? ? );
? ? add_action(
? ? ? ? 'woocommerce_single_product_summary',
? ? ? ? [ $woocommerce_msrp_frontend, 'show_msrp' ],
? ? ? ? 10
? ? );
} );
- You must be logged in to reply to this topic.