amirin
Forum Replies Created
-
Thank you Support. The issue is now resolved.
Regards,
AmitavThank you Support. The close button overlapping issue is now resolved.
Regards,
AmitavHi Support,
In mobile version the filters are working correctly.However, the issue around the close button overlapping still exist. Please find the screenshot of my mobile version :
https://snipboard.io/02Q1KI.jpgThe overlapping issue is common in desktop too.
Hi Support,
Thank you sharing your inputs. After incorporating your suggested steps, the filters is working as expected. However, I noticed there are couple of issues:1. The filter is working fine only in desktop mode, however when tested on mobile phones – after selecting the first filter, the page automatically reloads and prevent user to select another filter choice.
2. The close button overlaps on the filter item names. When I select a filter, automatically the close (X) button appears which is fine, but it overlaps with the filter choice name. This is common issue for both desktop & mobile version.
Appreciate if you can suggest steps to fix these issues.
Thanks,
AmitavHi Support,
Thank you reply. Could you please share the steps by which I can enable the concurrent/multiple selection for filters. For example, I like users to select SOP and Format together(One go) and the respective documents show on the results page.To achieve the above, what steps/settings should I do. Appreciate your inputs,
Regards,
AmitavPerfect, this works nicely..!!
Hi Support, Wanted to report that the issue is fixed now. I had to use a code snippet to display all products in the page. For some reason my default theme setting was preventing to show all. I will proceed to customize the filer setting now to meet the needs I wanted. Quick question – Is there a way I can add the word ‘Filter’ in the circular green modal, to make it more evident & visible to the users?
Thank you for your response. Yes it currently it shows tow items only and need to load all( the set up I have is that it should load 15items per page i.e. 5 columns & 3 rows per page for Desktop). I have deactivated the plugin, but still it shows only 2. Not sure where the issue is. Appreciate your help..!
Hi Team,
I was able to add the Shortcode download button(subscription form) to the product archive page and the single product page. I’m using the short description field of the product to pass the shortcode.
In the shop page, I have added the following code in my functions.php of the theme to get the short description. The download button appears correctly, however when clicked it takes me to the single product page rather than showing the subscription popup. In the single product page, the download button is working correctly and when clicked- the pop subscription appears. How can I make the subscription pop up work on the shop page without having to go to a single product page? Appreciate if anyone could help.Link to shop page : https://safetydocument.com/documents
Code used in Theme’s functions.php:add_action( ‘woocommerce_after_shop_loop_item_title’, ‘wc_add_short_description’ );
/**
* WooCommerce, Add Short Description to Products on Shop Page
*/
function wc_add_short_description() {
global $product;?>
<div itemprop=”description”>
<?php echo apply_filters( ‘woocommerce_short_description’, $product->get_short_description() ) ?>
</div>
<?php
}- This reply was modified 2 years, 10 months ago by amirin.