Get WPFTS Pro today with 25% discount!

[Solved] How to fix "Home > Results for ..." issue for Divi

Bugs and Fixes
1 1 202 1

  • Since Divi represents breadcrumbs as a part of the post/page content, you can see a strange "Home >> Results for <search term>" text in the each item on the search results page.
    It's annoying. However this is the simple dirty fix for this problem.

    add_filter('wpfts_index_post', function($index, $post)
    {
    	global $wp_query;
    	
    	// Cut breadcrumbs out of the post_content
    	if (is_string($index['post_content']) && (strlen($index['post_content']) > 0)) {
    		if (isset($wp_query->query_vars['s'])) {
    			$subs = '~Home\s+»\s+Results\s+for\s+'.preg_quote($wp_query->query_vars['s']).'~';
    			$index['post_content'] = preg_replace($subs, '', $index['post_content']);
    		}
    	}
    	
    	return $index;
    }, 50, 2);
    

    Simple add this code to the functions.php of your Divi-child theme and this will remove prepend text from search results.

Suggested Topics

  • Link URL showing up in search results.

    Bugs and Fixes
    6
    0 Votes
    6 Posts
    682 Views
    EpsilonAdminE
    Hi @jgregory_ca Okay, the fix for Avada addon should be ready in a couple of days. Just FYI. Thanks!
  • There are no results in the search

    Bugs and Fixes
    6
    0 Votes
    6 Posts
    607 Views
    EpsilonAdminE
    This bug (definitely a bug!) was fixed in version 1.68.232 We made "ident" field in the new wpftsi_irules table shorter (limited from 255 to 130) to avoid VARCHAR index length overflow. Thanks, @lostconcerts !
  • PDFs not appearing in search result

    Bugs and Fixes
    2
    0 Votes
    2 Posts
    853 Views
    EpsilonAdminE
    Hi @blixhavn Do you remember which plugins you've installed recently? Some of them may conflict with WPFTS Pro, especially when making a search at the front end. Please try to disable those plugins temporarily. If it does not help, let's connect with TeamViewer so I can solve this issue faster (write me a private message or via Live Chat at the main page).
  • Add button or menu link to search results

    Bugs and Fixes
    7
    0 Votes
    7 Posts
    2k Views
    EpsilonAdminE
    Hi @melanie-james First of all, to see attachment contents in Smart Excerpts with Avada theme you need to implement a small patch, which removes the incompatibility of Avada theme. Please read more here https://fulltextsearch.org/forum/topic/11/solved-avada-theme-excerpt-do-not-show
  • "Prevent Direct Access" Plugin

    Bugs and Fixes
    8
    0 Votes
    8 Posts
    2k Views
    N
    Thank you so much. We'll try this, and I'll let you know the results.

Be the first to read the news!

We are always improving our products, adding new functions and fixes. Subscribe now to be the first to get the updates and stay informed about our sales! We are not spammy. Seriously.

Join Us Now!

We are a professional IT-team. Many of us have been working in a Web IT field for more than 10 years. Our advanced experience of software development has been employed in the creation of the WordPress FullText Search plugin. All solutions implemented into the plugin have been used for 5 or more years in over 60 different web-projects.

We are looking forward to your comments, requests and suggestions in relation to the current plugin and future updates.

ewm-logo-450

The forum powered by NodeBB | Contributors