Forum Replies Created
-
AuthorPosts
-
Ernest Marcinko
KeymasterIn 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.
Ernest Marcinko
KeymasterYou are welcome!
Are the subdomains on the same WordPress Mulsisite Network?
Ernest Marcinko
KeymasterHi!
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 🙂
January 16, 2025 at 1:13 pm in reply to: New pages from sub site are not showng up in the search #52506Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterHi,
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).
Ernest Marcinko
KeymasterOkay. 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 );Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterOkay, 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.
Ernest Marcinko
KeymasterHi,
Since then there was no release yet, it is planned for next week 🙂
Ernest Marcinko
KeymasterSure! 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.Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterOkay, 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.
Ernest Marcinko
KeymasterOkay. 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.January 14, 2025 at 1:20 pm in reply to: Getting an error with the plugin WP: Connection error, please try again later. #52478Ernest Marcinko
KeymasterHi 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.
-
AuthorPosts