I’ve added the product details table to my recovery e-mails using the {{cart.product.table}}
field, but the line items prices don’t contain taxes.
I’ve searched this support forums and you’ve mentioned the woo_ca_recovery_enable_cart_total
filter multiple times, but this filter doesn’t have any effect whatsoever on tax excl/incl display – it only determines whether the cart totals summary should be shown below line items or not.
Are you planning on adding a filter for this? I’ve added 2 simple filters temporarily to class-cartflows-ca-email-schedule.php
, but of course they will get overwritten with future updates.
Thank you.
]]>In Chrome there is a broken image symbol before the button text if I don’t upload an image. (I want only a normal button with text)
Excluding IDs or elements is not working reliably
]]>I have animated pngs that I keep from being replaced because the replacement versions are not animated (animated text beginning with “We Are”).
I was using a filter on webpc_attachment_paths with a naming convention, but this stopped working with the latest plugin update. After reviewing your FAQs I implemented a solution with enumerated file names.
Both solutions just do not work to exclude specific images from being replaced – in my <picture/> element – and this used to work.
Here are my functions for exclusion:
add_filter('webpc_attachment_paths', function($paths) {
$suffix = '-nowebp';
foreach ($paths as $index => $path) {
if (!preg_match('/(.*?)' . $suffix . '((-(.*))?)\.(jpe?g|png|gif)/', basename($path))) continue;
unset($paths[$index]);
}
return $paths;
});
add_filter( 'webpc_supported_source_file', function( bool $status, string $file_name, string $server_path ): bool {
$excluded_files = [
'Overit-Website_Text_Animation-APNG_opt-tinypng-nowebp.png',
'Overit-Website_Text_Animation-APNG_420px_opt-tinypng-nowebp.png',
];
if ( ! $status || in_array( $file_name, $excluded_files ) ) {
return false;
}
return $status;
}, 10, 3 );
]]>“This page isn’t working if the problem continues, contact the site owner.
HTTP ERROR 406”
Have we figured out how to prevent Web Stories from showing up in Searches internally? I tried a mini-plugin someone created last year, but it didn’t solve the issue.
]]>I’ve recently discovered that all our products are listed on Google Shopping with the VAT ‘included’ within the price, however within the healthcare and mobility industry, these products are ‘exempt’ from tax due to VAT relief in the UK.
Is it possible that I can display all our products on Google Shopping as ‘Excluding VAT’?
I have inputted all prices on our website (https://completemobility.shop) as ‘Excluding VAT’ via WooCommerce, and each product shows both the ‘Ex. Vat’ and ‘Inc. VAT’ price.
Within my Feed Configuration, I have changed the Google Shopping Attribute ‘Price’ value to ‘Excluding VAT’ and fetched the feed again via the Merchant Centre, however this has had no affect to product prices, so don’t believe that was the correct method!
The product I have linked above is just a promotional product I have listed at the moment, however the price ex.VAT is £325, but on Google Shopping it’s listed as £390.
Is there anyone that can help who is experiencing the same problem? Thank you
]]>thx
]]>I’ve noticed a regular occurrence on my eCommerce store, where the ‘Tax Standard Rate’ for GB will revert to 0%, after being set at 20%.
This happens every few days and I have to manually input 20% again. This does not however happen to the tax bracket set up for Ireland.
Here’s the page in question: https://ibb.co/9Hg9d0Q
AS my store shows product prices as inc/ex VAT due to the industry we’re in, this looks unprofessional when both the ‘inc/ex VAT’ prices both show the same price!
Does anyone know why the tax set for GB in particular automatically resets itself back to 0%?
Many thanks,
Stefan
I have been able to show both the ‘inc VAT’ and ‘ex VAT’ prices within my WooCommerce store and single products, however only the ‘inc VAT’ text is visible after inputting the ‘{price_including_tax’ within ‘Price display suffix’ (WooCommerce > Settings > Tax).
Here’s how the layout of both the prices show on a product thumbnail: https://ibb.co/mHhXqmT
I really need the text ‘ex VAT’ to show after the first price, but cannot figure this out!
I have used CSS to style the font, colour, layout etc.. Here it is:
`}
.amount bdi {
position: relative;
}
.woocommerce-Price-amount.amount {
display: block;
letter-spacing: 2px;
color: #2C3979
}
margin-left: 5px;
font-size: 14px;
}
.woocommerce-price-suffix {
display: block;
}
.woocommerce-price-suffix .woocommerce-Price-amount.amount bdi:after {
content: “inc. vat”;
margin-left: 5px;
font-size: 14px;
}’
I appreciate all of your support on this, thank you.
Stefan
]]>