Hi,
I have one simple text box on the front end to search the news weblog. to search the news (in all fields like title,subtitle, desc) iam using the below code.
<?php
$search_txt = $_POST["txt_title"];
$vartest = $search_txt;
?>
{exp:weblog:entries weblog="add_edit_news" search:news-subtitle="<?php echo $vartest; ?>" search:news-desc="<?php echo $vartest; ?>"}
{title}<br><br>
{/exp:weblog:entries}
but the above code is not working if use multiple custom fields. can anyone give me the syntax to search in all the fields.
thanks