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

Forum Replies Created

Viewing 15 posts - 1,486 through 1,500 (of 18,418 total)
  • Author
    Posts
  • in reply to: RTL #52512
    Ernest MarcinkoErnest Marcinko
    Keymaster

    In that case I’m afraid that’s not possible. The results have to be WordPress content on the same WordPress multisite installation for the plugin to be able to access them. Multisite is a WordPress feature which allows you connecting multiple WordPress installations.

    in reply to: RTL #52508
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You are welcome!

    Are the subdomains on the same WordPress Mulsisite Network?

    in reply to: horizontal filters #52507
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    Sure! It is possible with settings and a bit of custom CSS.

    First off, you want to set the settings layout to a block and visible. Then use the following custom CSS:

    .asp_ss fieldset {
        min-width: 100% !important;
    }
    
    .asp_ss fieldset .categoryfilter {
        display: flex !important;
        flex-wrap: wrap;
    }

    You can use the same license on all staging sites on the same domain 🙂

    in reply to: New pages from sub site are not showng up in the search #52506
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You cannot access this content.

    in reply to: RTL #52497
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi,

    Sure!

    The easiest way around it is setting the magnifier to the right side by default, then using this custom CSS code as well:

    .rtl button.promagnifier {
        order: 1 !important;
    }

    This will force the order to the left side when RTL class is present on the body (aka RTL langauge is used).

    in reply to: Disable result link (click action) #52496
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Okay. Let’s try to force all click actions off via this custom code:

    add_action(
    	'wp_footer',
    	function () {
    		?>
    		<script>
    			document.querySelectorAll(".asp_main_container").forEach((el) => {
    				el.addEventListener("asp_results_show", (event) => {
    					console.log('hey');
    					setTimeout(()=>DoMini(".asp_r .item").off(), 10);
    				});
    			});
    		</script>
    		<?php
    	},
    	9999
    );
    in reply to: Events content search in consistent #52495
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You cannot access this content.

    in reply to: WP template – static content not showing in search #52494
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You cannot access this content.

    in reply to: Disable result link (click action) #52489
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Okay, this seems to be very close.

    The Bio link href is however missing, it should be something like this:

    <a href="<?php echo get_permalink($r->id); ?>" <?php echo ($s_options['results_click_blank']) ? " target='_blank'" : ""; ?>>View Bio</a>

    I can’t see any other issues there.

    in reply to: Autocomplete does not go away when I type again #52487
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi,

    Since then there was no release yet, it is planned for next week 🙂

    in reply to: terms filter on custom page #52485
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Sure! It’s getting super close.

    I suspect the search may not be configured correctly here. I’m seeing results as product categories as well, which is a problem.

    Can you please make sure, that on the search settings there are no taxonomy terms selected as results, as well as the products are the only post types selected.
    That should very likely change the output.

    in reply to: Cancellation / Refund #52483
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You cannot access this content.

    in reply to: terms filter on custom page #52482
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Okay, I probably know why.

    Can you please add a div container around the UL with class “asp_es_3” and on the UL use only “elementor-widget-container”, like so: https://i.imgur.com/BXciwWg.png

    If you want, I can do direct debugging and even code change on the plugin if needed. In that case feel free to add temporary FTP and back-end access and I will do it for you.

    in reply to: terms filter on custom page #52480
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Okay. I see the request is started, but the render does not trigger.

    Can you please also add this class to the loop container: elementor-widget-container
    That may trick the script to think it’s in an Elementor container. Hopefully this will change something.

    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi Jason,

    The issue was, that the version were are using on the site was over 9 months old (4.26.10). I have updated to the latest version manually, now everything is okay and activated.

Viewing 15 posts - 1,486 through 1,500 (of 18,418 total)