losvincent
Forum Replies Created
-
Forum: Plugins
In reply to: [Redis Object Cache] how to exclude some page from redis cacheHello, after multiple tests, I’ve found that when in the state of an unlogged-in visitor, the Redis cache will cause the data on the cart page to be out of sync. However, if a buyer registers an account and logs in, the data of functions such as the cart will be updated normally, and there won’t be any confusion caused by the Redis cache. What’s the principle behind this? Is it possible for the plugin to address the issue of data submission in Redis for the visitor mode in the next version update?
Forum: Plugins
In reply to: [WooCommerce] Cart not update when enable Redis cache@mosesmedh Hello, after multiple tests, I’ve found that when in the state of an unlogged-in visitor, the Redis cache will cause the data on the cart page to be out of sync. However, if a buyer registers an account and logs in, the data of functions such as the cart will be updated normally, and there won’t be any confusion caused by the Redis cache. What’s the principle behind this? Is it possible for the WooCommerce plugin to address the issue of data submission in Redis for the visitor mode in the next version update?
Forum: Plugins
In reply to: [Redis Object Cache] how to exclude some page from redis cache@tillkruess I have read the readme document and found WP_REDIS_IGNORED_GROUPS, but I don’t know how to configure it so that it can bypass the WooCommerce cart.
Forum: Plugins
In reply to: [Redis Object Cache] how to exclude some page from redis cache@tillkruess hello,Hello. I have created a support ticket with the WooCommerce support team.. They said that I need to get in touch with the Redis plugin side. Could you please check how to configure it so that the Redis cache for the cart and checkout pages can be excluded?thanks!
- This reply was modified 1 year ago by losvincent.
Forum: Plugins
In reply to: [Redis Object Cache] how to exclude some page from redis cache@tillkruess,thanks i will try this
@scardosoabreu ,hello could you check and test this 2 issue?thanks!
Forum: Plugins
In reply to: [WooCommerce] How to remove B2C JS to optimize speed for B2B purpose?@mahfuzurwp ,Actually, I’d like to ask if there are more comprehensive script codes to remove these transaction-related JavaScript files in order to meet the B2B requirements.thanks!
Forum: Plugins
In reply to: [WooCommerce] How to remove B2C JS to optimize speed for B2B purpose?@lovingbro, thank you so much for your invaluable help. I’m planning to utilize the Elementor template function to craft product templates.
Additionally, I’ll use button elements to trigger the Elementor popup box as an inquiry box. In this way, I can remove all the JavaScript related to payment, add-to-cart, and order functions. It’s fine as long as the product manager and category display remain.
Actually, here is some code I’ve experimented with. However, I’m not sure if there’s any more code I can add to the
function.phpfile to achieve better performance.Waiting for your great advice. Thanks!add_filter( 'woocommerce_register_post_type_shop_order', 'remove_shop_order_post_type' );
function remove_shop_order_post_type( $args ) {
$args['public'] = false;
$args['publicly_queryable'] = false;
$args['show_ui'] = false;
return $args;
}
add_filter( 'woocommerce_checkout_redirect_empty_cart', '__return_true' );
add_filter( 'woocommerce_account_menu_items', 'remove_cart_checkout_menu_items' );
function remove_cart_checkout_menu_items( $menu_links ) {
unset( $menu_links['cart'] );
unset( $menu_links['checkout'] );
return $menu_links;
}- This reply was modified 1 year, 1 month ago by losvincent.
- This reply was modified 1 year, 1 month ago by losvincent.
works now,image loading fine,do not need to mouse move interact.
1.add this 2 line to exclude list from wp rocket js delay:
/wp-content/plugins/elementor/assets/lib/swiper/v8/swiper.min.js
/wp-content/plugins/elementor/assets/js/image-carousel.6167d20b95b33386757b.bundle.min.js
2.and disable the lazyload option in image or media carouse addition settings!- This reply was modified 1 year, 3 months ago by losvincent.
- This reply was modified 1 year, 3 months ago by losvincent.
@miloss84,thanks,i know the reason now,the link works for title in this elements,my title area is blank,now it works when mouse hover on title part can click

- This reply was modified 1 year, 3 months ago by losvincent.
- This reply was modified 1 year, 3 months ago by losvincent.
- This reply was modified 1 year, 3 months ago by losvincent.
@miloss84 hi,you can check the email on the top bar right area in header in beidouseo.com,i’v set mailto in icon links:

- This reply was modified 1 year, 3 months ago by losvincent.
- This reply was modified 1 year, 3 months ago by losvincent.
Forum: Themes and Templates
In reply to: [Astra] Product image gallery not work for elementor?
@bsfaradhy hello,The image style in the gallery is abnormal. It will only display correctly when there is mouse interaction.i’ve exclude woocommerce product gallery,not work.
and if i exclude astra from wp rocket,it works,but i think is not the best solution to exclude whole theme from js delay.could you fix this and share me the js files for this gallery,so i can exclude this single js file to solve this issue,thanks.

- This reply was modified 1 year, 3 months ago by losvincent.
Forum: Themes and Templates
In reply to: [Astra] Weird display issue with WooCommerceyeah,i got the same problem like you,the gallery layout won’t work untile mouse move or scroll the page,also exclude wocommerce product gallery in wp rocket not work

tips:temporary solution is to exclude Astra theme in wp rocket-one click exclude -theme-astra-check,can solve this.but will make the whole theme slower
the perfect solution is only exclude astra woo product gallery js files,but don’t know the file path,waiting for Astra support reply too.

- This reply was modified 1 year, 3 months ago by losvincent.
- This reply was modified 1 year, 3 months ago by losvincent.
Forum: Themes and Templates
In reply to: [Astra] Product image gallery not work for elementor?@bsfaradhy thanks for you great reply,i understand the reason now.and i found a new probelm both on my 2 sites.@bsfaradhy
i have exclude the woocommerce product gallery in wp rocket,but product gallery layout error,seems missing css,but when i click or scroll the page,the layout will works fine immediate.could you please tell me what’s the js file path of astra product image gallery,i want to try add manual exclude


i’ve tried on helle elementor,works fine,only happens on astra
- This reply was modified 1 year, 3 months ago by losvincent.
- This reply was modified 1 year, 3 months ago by losvincent.
- This reply was modified 1 year, 3 months ago by losvincent.
- This reply was modified 1 year, 3 months ago by losvincent.
- This reply was modified 1 year, 3 months ago by losvincent.
Forum: Plugins
In reply to: [Contact Form 7] minlength return error on submit@takayukister hello,any updates here?