Frequently Asked Questions
How do I add a notice before the order button?
- Go to WPify → WPify Woo → Template
- In the Custom notes section, click to add a new note
- Enter the note content
- In the Position field, select Checkout - Before place order button
- Optionally select a style (message, info, error)
- Save changes
Can I use HTML in notices?
Yes, the Content field supports a WYSIWYG editor where you can:
- Format text (bold, italic)
- Add links
- Insert images
- Use lists
The module automatically applies the the_content filter, so shortcodes work as well.
How do I change the order submit button text?
- Go to the module settings
- In the Order button text field, enter your desired text
- Save changes
Examples:
- “Complete order”
- “Place binding order”
- “Pay and order”
Can I use HTML in the button text?
Yes, but you must:
- Enable the Change order button HTML option
- Enter text including HTML entities
Example:
Order <span class="icon">→</span>How do I add a notice only to the cart?
In the notice settings, select a position starting with Cart -:
- Cart - Before cart
- Cart - After cart contents
- Cart - Before cart totals
- Cart - Before shipping
- Cart - Before proceed to checkout
- Cart - After cart
Can I display a notice at a custom position?
Yes, in the Custom position field, enter the WordPress hook where you want the notice to appear.
Example:
woocommerce_single_product_summary- on product pagewoocommerce_thankyou- on thank you page
The hook must exist in your theme or in another plugin.
How do I change the notice color?
Option 1: WooCommerce styles Select one of the preset styles:
woocommerce-message- greenwoocommerce-info- bluewoocommerce-error- red
Option 2: Custom CSS class
- In the Custom class field, enter the class name
- Define the CSS:
.my-notice { background: #ffeb3b; border-color: #ffc107;}Why isn't the notice displaying in block checkout?
WooCommerce block checkout (Gutenberg) has limited support for classic PHP hooks. Some positions may not work.
Solutions:
- Switch to classic checkout
- Use block version of notices (if available)
Can I add multiple notices?
Yes, you can add any number of notices. Each can have:
- Different content
- Different position
- Different style
How do I add a conditional notice?
The module does not support conditions directly in settings. For conditional notices, use custom code:
add_action( 'woocommerce_before_checkout_form', function() { $cart_total = WC()->cart->get_subtotal();
if ( $cart_total < 100 ) { echo '<div class="woocommerce-info">'; echo 'For free shipping, add products worth ' . wc_price( 100 - $cart_total ); echo '</div>'; }} );