wpforce
Forum Replies Created
-
Forum: Plugins
In reply to: [Additional Variation Images Gallery for WooCommerce] Sale Flash BadgeI didn’t try the function
woocommerce_show_product_sale_flash();
Please try it yourself.
I have just given you an idea of how you can insert your custom code using the Additional Variation Images Gallery plugin product-images.php file.
Forum: Plugins
In reply to: [Variation Swatches for WooCommerce] how assign image attribute in csvAs far as I know, it is not possible right now.
BTW, they have a feature request channel- https://storepress.fider.io/
You can send them this feature request. I hope they will look into it.
Forum: Plugins
In reply to: [Variation Swatches for WooCommerce] I can’t customize css product variationsYou can place the below CSS at Appearance > Customize > Additional CSS
table tbody tr:hover>td, table tbody tr:hover>th { background-color: transparent; } table tbody>tr:nth-child(odd)>td, table tbody>tr:nth-child(odd)>th { background-color: transparent; } .woocommerce div.product form.cart .variations th { display: block; text-align: left; }
Then let me know if it resolves your issue or not.
Forum: Plugins
In reply to: [Additional Variation Images Gallery for WooCommerce] Sale Flash BadgeCopy the product-images.php and keep it inside your current theme’s template folder.
If you have already a template folder inside your theme, you have no need to create one.
But, if you have not please create a folder called template. Then add the below code at the current theme’s functions.php
function edit_wvg_gallery_template($template, $template_name){ if ( $template_name == 'single-product/product-image.php' ) { $template = get_template_part('template/product', 'images'); } return apply_filters( 'woo_variation_gallery_gallery_template_override_location_new', $template, $template_name ); } add_filter('woo_variation_gallery_gallery_template_override_location', 'edit_wvg_gallery_template', 30, 2);
Then do whatever you want inside your current theme > template > product-images.php file
Forum: Fixing WordPress
In reply to: empty cart pageDid you check this-
https://www.businessbloomer.com/woocommerce-add-content-empty-cart-page/Forum: Plugins
In reply to: [Additional Variation Images Gallery for WooCommerce] Image loading IssueYou can run a compatibility test by doing the following steps-
> Deactivate all plugins except WooCommerce and Additional Variation Images Gallery plugin.
> Then check if it is still happening or not. If not then activate other plugins one by one to identify the conflicting plugin.
Forum: Fixing WordPress
In reply to: empty cart pageIf you are using WooCommerce you can override the cart page template. Then you can design your cart page as you want.
- Just create a folder called “woocommerce” inside your child theme/ theme
- Inside “woocommerce” folder create folder called “cart” and copy the file cart-empty.php from woocommerce (plugin) > templates > cart and paste inside your child theme/theme > woocommerce > cart
- Then design the template as you want.
Note: if you are good at code then you can try the above steps.
Hopefully, these steps will be helpful for you.
Forum: Fixing WordPress
In reply to: How to remove title from header imageTo understand your issue a screenshot or site link will be helpful to others.
Forum: Plugins
In reply to: [Additional Variation Images Gallery for WooCommerce] Image Duplication issueYour site is not working. Can you please recheck your link and provide a workable link?
It is the forum for free plugins. Please contact them regarding the advanced version of this plugin.
They have updated the version to
1.3.3
.Did you update the plugin and is it resolved in the latest release?
Place the below code at your child theme’s functions.php or install the Code Snippets plugin and use it as a snippet-
add_action('woo_variation_gallery_frontend_loaded', function($gallery_frontend){ remove_action( 'wp_footer', array( $gallery_frontend, 'slider_template_js' ) ); }, 10, 1);
Then check and let me know if it dequeues the scripts or not.
Try deactivating all your plugins (except WooCommerce and Additional Variation Images Gallery plugin) and re-activating them in various combinations until you isolate which one(s) caused the issue.
Without your product link, it is difficult to help.
Can you please share a link to check?
Forum: Plugins
In reply to: [Variation Swatches for WooCommerce] I can’t customize css product variationsIt is difficult to help without visiting your product page.
Can you please share your product page link to check?