Skip to content

Instantly share code, notes, and snippets.

@wooxperto
Last active August 16, 2023 06:39
Show Gist options
  • Save wooxperto/1f009faa5ce30e15563664d5992affcd to your computer and use it in GitHub Desktop.
Save wooxperto/1f009faa5ce30e15563664d5992affcd to your computer and use it in GitHub Desktop.
Display content avobe add to cart button at single product page.
<?php
/**
* @snippet Display content before add to cart button at single proudct page | WooCommerce
* @author WooXperto
* @date 10.08.2023
*/
add_action( 'woocommerce_before_add_to_cart_button', 'wooXperto_show_content_before_add_to_cart_button', 20 );
function wooXperto_show_content_before_add_to_cart_button() {
echo '<p class="content">A Special Offer is Running! Get Hurry!!</p>';
}
@wooxperto
Copy link
Author

Display content before add to cart button at single product page.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment