Profile
Home » Plugins / Themes » Search Plugin SearchWP Download, v4.3.15, GPL, Enhances WordPress Search Functionality
SearchWP Download

Search Plugin SearchWP Download, v4.3.15, GPL, Enhances WordPress Search Functionality

¥
19
19
Lifetime
¥310
,
This content is viewed at the price of19Yuan, VIP free, please first
All paid content on this page can be viewed/downloaded forever after purchase
Article List

LatestSearchWPDownload, it is one of the most popular and powerful WordPress search plugins. Can greatly enhance the theme and Elementor search function, is one of the must-have plugins for websites. Comes with dozens of expansions to enhance various aspects of functionality, install on demand to enable.

The native/topic search function is too little and the search results are not accurate, many flaws. For example, page content should not appear in the search results, the default search function will search for pages and media, and cannot index direct database queries are slow.

Article content should not be involved in the keyword search, otherwise the accuracy will be reduced, the speed becomes slower, it is recommended that only the search title and summary. Just put the keywords you want to associate with the summary, this is how we do it on this site, so the search results are more accurate.

Products may need to add SKUs, custom fields, etc. to the search to make it easier for customers to quickly search for products. Highlighting search results ↓ is also necessary to increase customer experience and facilitate customers to find the content they want. The following figure is the site search Wp Rocket results highlighting effect.

Pasted 19

 

The following search function can be done ↓.

Pasted 84

Pasted 85

Pasted 86

Pasted 87

Pasted 88

 

SearchWP is a full-featured, powerful and easy to set up native/thematic search enhancement plugin that solves all the pain points mentioned above.

SearchWP Benefits

  1. The possibility to set the search scope (pages, articles, products, media, etc.) and content (title, URL, summary, content).
  2. Searching results directly from the index (without querying the database), which is faster and reduces the pressure on the database.
  3. setting synonym A = B, a search for term A will also bring up search results for term B.
  4. Partial matching (fuzzy search), which finds partial matches when the search term has no results.
  5. Search corrections, using the closest match and outputting notifications for searches with no results.
  6. Highlighting search terms in search results to make it easier for customers to find content.
  7. (a) Contains dozens of functional extensions such as Live Ajax Search, which is very powerful;
  8. Import and export settings.

Here is a small selection of these extensions, click to viewFull feature extension list and feature details.

Pasted

Pasted 1

Pasted 2

Pasted 3

 

What is a GPL licensed plugin

This plugin is a GPL licensed product and is safe and legal. Click to learn what isGPL AgreementClick to learnWordPress official website about GPL. Simply put using the GPL license plugin/theme source code open source sharing, can be legally free to change, use, distribution.

 

Plugin Security

Directly from foreign formal channels to buy, do not modify the source code. All plug-ins we use to build their own sites, used in a number of sites, safe, stable and reliable.

  1. ByVirustotal Antivirus Verification;.
  2. ByWordfenceSource code review.
  3. BySucuriSecurity antivirus scan.

Sucuri Scan Results

 

SearchWP update method/record

General new version out within 24 hours of this site will be updated, then please visit this page directly to download the new version of the installation package upload update, the product title will be written on the latest version number. Can only be updated by uploading the installation package, mind not to shoot, if you want to update online please support the original version to go to the official website of the plug-in to buy.

Click to view the update history of this plugin (Changelog)

 

SearchWP Download Terms of Purchase

This site plug-in purchased from foreign sites, the purchase price is4.99 USD/pcIt is valid for 2 years. Diamo's unified selling price is 19 RMB per unit, which is valid for life, and it takes great effort to create a tutorial on how to use it and also provides a manual question and answer service, which is definitely worth the money.

Plug-in for learning and research purposes only, virtual products are reproducible, once sold no refund, please move to the detailsTerms of Service. Please log in before purchasing, and refresh the page after purchase to get permission to download the plug-in.

Diamo for the purchase of users to provide after-sales service, plug-in use any questions please leave a message in the comments below, there will be answers to questions.

 

Installation / Activation Method

Directly install the SearchWP Add-Ons zip installer downloaded from the purchase. Then unzip SearchWP Add-Ons.zip package, unzip out dozens of extensions installer ↓, directly install the required feature extensions installer can be.

Pasted 4

The default search result page uses the theme's template, which does not look good, so it is recommended to use Elementor to recreate the search result page template.

 

Installation method 1: Upload and install

Find and click on "Plugins" > "Install Plugins" in the left menu bar of the website background, then click on "Upload Plugin" in the upper left corner, upload the downloaded zip installation package and click on "Install Now", after installation, click"Enable Plugin"Complete the installation.

Upload Plugin

Installation method 2.FTP installation

Unzip the plug-in package, put the unzippedFoldersUpload it to the plugins directory (xxx.com/wp-content/plugins).
Find and click on "Plugins" > "Installed Plugins" in the left menu bar of the website background, find the plugin in the list of plugins, and click "Enable".

Enable Plugin

 

SearchWP setup tutorial

Click the plug-in icon on the left side of the background to enter the Engines settings interface.

Pasted 7

Click Sources & Settings to set the search range↓.

Pasted 8

Check the type of content that needs to appear in the search results ↓.

Pasted 9

 

Click on the figure below ↓ number 1 set in which content search keywords, articles can be set up range is the title, URL, content, summary. Product words can be set up to search for more content. Click the following figure ↓ number 2 set the search for fixed content categories, tags.

Pasted 10

 

Click Settings to enter the synonym settings, enter the original word on the left and the synonym on the right. Searching for A will also bring up results for B.

Pasted 11

 

Click Advanced to enter the advanced settings, it is recommended to use the browser translation function to translate into Chinese and enable it as needed.

Pasted 12

This is the ↓ import/export setting.

Pasted 13

 

Common Problems & Solutions

SearchWP text appears by default in the top bar of the backendPasted 5If you want to hide it, put the following code into the functions.php of the (child) theme: Appearance > Theme Editor, select (child) theme in the upper right corner, click to open the functions.php file, add the following code at the end of the document and click to save the changes.

This content is viewed at the price of19Yuan, VIP free, please first
All paid content on this page can be viewed/downloaded forever after purchase

 

Install the following code to add search highlighting (add background color to keywords in search results), add the following code to the functions.php of the (child) theme: Appearance > Theme Editor, select the (child) theme in the upper right corner, click to open the functions.php file, add the following code at the end of the document, and click to save the changes.

// Search result keyword highlighting
function search_word_replace($buffer){
if(is_search()){
$arr = explode(" ", get_search_query());
$arr = array_unique($arr);
foreach($arr as $v)
if($v)
$buffer = preg_replace("/(".$v.")/i", "<span>$1</span>", $buffer);
}
return $buffer;
}
add_filter("the_title", "search_word_replace", 200);
add_filter("the_excerpt", "search_word_replace", 200);
add_filter("the_content", "search_word_replace", 200);

Then add the following CSS to the search results page and paste it to the bottom of Appearance > Customize > Additional CSS. Put#edaa00Change it to the color you want.

mark.searchwp-highlight {
    color: #edaa00;
    font-weight: 600;
}

 

WordPress search also has a flaw, when the keyword is empty, click the search button will enter the search results page and display all the content of the site, including the pages excluded by the plug-in / add code, media and other content. This is not good for customer experience, and may also show some content in the background that do not want to be seen by others.

You can use the code to fix this bug, when the search keyword is empty, clicking the search icon will default to the specific keyword search result page. Just put the following code into the (child) theme's functions.php: Appearance > Theme Editor, select (child) theme in the upper right corner, click to open the functions.php file, add the following code at the end of the document and click to save the changes.

The following code will enter Please enter keywords search results page, modify the eighth line of code Please + enter + keywords for the keywords you want, between the words (text) remember to put a+No.

/*
 * Redirect when search term is empty
 */
add_filter( 'request', 'uctheme_redirect_blank_search' );
function uctheme_redirect_blank_search( $query_variables ) {
 if (isset($_GET['s']) && !is_admin()) {
 if (empty($_GET['s']) || ctype_space($_GET['s'])) {
wp_redirect('/?s=Please+enter+keywords', 301);
 exit;
 }
 }
 return $query_variables;
}

 

How to search Custom Fields?

SearchWP can putACF plug-inAdded custom fields added into the search scope, see this article for detailsHow to add custom field search in WordPress..

End

Please leave any questions, related needs in the comments below and we will follow up promptly.

Author picture

Diamo specializes in building foreign trade websites / cross-border e-commerce stand-alone websites, Google SEO optimization, etc. No renewal fee, high conversion rate.

Catalog Navigation
Recommended Plugins :
Comments :

Leave a Reply

The email address will not be disclosed, and the URL needs to be removed from https://前缀 for insertion.

Need other plugins or themes? Leave a message to us!
Chat
  • WeChat Service
迪亚莫建站
Quick login without registration

Enter your username and password to log in

Have no account? Forgot password?
WeChat customer service two-dimensional code
Apply for Trial

Please scan the code to contact WeChat customer service and pay 3 yuan to try the plugin/theme.
Note: Only GPL class plugins/theme can apply for trial, each user can apply for a maximum of 1 trial resource.

Purchase Tips

To purchase, please click on the top right corner of the avatar to register/login first, after logging in, if it shows no login status please.