Mamunur Rashid
Forum Replies Created
-
Please create a ticket from our website and send us a staging site for checking the issue.
And check the screenshot: https://prnt.sc/eEUGr8DpKBhX- This reply was modified 2 years, 3 months ago by Mamunur Rashid.
- This reply was modified 2 years, 3 months ago by Mamunur Rashid.
Forum: Plugins
In reply to: [Variation Swatches for WooCommerce] Bug Report: Swatches 2.2.0Can you send your website URL? With a screenshot of the issue.
Forum: Plugins
In reply to: [Variation Swatches for WooCommerce] variationCan you update to the latest version?
check screenshoot. https://prnt.sc/XxAn3tx-943dForum: Plugins
In reply to: [Variation Swatches for WooCommerce] variationPlease check the settings: https://prnt.sc/Vi2PrTEGYN_p
- This reply was modified 2 years, 3 months ago by Mamunur Rashid.
Forum: Plugins
In reply to: [Variation Swatches for WooCommerce] undefined when selecting variationI see Al thinks working fine. Just text has undefined.
We will fix it in the next version.Forum: Plugins
In reply to: [Variation Images Gallery for WooCommerce] Layout ShiftCan you check here : https://prnt.sc/aQCB0UVHiOng
Forum: Plugins
In reply to: [Variation Images Gallery for WooCommerce] Layout ShiftCan you send the URL?
And Send the report for the layout shift with screenshots from your end.Forum: Plugins
In reply to: [Variation Swatches for WooCommerce] undefined when selecting variationSend us what we want. https://prnt.sc/uFV_lnvie033
Forum: Plugins
In reply to: [Variation Swatches for WooCommerce] undefined when selecting variationCan you explain more?
Send us your website URL and some screenshots so we can understand where the problem is.Forum: Plugins
In reply to: [Variation Images Gallery for WooCommerce] Loads on every pagePlease Update to the latest version.
You can add below code.
add_filter('rtwpvg_get_image_props', 'rtwpvg_get_image_props', 10, 99); function rtwpvg_get_image_props( $props , $attachment_id, $product_id){ $featured_image = get_post_thumbnail_id( $product_id ); if ( $attachment_id == $featured_image ) { $props['src'] = ''; } return $props; }
It takes a lot of debugging to figure out why the problem is happening. To give a solution without any kind of access, Whatever solution I give now has to be given based on ideas.
We are trying to find the solution.
Can you check again by increasing your priority Like 99? Check and reply : https://prnt.sc/o4GUYUcpgs6u
the code is added below.
add_filter('woocommerce_single_product_image_thumbnail_html', 'remove_featured_image', 10, 99 ); function remove_featured_image($html, $attachment_id ) { global $post, $product; $featured_image = get_post_thumbnail_id( $post->ID ); if ( $attachment_id == $featured_image ) $html = ''; return $html; }
- This reply was modified 2 years, 4 months ago by Mamunur Rashid.
- This reply was modified 2 years, 4 months ago by Mamunur Rashid.
Forum: Plugins
In reply to: [Variation Images Gallery for WooCommerce] Loads on every pageThank you for informing us.
The next version will release immediately.
We will fix it.This topic has been resolved.
- This reply was modified 2 years, 4 months ago by Mamunur Rashid.
Use hooks for change the text.
add_filter('rtrs_review_sorting_title', function($title, $total_rating, $post_id){ $title = sprintf( esc_html('Reviewed %s user'), $total_rating ); return $title; },10 , 3);
- This reply was modified 2 years, 4 months ago by Mamunur Rashid.