Forum Replies Created
-
AuthorPosts
-
Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterHi Aki,
1. You can change that in the plugin settings here: https://i.imgur.com/CcHazTC.png
2. The issue is caused by a 3rd party script unfortunately, it is not normal scroll behavior. It captures and prevents inner element scrolling and propagates it to the body scroll. It is this smoothscroll.js script file, which is located at:
wp-content/themes/soledad/js/smoothscroll.js
So it seems to be coming from the theme. Try checking the theme settings to turn off “smooth scrolling” or something similar. Nowdays it is not recommended to fiddle with scrolling behavior either as devices can already handle that.Ernest Marcinko
KeymasterYou are very welcome 🙂
Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterYou are welcome!
Yes – the filters apply to the auto-populate as well.
Ernest Marcinko
KeymasterWell, it should not be too difficult, but you need a lightbox script. I found a ready made test solution in a previous thread:
add_action('wp_footer', 'asp_custom_footer_script', 99999); function asp_custom_footer_script() { ?> <style> .asp_r { z-index: 10 !important; } </style> <script> var s = document.createElement( 'script' ); s.setAttribute( 'src', 'https://unpkg.com/[email protected]/dist/simple-lightbox.js' ); document.body.appendChild( s ); s = document.createElement( 'link' ); s.setAttribute( 'rel', 'stylesheet' ); s.setAttribute( 'href', 'https://unpkg.com/[email protected]/dist/simple-lightbox.css' ); document.body.appendChild( s ); jQuery(function($){ $('.asp_m').on('asp_results_show', function(){ new SimpleLightbox('.asp_r .item a', { /* options */ }); }); }); </script> <?php }Try adding this code via the Code Snippets plugin or to the functions.php file in your theme/child theme directory – make sure to have a full server back-up first for safety. For more details you can check the safe coding guidelines.
Please keep in mind, that this is a test code only, the files should be self-hosted and some other checks may be required.
Unfortunately I am not available for custom jobs, I am sorry.
Ernest Marcinko
KeymasterSure!
Make sure the images are enabled here, and this option is enabled as well.
Ernest Marcinko
KeymasterHi Romain,
One of the plugin files seem to be missing from the server, it may have been deleted by accident. Please try to deactivate, delete and reinstall the plugin, that should resolve the problem.
If that does not help and the file is there, then there might mod_rewrite rule which matches the file path pattern and tries to redirect to an unknown location. It is rare, but usually originates from a misconfigured .htaccess file or a misconfigured permalink structure.
November 30, 2023 at 10:58 am in reply to: Urgent support required: Unable to create the filter as i want #46249Ernest Marcinko
KeymasterCan you pelase add temporary log-in details so I can check the configuration?
Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterYes – exactly, nothing else is needed.
Ernest Marcinko
KeymasterSure!
Instead of using Elementor altogether, you could make something like this (on the right side), using only the search plugin.
For that:
– choose any horizontal theme
– turn off the horizontal scroll
– turn on the load more (if you want to)
– turn on the auto populate
– change the results display mode to blockNow place the shortcode anywhere on a page, and when you open the page the plugin will trigger and show initial results.
Ernest Marcinko
KeymasterYou cannot access this content.
-
AuthorPosts