al8t3
Forum Replies Created
-
So the problem is actually that adding to wish list does not pull the value through, which is why it doesn’t display. If I “add to cart” from the wish list page in the above scenario it sends me back to the product details page with an error “length value must be selected” – which it already was when I added clicked the “add to wish list” button.
So this appears to be a bug.
Nvm I’ve got it – it’s happening on variable products and the ID is that of the variation, which explains the issue.
Forum: Plugins
In reply to: [Flamingo] Spam cleanup for Flamingo message storageSame, I have over 40 client sites running Flamingo and keeping on top of the spam is ridiculous. We need at least an option to set spam to auto delete after 30 days.
Forum: Plugins
In reply to: [WP Job Manager] Disable SchemaSame here – applied to the functions file and definitely lookup at the schema markup that WPJM is adding.
Forum: Plugins
In reply to: [WP Job Manager] Disable SchemaHmm, for some reason that doesn’t change anything. Any alternative ideas? Its running v1.30.2 (nervous to update the core version in case it causes more headaches at this stage).
Forum: Plugins
In reply to: [WooCommerce] Changing tax labels in cart totals@ravanh – I believe this only changes how it shows in the totals at the bottom of the cart where it shows how much of the total is VAT/Tax/GST. It still displays (ex. tax) or (inc. tax) in the itemised part of the cart and for the sub-total regardless of what you set the label in that part of the admin.
This filter worked for me:
add_filter( 'woocommerce_countries_inc_tax_or_vat', function () { return __( '(incl. GST)', 'woocommerce' ); });Or, if you’re changing the “(ex. Tax)” label then this hook:
add_filter( 'woocommerce_countries_ex_tax_or_vat', function () { return __( '(ex. GST)', 'woocommerce' ); });- This reply was modified 8 years, 11 months ago by al8t3.
Same issue here, using the latest version of WooCommerce at the time of writing and very few other plugins.
Edit: I just checked the instructions again and adding the Polyfill from the main plugin page to the functions file seemed to fix the problem for me. No idea why as the polyfill is meant to just add support for non-HTML5 compliant browsers and I’m using the latest Chrome build. But whatever, seems to do the job.
add_action( 'wp_enqueue_scripts', 'wcqi_enqueue_polyfill' ); function wcqi_enqueue_polyfill() { wp_enqueue_script( 'wcqi-number-polyfill' ); }- This reply was modified 9 years, 1 month ago by al8t3.
Same problem here since the last update, using the same WP and PHP versions as danmfisher
- This reply was modified 9 years, 5 months ago by al8t3.