Skip to content

Frequently Asked Questions

How do I add a notice before the order button?
  1. Go to WPify → WPify Woo → Template
  2. In the Custom notes section, click to add a new note
  3. Enter the note content
  4. In the Position field, select Checkout - Before place order button
  5. Optionally select a style (message, info, error)
  6. 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?
  1. Go to the module settings
  2. In the Order button text field, enter your desired text
  3. Save changes

Examples:

  • “Complete order”
  • “Place binding order”
  • “Pay and order”
Can I use HTML in the button text?

Yes, but you must:

  1. Enable the Change order button HTML option
  2. 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 page
  • woocommerce_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 - green
  • woocommerce-info - blue
  • woocommerce-error - red

Option 2: Custom CSS class

  1. In the Custom class field, enter the class name
  2. 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>';
}
} );