How to get the webshop page in 2:nd language, with Polylang and Hyyan
How to get the webshop page in 2:nd language, with Polylang and Hyyan
How to get the webshop page in 2:nd language, with Polylang and Hyyan
How to select default Woocommerce category page
Where is the CSS class ui-sortable-handle for WC_Admin_Taxonomies added?
Using WooCommerce for payments only?
We found it ourselves, this is the solution. Add the following snippet in functions.php function wc_increase_variation_threshold( $product ) { return 500; } add_filter( ‘woocommerce_ajax_variation_threshold’, ‘wc_increase_variation_threshold’, 10, 2 );
Woocommerce set cookie after a sale [closed]
Woocommerce PHP site that shows table with orders from specific category
WooCommerce get default shipping rate & conditions
I moved the tabs underneath the short description jeeej. But i would like to make it sticky. is that possible? Like this: https://www.kustomdesigns.com.au/?product=mx-jersey Kind regards, Henk
wc_stripe_generate_payment_request passes 3 arguments. Take a look at the source code: /** * Filter the return value of the WC_Payment_Gateway_CC::generate_payment_request. * * @since 3.1.0 * @param array $post_data * @param WC_Order $order * @param object $source */ return apply_filters( ‘wc_stripe_generate_payment_request’, $post_data, $order, $prepared_source ); Try setting the correct amount of arguments to the filter hook, … Read more