michaeltrotz
Forum Replies Created
-
I am using the Kadence Theme. Could I ask which theme the opening poster is using?
I am finding the same thing as the topic starter. Thanks.
Forum: Plugins
In reply to: [LiteSpeed Cache] No Product Page Images since last updatePlease ignore. Resolved.
Forum: Plugins
In reply to: [LiteSpeed Cache] Cached URL does not loadI have completed testing and found that the only setting responsible for the issue is Page Optimization->JS Settings->JS Minify.
If the setting is off, the URL displays properly. If it is on, the URL does not display.
Forum: Plugins
In reply to: [LiteSpeed Cache] Cached URL does not loadThe issue definitely appears at the JS minimization stage. I am still going through the rest of the page optimization settings, but that is what I have found so far.
Forum: Plugins
In reply to: [LiteSpeed Cache] Cached URL does not loadThanks.
Reverting to default settings clears up the problem, but it returns as soon as I reimport my customized settings.
Forum: Plugins
In reply to: [LiteSpeed Cache] Cached URL does not loadSorry – I am afraid that doesn’t work.
Forum: Plugins
In reply to: [New User Approve] Pending User List stays emptyIssue is now resolved.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Database Update not runningThanks. All is OK now.
Forum: Plugins
In reply to: [Product Size Chart For WooCommerce] Plugin ConflictSorry -instead of ” Product Blocks & Filter” above, I should have referred to “Product Grid & Filter Blocks”.
Thanks.
Hello – thanks for your response. I was actually hoping for an “In Stock” label. Is that going to be added soon?
Thanks.
Sorry – I should mention that I am using the pro version of the plugin..
Thanks.
Hello – the new release has fixed the problem for simple products but there are still issues for variable products (at least for the free version):
– When looking at the parent of a product with no in stock child variations (before choosing a specific child variation), the plugin will nevertheless display the “In Stock” label;
– When I display a child variation for that same product (i.e. a product with no in stock variations), the plugin continues displaying the “In Stock” label.
Thanks,
Michael Trotz
- This reply was modified 4 years, 1 month ago by michaeltrotz.
Hello – I have been asked to pass this question on to you (it is directly related to the matter mentioned in the opening post). Thanks.
I have this function, that adds a 1.3% markup on admin products site wide,
I would like to know what string to use that excludes WC Vendor products from this formula on the site front end.// Simple, grouped and external products
add_filter(‘woocommerce_product_get_price’,’my_custom_price’, 99);
add_filter(‘woocommerce_product_get_regular_price’,’my_custom_price’, 99);// Variable products (min-max)
add_filter(‘woocommerce_variation_prices_price’,’my_custom_price’, 99);
add_filter(‘woocommerce_variation_prices_regular_price’,’my_custom_price’, 99);// Products variations
add_filter(‘woocommerce_product_variation_get_regular_price’,’my_custom_price’, 99);
add_filter(‘woocommerce_product_variation_get_price’,’my_custom_price’, 99);// Products on sale
add_filter(‘woocommerce_product_get_sale_price’,’my_custom_price’, 99);
add_filter(‘woocommerce_variation_prices_sale_price’,’my_custom_price’, 99);// Calculate prices for retail x 1.3
function my_custom_price( $price ) {
global $post;// Return the new price
return ceil( 1.3*floatval($price) )-0.01;
}