ballzerker
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Plugins
In reply to: [Firelight Lightbox] -tmp prevents loadingThanks a bunch, honestly good to know it isnt something theme or custom js related causing an issue. Will try and push for the group to get the pro plugin if we cant figure out a solution with the current version.
Thanks for the help and have a great day,
Daniel
Forum: Plugins
In reply to: [Firelight Lightbox] -tmp prevents loadingAm I just going to have to add in my own JS to remove/prevent the -tmp from being added?
Forum: Plugins
In reply to: [WooCommerce] Checkout only if products equal groups of 15I’ve changed up the code but still dont know where I may have made a syntax error in the in_array.
add_action('the_post','minimum_order_func',10); function minimum_order_func(){ global $woocommerce; if (is_checkout()){ $minorder = array(15,30,45); if(in_array($woocommerce->cart->cart_contents_count, $minorder)){ $woocommerce->add_error( sprintf(__('Sorry, you have not met the minimum order amount of ' . $minorder . ' products. <a href="%s">Return to homepage →</a>', 'woocommerce'), home_url()) ); wp_redirect( get_permalink( woocommerce_get_page_id( 'cart' ) ) ); exit; }}} ?>Once again any help would be greatly appreciated.
Forum: Fixing WordPress
In reply to: Checkout only if products equal groups of 15Thanks, wasn’t exactly sure where it needed to be.
Viewing 4 replies - 1 through 4 (of 4 total)