• Resolved ashu2389

    (@ashu2389)


    I am using your extension and I want custom options checkbox to move above dropdown.
    I want to show first checkbox (created with your plugin) after that dropdown (variations) and at last add to cart button.

    is this possible?

    When I try to switch position with the variable.php then cart also moved with the checkbox ??

    Thanks

    • This topic was modified 3 years, 1 month ago by ashu2389.

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

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author ThemeHigh

    (@themehigh)

    You can try the below code in your child theme’s functions.php file.

    add_filter('thwepof_hook_name_before_add_to_cart_button', 'thwepo_before_variation_form');
    function thwepo_before_variation_form(){
        $position = 'woocommerce_before_add_to_cart_form';
        return $position;
    }

    We hope this helps.

    Thank you!

    Thread Starter ashu2389

    (@ashu2389)

    Thanks. Its working ??

    Can I remove table and add UL Li for the checkboxes?

    Thread Starter ashu2389

    (@ashu2389)

    its not important for now. Thanks for your support ??

    Plugin Author ThemeHigh

    (@themehigh)

    We hope your issue is resolved.

    We are going to mark this thread as resolved.

    Thank you!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Switch Position of Custom option checkbox and variable dropdown’ is closed to new replies.