Title: borimrr's Replies | WordPress.org

---

# borimrr

  [  ](https://wordpress.org/support/users/borimrr/)

 *   [Profile](https://wordpress.org/support/users/borimrr/)
 *   [Topics Started](https://wordpress.org/support/users/borimrr/topics/)
 *   [Replies Created](https://wordpress.org/support/users/borimrr/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/borimrr/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/borimrr/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/borimrr/engagements/)
 *   [Favorites](https://wordpress.org/support/users/borimrr/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 20 total)

1 [2](https://wordpress.org/support/users/borimrr/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/borimrr/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [How do I sort posts by a custom field dynamically? Plugin?](https://wordpress.org/support/topic/how-do-i-sort-posts-by-a-custom-field-dynamically-plugin/)
 *  Thread Starter [borimrr](https://wordpress.org/support/users/borimrr/)
 * (@borimrr)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/how-do-i-sort-posts-by-a-custom-field-dynamically-plugin/#post-1968243)
 * So I found a solution after doing some thinking, googling and putting my noob
   PHP coding skills to work. I used cookies to determine if the posts are already
   in DESC or ASC order according to their price. Then, the “change price order”
   link refreshes the page and depending on the cookie will either display the posts
   in DESC or ASC order accroding to the price meta value.
 * Here’s the PHP that goes right after the HTML head ends:
 *     ```
       </head>
   
       <?php
   
       setcookie("priceorder", "ascending");
   
       if($_GET["action"]=="changepriceorder" && $_COOKIE["priceorder"] == 'ascending')
       {
       query_posts($query_string. '&orderby=meta_value&meta_key=price&order=DESC' );
   
       setcookie("priceorder", "descending");
   
       } else if ($_GET["action"]=="changepriceorder" && $_COOKIE["priceorder"] == 'descending') {
   
       query_posts($query_string. '&orderby=meta_value&meta_key=price&order=ASC' );
   
       setcookie("priceorder", "descending");
       }
   
       ?>
       ```
   
 * And the simple link that activates the changes:
    `<a href="?action=changepriceorder"
   >Price<img src="up_and_down_arrows.gif" /></a>`
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [I need a good multiple search plugin (or how to do it)](https://wordpress.org/support/topic/i-need-a-good-multiple-search-plugin-or-how-to-do-it/)
 *  Thread Starter [borimrr](https://wordpress.org/support/users/borimrr/)
 * (@borimrr)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/i-need-a-good-multiple-search-plugin-or-how-to-do-it/#post-1968239)
 * Thanks, the plugin that I linked above does exactly what I needed and it creates
   a search form with drop downs listing all the categories and everything. Check
   it out when you get a chance.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [I need a good multiple search plugin (or how to do it)](https://wordpress.org/support/topic/i-need-a-good-multiple-search-plugin-or-how-to-do-it/)
 *  Thread Starter [borimrr](https://wordpress.org/support/users/borimrr/)
 * (@borimrr)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/i-need-a-good-multiple-search-plugin-or-how-to-do-it/#post-1968148)
 * Never mind, I found one that does exactly what I need. Donate if you can!
 * [http://wordpress.org/extend/plugins/multiple-category-selection-widget/](http://wordpress.org/extend/plugins/multiple-category-selection-widget/)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Adding A Repeating Background](https://wordpress.org/support/topic/adding-a-repeating-background-1/)
 *  [borimrr](https://wordpress.org/support/users/borimrr/)
 * (@borimrr)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/adding-a-repeating-background-1/#post-1766131)
 * It seems like you currently have a background image that contains all that blank
   space on the sides. You will need to get rid of that background image or edit
   it. If you get rid of it you will lose the green and baby blue sidebars backgrounds
   as well.
 * You might have to edit the background image and put the repeating content in 
   it.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Remove Duplicate Search Box](https://wordpress.org/support/topic/remove-duplicate-search-box/)
 *  [borimrr](https://wordpress.org/support/users/borimrr/)
 * (@borimrr)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/remove-duplicate-search-box/#post-1766646)
 * Yes it is common. If you want to get rid of the search bar in the content area
   you will have to edit it out from search.php which is what I assume the site 
   is using to output the search “error”.
 * If you want to get rid of the search box in the sidebar I assume you know how
   to do that.
 * You could also make your own sidebar for the search.php template with no search
   bar.
 *   Forum: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
   
   In reply to: [WordPress as a video course site (paying customers)](https://wordpress.org/support/topic/wordpress-as-a-video-course-site-paying-customers/)
 *  Thread Starter [borimrr](https://wordpress.org/support/users/borimrr/)
 * (@borimrr)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/wordpress-as-a-video-course-site-paying-customers/#post-1759643)
 * Thanks, I found this plugin that apparently will do the job, even the free version:
 * [http://www.s2member.com/](http://www.s2member.com/)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [How To Insert Hover Menu Background Image](https://wordpress.org/support/topic/how-to-insert-menu-background-image/)
 *  [borimrr](https://wordpress.org/support/users/borimrr/)
 * (@borimrr)
 * [15 years, 9 months ago](https://wordpress.org/support/topic/how-to-insert-menu-background-image/#post-1621040)
 * That code would be to add it to the anchor and not the li. If the anchor isn’t
   big enough then you won’t see it. Also you need to add :hover to the li for the
   background to activate on mouseover.
 *     ```
       #menu li:hover {
           background: ...;
       }
   
       or
   
       #menu li:hover > a {
           background: ...;
       }
       ```
   
 * I hope this helps.
 *   Forum: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
   
   In reply to: [Selling Web services with WordPress, legal?](https://wordpress.org/support/topic/selling-web-services-with-wordpress-legal/)
 *  Thread Starter [borimrr](https://wordpress.org/support/users/borimrr/)
 * (@borimrr)
 * [15 years, 9 months ago](https://wordpress.org/support/topic/selling-web-services-with-wordpress-legal/#post-1596816)
 * Thank you very much
 *   Forum: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
   
   In reply to: [passing off WP as there own…](https://wordpress.org/support/topic/passing-off-wp-as-there-own/)
 *  [borimrr](https://wordpress.org/support/users/borimrr/)
 * (@borimrr)
 * [15 years, 9 months ago](https://wordpress.org/support/topic/passing-off-wp-as-there-own/#post-1596587)
 * Aren’t there plugins to modify the login screen with your own logo and stuff?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [jQuery not working (already using jQuery instead of $)](https://wordpress.org/support/topic/jquery-not-working-already-using-jquery-instead-of/)
 *  Thread Starter [borimrr](https://wordpress.org/support/users/borimrr/)
 * (@borimrr)
 * [15 years, 10 months ago](https://wordpress.org/support/topic/jquery-not-working-already-using-jquery-instead-of/#post-1551826)
 * I found the problem. If i put the second script of code for the h1 hide inside
   the firs script of code’s function call it works. I guess I can’t have ,ore than
   one function call outside of the same script?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Category Permalinks](https://wordpress.org/support/topic/category-permalinks-3-2/)
 *  [borimrr](https://wordpress.org/support/users/borimrr/)
 * (@borimrr)
 * [15 years, 10 months ago](https://wordpress.org/support/topic/category-permalinks-3-2/#post-1541006)
 * Did you check Settings > Permalink?
 * Choose the format of the permalinks and also you can determine what you want 
   category permalinks to show before the category directory by typing it in. EX:
   [http://www.dddd.com/category/news](http://www.dddd.com/category/news) can be
   [http://www.ddd.com/type/news](http://www.ddd.com/type/news) if you type “type”
   in the box.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [how to remove column](https://wordpress.org/support/topic/how-to-remove-column/)
 *  [borimrr](https://wordpress.org/support/users/borimrr/)
 * (@borimrr)
 * [15 years, 10 months ago](https://wordpress.org/support/topic/how-to-remove-column/#post-1550406)
 * It looks like it’s a widget area. Go into your widgets on your admin side and
   see if Archives and Links/Blogroll are in any of the widgets. If it’s in the 
   footer.php then you’ll have to go in there and edit it out.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [disable link for drop down](https://wordpress.org/support/topic/disable-link-for-drop-down/)
 *  [borimrr](https://wordpress.org/support/users/borimrr/)
 * (@borimrr)
 * [15 years, 10 months ago](https://wordpress.org/support/topic/disable-link-for-drop-down/#post-1204847)
 * Thanks for this, I used it yesterday and it worked flawlessly. Make sure it’s
   after the wp_head() call.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How can I add a live webcam to my wordpress site?](https://wordpress.org/support/topic/how-can-i-add-a-live-webcam-to-my-wordpress-site/)
 *  Thread Starter [borimrr](https://wordpress.org/support/users/borimrr/)
 * (@borimrr)
 * [15 years, 11 months ago](https://wordpress.org/support/topic/how-can-i-add-a-live-webcam-to-my-wordpress-site/#post-1536789)
 * Thanks, I guess I’ll be using this one.
 * [VideoWhisper](http://wordpress.org/extend/plugins/videowhisper-live-streaming-integration/)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [post header in single page](https://wordpress.org/support/topic/post-header-in-single-page/)
 *  [borimrr](https://wordpress.org/support/users/borimrr/)
 * (@borimrr)
 * [15 years, 11 months ago](https://wordpress.org/support/topic/post-header-in-single-page/#post-1536788)
 * header on a content page or header on a post page as in the post title and stuff?

Viewing 15 replies - 1 through 15 (of 20 total)

1 [2](https://wordpress.org/support/users/borimrr/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/borimrr/replies/page/2/?output_format=md)