Title: Symbol &quot;&gt;&quot;
Last modified: August 21, 2016

---

# Symbol ">"

 *  Resolved [idjuly4](https://wordpress.org/support/users/idjuly4/)
 * (@idjuly4)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/symbol-1/)
 * Hi, plugin displays “>” symbol on top of search, categories, tags and to the 
   left of Search button . How do I get rid of them? Thx
 * [http://wordpress.org/plugins/search-filter/](http://wordpress.org/plugins/search-filter/)

Viewing 8 replies - 1 through 8 (of 8 total)

 *  Plugin Author [Ross Morsali](https://wordpress.org/support/users/designsandcode/)
 * (@designsandcode)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/symbol-1/#post-4561743)
 * Hey idjuly… can you copy and paste your shortcode in here so I can have a guess
   at whats going on, or even better, if you have a link online I could take a quick
   look 🙂
 * Thanks
 *  Thread Starter [idjuly4](https://wordpress.org/support/users/idjuly4/)
 * (@idjuly4)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/symbol-1/#post-4561763)
 * hey design and code, thank you for a quick response
 * just copying from your documents –
    [searchandfilter fields=”search,category,
   post_tag”] it happens when i paste this (or variations) into a text widget of
   my genessis wp theme
 *  Plugin Author [Ross Morsali](https://wordpress.org/support/users/designsandcode/)
 * (@designsandcode)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/symbol-1/#post-4561764)
 * Hmmm strange, seems like there is an extra character being output… which I’ve
   not seen before so seems strange it is only on your installation..
 * Can you view source of your page and paste in code for the widget – everthing
   between and including the “<form>” tags?
 * All the code in here
 *     ```
       <form action="" method="post" class="searchandfilter">
       ...
       </form>
       ```
   
 * And if you can link a screen shot that would be great 🙂
 *  Thread Starter [idjuly4](https://wordpress.org/support/users/idjuly4/)
 * (@idjuly4)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/symbol-1/#post-4561769)
 * hey desigh and code – hope thats what you are looking for , thaks a bunch
 * <form action=”” method=”post”>
    <div class=”widget-content”> <p><label for=”widget-
   text-2-title”>Title:</label> <input class=”widefat” id=”widget-text-2-title” 
   name=”widget-text[2][title]” type=”text” value=”SEARCH AND FILTER” /></p>
 *  <textarea class=”widefat” rows=”16″ cols=”20″ id=”widget-text-2-text” name=”
   widget-text[2][text]“>[searchandfilter fields="search,category,post_tag"]</textarea
   >
 *  <p><input id=”widget-text-2-filter” name=”widget-text[2][filter]” type=”checkbox”/
   > <label for=”widget-text-2-filter”>Automatically add paragraphs</label></p>
   
   </div> <input type=”hidden” name=”widget-id” class=”widget-id” value=”text-2″/
   > <input type=”hidden” name=”id_base” class=”id_base” value=”text” /> <input 
   type=”hidden” name=”widget-width” class=”widget-width” value=”400″ /> <input 
   type=”hidden” name=”widget-height” class=”widget-height” value=”350″ /> <input
   type=”hidden” name=”widget_number” class=”widget_number” value=”2″ /> <input 
   type=”hidden” name=”multi_number” class=”multi_number” value=”” /> <input type
   =”hidden” name=”add_new” class=”add_new” value=”” />
 *  <div class=”widget-control-actions”>
    <div class=”alignleft”> [Delete](https://wordpress.org/support/topic/symbol-1/?output_format=md#remove)
   | [Close](https://wordpress.org/support/topic/symbol-1/?output_format=md#close)
   </div> <div class=”alignright”> <input type=”submit” name=”savewidget” id=”widget-
   text-2-savewidget” class=”button button-primary widget-control-save right” value
   =”Save” /> <span class=”spinner”></span> </div> <br class=”clear” /> </div> </
   form>
 *  Plugin Author [Ross Morsali](https://wordpress.org/support/users/designsandcode/)
 * (@designsandcode)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/symbol-1/#post-4561784)
 * Hey idjuly4, I’m not sure whats going on here but this looks like the code from
   the wordpress admin section?
 * I need the code in the front end – ie, view source of the page a user sees (ie
   a generated instance of Search & Filter – not the shortcode) and search for this:
 *     ```
       <form action="" method="post" class="searchandfilter">
       ```
   
 *  Thread Starter [idjuly4](https://wordpress.org/support/users/idjuly4/)
 * (@idjuly4)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/symbol-1/#post-4561816)
 * ok, i think i got it
 *     ```
       <form action="" method="post" class="searchandfilter">
       					<div>
   
       <ul>
       <li><input type="text" name="ofsearch" placeholder="Search …" value=""></li>
       <li><select name='ofcategory' id='ofcategory' class='postform' >
       	<option value='0' selected='selected'>All Categories</option>
       	<option class="level-0" value="62">age 5-7</option>
       	<option class="level-0" value="64">age 7-9</option>
       	<option class="level-0" value="52">Art</option>
       	<option class="level-0" value="57">Creative Skills</option>
       	<option class="level-0" value="53">Critical Thinking</option>
       	<option class="level-0" value="50">English</option>
       	<option class="level-0" value="55">Reading</option>
       	<option class="level-0" value="59">Toddler</option>
       	<option class="level-0" value="56">Writing</option>
       </select>
       <input type="hidden" name="ofcategory_operator" value="and" /></li>
       <li><select name='ofpost_tag' id='ofpost_tag' class='postform' >
       	<option value='0' selected='selected'>All Tags</option>
       	<option class="level-0" value="63">letters</option>
       	<option class="level-0" value="58">pre-k</option>
       </select>
       <input type="hidden" name="ofpost_tag_operator" value="and" /></li>
       <li><input type="hidden" name="ofsubmitted" value="1">
       							<input type="submit" value="Submit">
       						</li>
       </ul>
       </div>
       				</form></div>
       ```
   
 * _[Moderator Note: Please post code & markup between backticks or use the code
   button. Your posted code may now have been permanently damaged by the forum’s
   parser.]_
 *  Plugin Author [Ross Morsali](https://wordpress.org/support/users/designsandcode/)
 * (@designsandcode)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/symbol-1/#post-4561838)
 * Hi idjuly4
 * The code looks fine.. I thought the extra ‘>’ was maybe a tag that wasn’t properly
   open or closed but it doesn’t look that way.
 * Have you tried the plugin on a different theme? It may be a styling issue.
 * What happens when you inspect the extra ‘>’ using firebug?
 * Thanks
 *  Thread Starter [idjuly4](https://wordpress.org/support/users/idjuly4/)
 * (@idjuly4)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/symbol-1/#post-4561856)
 * will avoid this text widget, thanks for the help! great plugin!

Viewing 8 replies - 1 through 8 (of 8 total)

The topic ‘Symbol ">"’ is closed to new replies.

 * ![](https://ps.w.org/search-filter/assets/icon-256x256.png?rev=3096093)
 * [Search & Filter](https://wordpress.org/plugins/search-filter/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/search-filter/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/search-filter/)
 * [Active Topics](https://wordpress.org/support/plugin/search-filter/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/search-filter/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/search-filter/reviews/)

 * 8 replies
 * 2 participants
 * Last reply from: [idjuly4](https://wordpress.org/support/users/idjuly4/)
 * Last activity: [12 years, 5 months ago](https://wordpress.org/support/topic/symbol-1/#post-4561856)
 * Status: resolved