Rahul Arora
Forum Replies Created
-
Forum: Plugins
In reply to: [SearchIQ - The Search Solution] Multiple filtered search barsHi, we have checked the indexed documents on your site and can see only the page https://www.603la.net/get-legal-aid/glossary/ is indexed.
The page links on the Glossary page, like https://www.603la.net/glossary/abrogate/ or https://www.603la.net/glossary/accrual/, are not indexed. Please select the post type ‘glossary’ for indexing, Resynchronize posts from the plugin settings, and test if the page is displayed in the search results.Moreover, you are using
post-types="glossary"in the shortcode. We need to use the below attribute in the shortcode to specify the post type.
postTypes=”glossary”- This reply was modified 2 weeks, 3 days ago by Rahul Arora.
Hi, we have checked and the sponsored Ads are not enabled on your site. The mentioned URL the URL https://blue-worm-632841.hostingersite.com/el-eternauta-netflix-critica/ seems to be indexed from your website’s WordPress database.
- This reply was modified 2 weeks, 5 days ago by Rahul Arora.
Forum: Plugins
In reply to: [SearchIQ - The Search Solution] Sponsored Links on search resultsWe have checked and the sponsored Ads are not enabled on your site.
Regarding the duplicate search results, the URL https://blue-worm-632841.hostingersite.com/el-eternauta-netflix-critica/ seems to be indexed from your WordPress database. This is not a sponsored link.
Have you moved the site from dev/staging to production? Please check for these links in the WordPress database and remove them.Forum: Plugins
In reply to: [SearchIQ - The Search Solution] Sponsored Links on search resultsHi, we are checking your site and will update you soon.
Can you please share the search term for which you observed the sponsored link?
Forum: Plugins
In reply to: [SearchIQ - The Search Solution] Multiple filtered search barsWe support shortcode like below which can be placed anywhere in the page/post content.
[siq_searchbox type="search-bar" placeholder="Search here" post-types="post,product" width="500″ placement="left"]You can add the below code to your theme’s ‘functions.php’ file to convert the widget into the shortcode.
function siq_search_widget_shortcode($atts) {
ob_start();
// Default widget instance values (you can override via shortcode attrs)
$instance = shortcode_atts([
'title' => '',
'placeholder' => 'Search',
'postTypes' => '',
'postcatidfilter' => '',
'postCatFilterClause' => ''
], $atts);
// Convert comma-separated values to array where needed
if (!empty($instance['postTypes'])) {
$instance['postTypes'] = explode(',', $instance['postTypes']);
}
if (!empty($instance['postcatidfilter'])) {
$instance['postcatidfilter'] = explode(',', $instance['postcatidfilter']);
}
// Render widget
the_widget('SIQ_Search_Widget', $instance);
return ob_get_clean();
}
add_shortcode('siq_search', 'siq_search_widget_shortcode');And can use it in one or combined ways below:
Basic:
[siq_search]With custom placeholder:
[siq_search placeholder="Search products…"]With post types:
[siq_search postTypes="post,page,product"]With category filter:
[siq_search postcatidfilter="1,2,3"]Forum: Reviews
In reply to: [SearchIQ - The Search Solution] Working fine.Thank you for the wonderful review. We are glad that you liked SearchIQ.
Please feel free to contact us if you have any questions.