Forum Replies Created
-
AuthorPosts
-
Hi Tony,
As I see you are using header layout 3 on your site.
The file
layout-3.php
should be changed for the integration and must be placed in your child-theme.I recommend you to wait for Harry’s support. 🙂
Regards.
Rahim Vaziri
CEO & Founder at Look.irAnd also I see that the sale percentage for bundle products are applying to the main product!
Is this how it should be?
My main product has it’s own sale discount, by applying sale to the bundle products it’s getting another sale too!
Rahim Vaziri
CEO & Founder at Look.irHi Harry,
I just tired making a bundle product on my site. https://look.ir/uRLec
1- Is there any chance to have
Variation Swatches
 for the bundle products? I see it has the default Woocommerce listing instead of swatches.2- In the bundle, I have a variable product. I have a color which is
navy-blue
 and is translated in my attributes, but I see the bundle is using the slug of the color, instead of the name of the color.3- you set the default photo size to
70x70
 but I see this will crop the image. I realized70x90
 will be great without cropping. So you may want to change the default value.4- I think the select field in the bundle needs some css fix. the select width is too small. so the attributes and arrows are so close together and in the RTL, the arrows should be on the left and the attribute should be on the right.
5- I have a function which will hide the price for out of stock products. And this is so logical that you hide the price of a product which is over and you may come back via new price. But I see this is not working for the bundle.
Is there any chance to apply that to the bundle too?
/* hiding price for out of stock products */ add_filter( "woocommerce_variable_sale_price_html", "theanand_remove_prices", 10, 2 ); add_filter( "woocommerce_variable_price_html", "theanand_remove_prices", 10, 2 ); add_filter( "woocommerce_get_price_html", "theanand_remove_prices", 10, 2 ); function theanand_remove_prices( $price, $product ) { if ( ! $product->is_in_stock()) { $price = ""; } return $price; }
6- In RTL, the currency symbol comes after the price on the left, but in the bundle it’s on the right and so close to the price.
7- I see an extra space in here:Â http://prntscr.com/mr7aan
Kind regards Harry
Rahim Vaziri
CEO & Founder at Look.irHi Tony,
Hope you are fine. 🙂
I am using Ajax Search for WooCommerce on my site.
And it’s working fine.
Have you checked this plugin?
Here is my site: Look.ir
Regards.
Rahim Vaziri
CEO & Founder at Look.irHi Harry,
Hope you are fine.
Did you read this recommendation? Any idea? 😀
Regards.
Rahim Vaziri
CEO & Founder at Look.irThanks a lot Harry. 🙂
Rahim Vaziri
CEO & Founder at Look.irYeah Harry, you are right.
I added this to my main site.
Regards.
Rahim Vaziri
CEO & Founder at Look.irThe good news is that this is just a warning and by hiding that, I don’t get any error in the console.
So this pages will not take longer time to load.
Regards.
Rahim Vaziri
CEO & Founder at Look.irHi Harry,
I switched to Storefront theme and this happened again.
I believe this is coming from WordPress core code.
I found a topic for this:Â https://wordpress.stackexchange.com/questions/103148/error-trying-to-get-property-of-non-object-with-custom-walker-for-wp-nav-menu
But the topic didn’t help me. couldn’t solve the problem via the answer yet.
So finally I added this code to wp-config.php file to hide it:
ini_set('display_errors','Off'); ini_set('error_reporting', E_ALL ); define('WP_DEBUG', false); define('WP_DEBUG_DISPLAY', false);
Just wanted to share it with you if this happened to another customer.
If I found the solution will update this topic again.
Regards.
Rahim Vaziri
CEO & Founder at Look.irHi Harry,
I’m not sure but I think we misunderstood each other.
I mean this:Â http://prntscr.com/mm8y9m
Regards.
Rahim Vaziri
CEO & Founder at Look.ir -
AuthorPosts