I has installed the pro version of your plugin. Currently I am facing a problem with the search of the smart manager.
Either the results are showing products which are not relevant to the searched item at all or is taking a long time to fetch the results.
Kindly check this issue and resolve this issue as soon as possible.
]]>Many people tried but failed miserably to solve such a challenging issue for their brain.
Please try yourself to solve this. I am sharing you some facts. You can solve on such facts.
This issue is related to the WordPress Feed discovery for the following domain.
http://arablelife.com
https://wordpress.com/read/feeds/91664044
https://wordpress.com/read/search?q=arablelife.com
Other Facts
Resources
P.S. – I suspect that some of your employee / contributor hidden all my feeds (Including active one) from search. When I requested to remove only inactive feeds generated due to URL conflict.
]]>Could you guide me on how to fix this issue?
]]>We have created different custom fields on website as per this screenshot.
we can see indexing of above-mentioned custom field has done correctly on Cloudsearch. see screenshot here
But when I am searching this post on Clousearch it is not returning results for custom fields and showing empty data in facets as well. refer this screenshot
Can anyone support us here to resolve this issue?
]]>Please help me as soon as possible.
]]>But it’s working on some other products. Please remember all products have title with Japanese text.
Thanks
]]>The issue is happening because the code was try to search with
/listings/?purpose=sell
but This function wre_default_display was expecting it to be /listings/?purpose=buy
I was able to debug this and the below code fixed it .
Please get it fixed with an update to function wre_default_display
add_filter( 'wre_default_display', 'custom_wre_default_display' );
function custom_wre_default_display($return){
if( isset( $_GET['purpose'] ) && ! empty( $_GET['purpose'] ) ) {
$return = $_GET['purpose'] == 'sell' ? 'Sell' : 'Rent';
}
return $return;
}
]]>