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

Elementor

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #34143
    JValens98JValens98
    Participant

    We had an open ticket with you a few months back regarding an issue with elementor and Ajax
    We were informed that you were aware and working on rectifying this issue
    Please can I get an update
    Thanks

    #34145
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi,

    Can you please clarify? I recall a ticket about one month ago about an elementor related thing. Was that about resetting the search shows the items from the default search, not the initial Elementor items?

    #34146
    Ernest MarcinkoErnest Marcinko
    Keymaster

    If that is the case, we may have a bypass solution, until the next release is out. This is based on the actual solution, so it might be a great way of testing it:

    add_action('wp_footer', 'wp_footer_elementor_fix_initial_results', 9999);
    function wp_footer_elementor_fix_initial_results() {
    	?>
    	<script>
    	(function($){
    		let initialElementorHTML = $('body').html();
    		wp.hooks.addFilter('asp_live_load_html', 'asp', function(html, id, inst){
    			if ( ASP.api(id, inst, "filtersInitial") ) {
    				return initialElementorHTML;
    			}
    			return html;
    		}, 10);
    	})(jQuery);
    	</script>
    	<?php
    }

    Try adding this code 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.

    #34166
    JValens98JValens98
    Participant

    This is a screenshot from a month ago

    Some Issues
    -not searching in excerpt
    – not searching in content
    -new post disappearing

    Also see attachments

    #34169
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Your screenshot did not come through. I assume you are reffering to this thread: https://wp-dreams.com/forums/topic/search-in-content-and-search-in-post-excerpt-not-working/

    That was answered a month ago.

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.