tariqaltaf
Forum Replies Created
-
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Indexing and google indexing QuestionsThanks for the reply. Actually I just want to enhance my technical knowledge that how newly published pages will appear automatically in search results without running the indexer.
Regarding Google Live indexing Yoast SEO plugin will add this feature in their upcoming update in the end of march.
https://yoast.com/live-indexing-bing-google-yoast-seo/
thanks and waiting for your response.Forum: Plugins
In reply to: [Yoast SEO] Google Indexing APIThanks. I just came to know that Google live indexing will be available soon in this plugin by this link:
https://yoast.com/live-indexing-bing-google-yoast-seo/Forum: Plugins
In reply to: [Relevanssi - A Better Search] How to set filters to limit search resultsthanks again
Forum: Plugins
In reply to: [Relevanssi - A Better Search] How to set filters to limit search resultsoh great thanks a lot for this help.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] How to set filters to limit search resultsAlready tried that. It adds the query string in my url like below:
https://localhost/project/?s=contact&posts_per_page=3But it cannot limit the search results. Here is my complete code:
<?php /// Calling Custom Search Form /// add_filter( 'get_search_form', 'custom_search_form_2' ); get_search_form(); remove_filter( 'get_search_form', 'custom_search_form_2' ); if(have_posts()): /// Calling Custom Search Form /// add_filter( 'get_search_form', 'custom_search_form_2' ); get_search_form(); remove_filter( 'get_search_form', 'custom_search_form_2' ); /// Filteration //// $query_string = $_SERVER['QUERY_STRING']."<br>"; $posts_10 = add_query_arg( 'posts_per_page', 3, $query_string ); $posts_20 = add_query_arg( 'posts_per_page', 20, $query_string ); $posts_30 = add_query_arg( 'posts_per_page', 30, $query_string ); ?> <a href="<?php echo '?'.$posts_10;?>">Show 10 posts</a> <?php while(have_posts()): the_post(); ?>
Kindly guide what is the mistake because it cannot filter the number of results when I use the filtering link.
Thanks
Forum: Plugins
In reply to: [Relevanssi - A Better Search] How to set filters to limit search resultsthanks for this. But how to make a link?
thanks I have added.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] How to generate pagination in search resultsOne more question
1) How can I add search textbox on search results page. I am also using Relevanssi Auto Complete plugin so I want autocomplete functionality on this new search text box.Thanks
Forum: Plugins
In reply to: [Relevanssi - A Better Search] How to generate pagination in search resultsthanks let me test this.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] relevanssi not pickup page title or contentI am started using this plugin in my wordpress 5.1 website. It works well but it gives few issues. I have setup a new page and add following words in it :
technology1 partner1 huawei ps4pro redidentIt display the page only if I search with : technology, partner
If I search with other above words then it cannot show the page in search.I have deleted all stopwords and build the index again but the problem is still there.
Why this behaviour occurs? please guide