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

Forum Replies Created

Viewing 15 posts - 826 through 840 (of 18,415 total)
  • Author
    Posts
  • in reply to: Jumping to keyword location on page when searching #54537
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Oh okay, I will check that.

    I tried to open the page, but it’s .htaccess password protected. Can you please let me know?

    in reply to: Bugs in Index Table Search: Minimum Word Length Ignored #54534
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Oh I see. I’m afraid no.

    This is however a borderline bug in my opinion, so just in case I have made an issue request for it. I can see a possibility to try to fix this in some way to perhaps check the adjusted word length. You can expect some sort of an improvement on this for the upcoming release for sure.

    in reply to: Sticky result on top #54533
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You cannot access this content.

    in reply to: Bugs in Index Table Search: Minimum Word Length Ignored #54528
    Ernest MarcinkoErnest Marcinko
    Keymaster

    On the screenshot it’s highlighted, but that does not mean it was a match for that keyword. The highlighter script runs during the page load, after the query is completed. It is much more likely that either the other word, or a partial was matched somewhere and the highlighter highlights it as it only sees the search phrase – not the matching (it’s impossible).

    Cyrillic should work the same way, it shouldn’t affect it.

    If you want I can investigate this further, just make sure to add temporary back-end and FTP details, and I will run a debugging session.

    Ernest MarcinkoErnest Marcinko
    Keymaster

    You cannot access this content.

    in reply to: Just a small typo on an Ajax Search Pro product page #54520
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You cannot access this content.

    in reply to: Bugs in Index Table Search: Minimum Word Length Ignored #54519
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi,

    I assume you are reffering to this option under the search instance settings? What that does is when set to 3 is, when a phrase is entered, say “3 5 666” it is considered as “666”. So 3 and 5 are ignored. If there is nothing left, then the an empty phrase search is executed.

    There is a separate keyword lenght option on the index table settings here: https://i.imgur.com/fvKZCnG.png
    I suggest setting that instead, so shorter keywords are not indexed whatsoever. After changing the option you will have to make a new index.

    On top of that, I recommend setting the minimum character count to 3 so the search doesn’t trigger under 3 characters, just to make it more user friendly: https://i.imgur.com/TcdLEd0.png

    This configuration will ensure that no entries below 3 characters are triggered, and for longer entries phrases below 3 characters are completely ignored (as they aren’t in the index)

    in reply to: Filter the search’s sources #54518
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You cannot access this content.

    in reply to: Statistics Errors and Reports #54510
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Wow, thank you very much for sharing it with us 🙂 This might be helpful for others!

    Ernest MarcinkoErnest Marcinko
    Keymaster

    That code look okay to me, it doesn’t work?
    The hook seems to be correct as far as I can tell.

    Ernest MarcinkoErnest Marcinko
    Keymaster

    That will not fix the issue, it is unrelated to the spinner. This is again caused by a 3rd party script, so I can’t guarantee anything. Normally the plugin does not blur the focus when displaying the results.

    Try this variation:

    add_action('wp_footer', function () {
    	?>
    	<script>
    		const f = ( select = false ) => {
    			let input = document.querySelector('.dialog-widget .asp_m input.orig');
    			if ( input === null ) {
    				return;
    			}
    			input.focus();
    			if ( select ) {
    				input.setSelectionRange(0, 9999);
    			}
    
    		}
    		jQuery(document).on('elementor/popup/show', ()=>{
    			setTimeout(()=>{f(true);}, 800);
    			document.querySelectorAll(".asp_main_container").forEach((el) => {
    				el.addEventListener("asp_search_end", () => {
    					setTimeout(()=>{f();}, 500);
    				});
    			});
    		});
    	</script>
    	<?php
    }, 999999);

    But again, this is just patching over and over something that may change and cause the conflict to appear again. It would be the best to find what the cause is.

    Ernest MarcinkoErnest Marcinko
    Keymaster

    All right, thank you for the feedback, I will make sure to include this fix in the next update.

    The Lite and Pro are standalone plugins, so you should only have one of them enabled, in this case the Pro version. You can remove the Lite version if you want to, it’s not needed for the Pro.

    Ernest MarcinkoErnest Marcinko
    Keymaster

    The linked plugin works on WordPress 6.0 and above, including 6.1.7.

    in reply to: Help Needed with Exact Match Behavior in Ajax Search Pro #54498
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi,

    I can confirm there is an issue with the keyword highlighter. The exact matching works all right, but the highlighter simply highlights the first phrase match incorrectly. Luckily this is a very minor bug and I was able to locate it and find a potential fix already.

    Please download this beta version and install it.

    After installation, clear all layers of cache so the scripts are refreshed. After that, the scrolling should prioritize exact match highlights and scroll to the first location of a possible exact match.

    in reply to: search field functionality stopped working #54497
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi,

    On the error console there is a 403 error for all plugin assets, meaning that the files are not accessible, the server refuses to give access to them. This includes the scripts as well as the stylesheets: https://i.imgur.com/cATDnyi.png

    The most likely cause is a permission change on the server side or a firewall block. I recommend these steps to resolve the issue:
    – Make sure the wp-content/cache folder exists and it’s writable. The folder permissions should be 0755 and owned by the www-data user if you are using apache with mod PHP. If you are using PHP-FPM, please consult the server admin about proper folder ownerships.
    – Also make sure the wp-content/cache/asp folder exists with the same permissions and ownerships.
    – Check the apache mod_rewrite rules for any blocks for the upper mentioned folders

    By default all of these should be just fine, unless the permissions or ownerships were changed on the server side by either a plugin/script or manually.

Viewing 15 posts - 826 through 840 (of 18,415 total)