Hello guys, Brilliant theme and it works pretty good, I have a couple problems though I was hoping to get fixed.
- Whenever I put a specific variation on sale and then use visual composer to display it. the sales badge appears on the entire product and is visible on all variations. So it might be confusing for customers as there is no way to figure out which variation is on sale. Is it possible that it displays only the variation that's on sale?
- I'm using AWS search widget for an Ajax search since you guys do not support Ajax searching. Now I edited the header-main.php file so when the search icon in the nav menu is clicked, it displays the AWS search widget. The problem is that the search widget appears but its no clickable anymore it just sits there.
- I'm using a plugin which allows products to be added to cart using Ajax but the problem is whenever a product is added to cart there is no confirmation message appearing. Now on desktop we can get away with it because the mini-cart updates and customers can see it updating. On mobile there is no mini-cart visible so customers have no way of checking if the product was added to cart or not. I created a function (see screenshot below) and then used the 'added_to_cart' to bind div to it. Problem is it doesn't show. I'm guessing Ajax needs to be used but I have no idea how to do it. If there is a more simpler way of doing this I'll really appreciate it.
Thank you for your kind words. I'll try to answer to your questions and hopefully they will help you.
1. Is it possible to tell me where is this issue located. Right now I cannot access your site because it is in coming soon mode. It would be great if you can provide WP credentials so I can check and modify theme code if thats needed.
2. I need to see the site and check what error is being displayed on search console.
3. Our theme uses AJAX add to cart (on catalog page). You don't need any specific plugin for this. If thats the case then can you tell me which message to show and which button should trigger that.
On all these questions, I need to see and access your site on backend as well so credentials are required. To include your credentials click Insert Credentials button in editor toolbar. (See how)
If you are looking to remove only the "Offer" sale badge then you can hide with Custom CSS, you can add it for that page only (as shown here):
.onsale { display: none !important; }
2. I am not seeing any search bar in header, I looked in header-main.php and not found any code related to aws search widget.
3. I saw the problem and I need to edit some JS files in order to troubleshoot and fix the problem. For this I need to login to your FTP. Can you please create a temporary account for me so I work on that.
1. You misunderstood, I don't want to hide the sales badge. The thing is as you can see the entire product has the sales badge. As an example see 'Green Cardamom Whole' is on sale but the thing is I only put 'East End Green Cardamom Whole' on sale. But as you can see all variations have the sales badge. Is there a way to only make the variations on sale appear and not the entire product?
2. I can tell you where I put the code. It was in the header-main.php file. I put it on line 204 in standard menu case. I replaced:
kalium_header_search_field( $current_menu_skin );
with a shortcode. I've included a screenshot for you.
Now I was wondering if its possible that I can just include a shortcode at wherever the searchform is so when I click on the search icon the shortcode search bar appears instead of the kalium one.
3. Unfortunately I'm not allowed to provide FTP access for whatever reason but if you can let me know any changes to make I will.
Even if you switch the theme you will see the Sale badge appearing regardless the current variation
2. Sure, that can be replaced with anything you want, I suggest to add a "do_action" call so you can assign your own code for example, instead of the current code just add:
do_action( 'header_shortcodes' );
Then to add your own content there simply add your code in functions.php (of child theme):
3. Regarding this issue, we are working on a new update and right know I cannot give it to you because it contains some changes that were introduced in WooCommerce 3.3.1. We can work on this issue right after Kalium 2.3 is released.
Hello guys,
Brilliant theme and it works pretty good, I have a couple problems though I was hoping to get fixed.
- Whenever I put a specific variation on sale and then use visual composer to display it. the sales badge appears on the entire product and is visible on all variations. So it might be confusing for customers as there is no way to figure out which variation is on sale. Is it possible that it displays only the variation that's on sale?
- I'm using AWS search widget for an Ajax search since you guys do not support Ajax searching. Now I edited the header-main.php file so when the search icon in the nav menu is clicked, it displays the AWS search widget. The problem is that the search widget appears but its no clickable anymore it just sits there.
- I'm using a plugin which allows products to be added to cart using Ajax but the problem is whenever a product is added to cart there is no confirmation message appearing. Now on desktop we can get away with it because the mini-cart updates and customers can see it updating. On mobile there is no mini-cart visible so customers have no way of checking if the product was added to cart or not.
I created a function (see screenshot below) and then used the 'added_to_cart' to bind div to it. Problem is it doesn't show. I'm guessing Ajax needs to be used but I have no idea how to do it. If there is a more simpler way of doing this I'll really appreciate it.
Hi wwfoods1,
Thank you for your kind words. I'll try to answer to your questions and hopefully they will help you.
1. Is it possible to tell me where is this issue located. Right now I cannot access your site because it is in coming soon mode. It would be great if you can provide WP credentials so I can check and modify theme code if thats needed.
2. I need to see the site and check what error is being displayed on search console.
3. Our theme uses AJAX add to cart (on catalog page). You don't need any specific plugin for this. If thats the case then can you tell me which message to show and which button should trigger that.
On all these questions, I need to see and access your site on backend as well so credentials are required. To include your credentials click Insert Credentials button in editor toolbar. (See how)
Hi,
1. On offers page there appear only on sale products, I have added a sample product on sale and it was working as well:
(view large version)
If you are looking to remove only the "Offer" sale badge then you can hide with Custom CSS, you can add it for that page only (as shown here):
2. I am not seeing any search bar in header, I looked in header-main.php and not found any code related to aws search widget.
3. I saw the problem and I need to edit some JS files in order to troubleshoot and fix the problem. For this I need to login to your FTP. Can you please create a temporary account for me so I work on that.
1. You misunderstood, I don't want to hide the sales badge. The thing is as you can see the entire product has the sales badge. As an example see 'Green Cardamom Whole' is on sale but the thing is I only put 'East End Green Cardamom Whole' on sale. But as you can see all variations have the sales badge. Is there a way to only make the variations on sale appear and not the entire product?
2. I can tell you where I put the code. It was in the header-main.php file. I put it on line 204 in standard menu case. I replaced:
with a shortcode. I've included a screenshot for you.
Now I was wondering if its possible that I can just include a shortcode at wherever the searchform is so when I click on the search icon the shortcode search bar appears instead of the kalium one.
3. Unfortunately I'm not allowed to provide FTP access for whatever reason but if you can let me know any changes to make I will.
Hi,
1. Thanks for explaining this issue, well the bade is added by WooCommerce automatically on Product Container and not for each image as shown here:
(view large version)
Even if you switch the theme you will see the Sale badge appearing regardless the current variation
2. Sure, that can be replaced with anything you want, I suggest to add a "do_action" call so you can assign your own code for example, instead of the current code just add:
Then to add your own content there simply add your code in functions.php (of child theme):3. Regarding this issue, we are working on a new update and right know I cannot give it to you because it contains some changes that were introduced in WooCommerce 3.3.1. We can work on this issue right after Kalium 2.3 is released.