Hi, first of all compliments for your great pluigin. Powerful and hig customizable.
I'm using SupportPress theme (www.woothemes.com), a theme that transforms my site into a support system for my users.
It works great with RS, and now I can give different help and support to different kind of users.
The only problem is with an ajax search that sends the search term and then does a get_posts query to get the matching knowledgebase articles. With "normal" search, I see that RS take care of the rules I've defined and so the right users see the right results. This not happens with this ajax search.
This is the code for the ajax search:
$args = array( 'post_type' => 'knowledgebase', 'post_status' => 'publish', 'posts_per_page' => 10, 's' => $search );
$results = get_posts( $args );
Is there any way to integrate your plugin in this particoular search?
Greetings