Show discount message on the product page by the shortcode
Add the code below into the functions.php file of your theme or as a new snippet, using your code snippets plugin, and put the shortcode [adp_advertising_message_product_page] at the necessary place on the product page
1 2 3 4 5 6 7 |
add_shortcode( 'adp_advertising_message_product_page', function () { /** @var \ADP\ProVersion\Includes\Advertising\AdvertisingMessage\AdvertisingMessageDisplay $advertisingMessageDisplay */ $advertisingMessageDisplay = \ADP\Factory::get("Advertising_AdvertisingMessage_AdvertisingMessageDisplay"); ob_start(); $advertisingMessageDisplay->showMessageAtProductPage(); return ob_get_clean(); } ); |