codeflex
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Botiga] Quantity plus/minus not showingForum: Plugins
In reply to: [Theme My Login] Register form extra fields validation issueThanks! That did the trick ??
Forum: Plugins
In reply to: [Theme My Login] Register form extra fields validation issueI’ve added a screenshot here – https://ibb.co/Z8CnzVJ
Forum: Plugins
In reply to: [Wholesale Customers For WooCommerce] Variable product showing double priceUPDATE:
This was happening only when the current user is not wholesale, I have modified lines 74 – 80 to fix this display issue from:if( !$is_wholesale ) {
$min_price = current( $prices[‘price’] );
$max_price = end( $prices[‘price’] );return wc_format_price_range( $min_price, $max_price );
}to:
if( !$is_wholesale ) {
$min_price = current( $prices[‘price’] );
$max_price = end( $prices[‘price’] );
if($min_price == $max_price) {
return wc_price( $max_price );
}
else {return wc_format_price_range( $min_price, $max_price );
}
}Forum: Plugins
In reply to: [Abandoned Cart Lite for WooCommerce] Hide Quantity and Line Total in emailHi, your code worked correctly once an error was fixed – this section here:
&& ” !=When pasted, the quotes were a double quote, and needed to be two single quotes.
&& ” !=Forum: Plugins
In reply to: [Abandoned Cart Lite for WooCommerce] Hide Quantity and Line Total in emailHi, this code gives an error message sorry
Forum: Plugins
In reply to: [Abandoned Cart Lite for WooCommerce] Hide Quantity and Line Total in emailThanks, I’ve added the code however it didnt remove the SKU from the email.
Forum: Plugins
In reply to: [Abandoned Cart Lite for WooCommerce] Hide Quantity and Line Total in emailThank you, is it also possible to remove the SKU from the list displayed on the email ?
Ecommerce tracking is a paid feature of that plugin, I will look for another solution. It’s a pity there’s no support to get your plugin working as it should be.
Hello, thank you but I already have it enabled on the admin tab of analytics. Enable ecommerce is ticked, as well as enable enhanced ecommerce reporting.
There is only the one view in use, which is the one ecommerce tracking is enabled for.
Sorry i’m not sure what happened but it is now showing
I can send through a link and login details if you let me know how to add a private message (site is restricted access)
Forum: Plugins
In reply to: [Age Gate] Mobile issueThis was an issue with caching plugin. Once I updated the setting in age gate to use cache bypass it worked correctly
Forum: Plugins
In reply to: [Age Gate] Age Gate mobile issueHaving this issue as well, on android chrome browser. When you click yes to confirm your age you’re taken back to the confirm screen
Forum: Plugins
In reply to: [Currency per Product for WooCommerce] Bulk edit currencyHi, any update on this one?