webzang
Forum Replies Created
-
Feel free to get in touch with them however I have had to disabled the plugin for now.
How do I send you a direct mail?
Here is an example category page: https://www.psglassfittings.co.uk/category/shower-enclosure-hardware-hinges-u-channel-etc/glass-brackets/
I will switch it on right now for you….
Hi, The plugin is loading – it is showing both the excluding tax price and the including tax price side-by-side – see this screenshot here: https://www.psglassfittings.co.uk/wp-content/uploads/2026/04/Screenshot-2026-04-30-at-16.42.56.jpg
i have had to disable it because it looks so bad and the client has a fit. I realise it is hard to troubleshoot without it.
OK thanks I’ll do that.
OK thanks.
Forum: Plugins
In reply to: [YITH Pre-Order for WooCommerce] Plugin creating PHP errorThanks so much this fixed it! Much appreciated.
Forum: Plugins
In reply to: [YITH Pre-Order for WooCommerce] Plugin creating PHP errorThis worked really well great. is there a way to remove the gap between the “expected” date and variation descriptions? See https://ravesfromthegrave.com/shop/beneath-strawberry-moons/
Forum: Plugins
In reply to: [YITH Pre-Order for WooCommerce] Plugin creating PHP errorHi
Thanks so much for your quick relpy. here is the first 37 lines from that theme file:
/**
- Variable product add to cart
* - This template can be overridden by copying it to yourtheme/woocommerce/single-product/add-to-cart/variable.php.
* - HOWEVER, on occasion WooCommerce will need to update template files and you
- (the theme developer) will need to copy the new files to your theme to
- maintain compatibility. We try to do this as little as possible, but it does
- happen. When this occurs the version of the template file will be bumped and
- the readme will list any important changes.
* - @see https://docs.woocommerce.com/document/template-structure/
- @package WooCommerce/Templates
- @version 3.5.5
*/
defined( 'ABSPATH' ) || exit;
global $product;
$attribute_keys = array_keys( $attributes );
foreach( $available_variations as $i => $variation ) {
$id = $variation['variation_id'];
if ( class_exists( 'YITH_Pre_Order_Product' ) ){
$pre_order = new YITH_Pre_Order_Product( $id );
if ( $pre_order->get_pre_order_status() == 'yes') {
$available_variations[$i]['availability_html'] = 'Pre-order';
}
}
}$variations_json = wp_json_encode( $available_variations );
$variations_attr = function_exists( 'wc_esc_json' ) ? wc_esc_json( $variations_json ) : _wp_specialchars( $variations_json, ENT_QUOTES, 'UTF-8', true );do_action( 'woocommerce_before_add_to_cart_form' );
- Variable product add to cart