• Resolved chicsmart

    (@chicsmart)


    Hi,

    how i can locate the email input box (plugin content) before the product description.

    Thx!

    Regards.

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi @chicsmart, thanks for reaching our SUpport.

    In order to change the form position, add the following code to the function.php of the current active theme and chnage the position as per your need :

    add_action('init', 'test_function');
    function test_function() {
       global $WOO_Product_Stock_Alert;
       remove_action('woocommerce_single_product_summary', array($WOO_Product_Stock_Alert->frontend, 'get_alert_form'), 30);
       add_action('woocommerce_single_product_summary', array($WOO_Product_Stock_Alert->frontend, 'get_alert_form'), 10);
    }
    Thread Starter chicsmart

    (@chicsmart)

    Thanks a lot!!!

    You are welcome @chicsmart

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Move Input box’ is closed to new replies.