This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Forum Replies Created

Viewing 15 posts - 2,506 through 2,520 (of 18,425 total)
  • Author
    Posts
  • in reply to: Live search stopped working #47810
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You cannot access this content.

    in reply to: Isotopic Navigation #47809
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi,

    Well, it can cause a lot of conflicts, but you can try the following custom CSS:

    .asp_r .item {
        display: flex;
        flex-direction: column;
    }
    
    .asp_r .item>div {
        position: static !important;
    }
    
    .asp_r .item .asp_item_overlay_img,
    .asp_r .item .asp_item_overlay,
    .asp_r .item .clear {
        display: none !important;
    }
    
    .asp_r .item .asp_content {
        overflow: initial !important;
    }

    I can’t guarantee anything thoug, the isotopic layout script is very sensitive to the output being in a fixed size.

    in reply to: Only one suggested keyword on no result #47796
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You cannot access this content.

    in reply to: Category filter styling #47793
    Ernest MarcinkoErnest Marcinko
    Keymaster

    The header is not the best place for the script, I recommend putting it to the footer, right before the closing body tag, that should do the trick. When I initiate it from the console it does work, so the issue is only the timing.

    Could this be written in vanilla JS rather than jquery?
    Surely, it would be a bit more complicated, but since you have jQuery on the pages loaded, it’s just much simpler to utilize it.

    in reply to: Translation Placeholder with WPML not working #47792
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You cannot access this content.

    in reply to: Plugin doesn't return products on search page, only posts #47791
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Thanks!

    I have found the issue, it is unfortunately the theme. In the layout code, it uses a custom loop, which only allows posts, featured_item and page post types, please see screenshot of the related code here: https://i.imgur.com/KHuKX7R.png
    If I change it to any and remove the last code block, then it works: https://i.imgur.com/rRZCItG.png
    However making this change is a really bad idea, as any future update to the theme will override it.

    There is probably a reason behind this, the grid might be designed for only those post types. You can let the theme author know, this might be just a bug. If it’s intentional, then he could add a hook to change these query args in a future release.

    in reply to: Malware Scan Results – suspect.hidden.explode #47785
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You cannot access this content.

    in reply to: Live search with flip box toolset customs posts #47782
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi,

    I’m not sure if something like that is possible to integrate easily.

    You may have to do some modification, for that there is however the results templating feature. This might be doable even via custom CSS, but you may have to ask a developer about the exact details.

    in reply to: Wrong configuration #47781
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You cannot access this content.

    in reply to: Malware Scan Results – suspect.hidden.explode #47780
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You cannot access this content.

    in reply to: Category filter styling #47777
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi,

    I think the easiest and fastest way is to use a bit of javascript to mark the selected label. In CSS it’s not possible to target parent selectors, so I don’t think there is any other option:

    jQuery(function($){
        $('.asp_label').on('click', function(){
            $(this).parent().find('.asp_label').removeClass('asp_label_selected');
            $(this).addClass('asp_label_selected');
        });
    });

    This will add “asp_label_selected” class to the current selection, then you can target it with CSS:

    .asp_label_selected {
    }
    in reply to: Search bar Hangs following cache setup #47775
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi,

    Your browser might be still persising on the incorrect cached files. Clearing the browser cache is likely going to resolve the issue.

    If you are using CDN like Cloudflare, that could also explain it if that layer of page cache is also enabled.

    in reply to: Wrong configuration #47771
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You cannot access this content.

    in reply to: Plugin doesn't return products on search page, only posts #47770
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Can you please add temporary back-end and FTP access details so I can debug the issue?

    It’s probably something minor, but I will have to debug it directly.

    in reply to: Category Item Not Displayed #47769
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You cannot access this content.

Viewing 15 posts - 2,506 through 2,520 (of 18,425 total)