Title: grx3's Replies | WordPress.org

---

# grx3

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Sticky Post order](https://wordpress.org/support/topic/sticky-post-order/)
 *  [grx3](https://wordpress.org/support/users/grx3/)
 * (@grx3)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/sticky-post-order/#post-1530991)
 * Hope your still around because someone wrote a plugin to fix this. I experienced
   the same issues on [cat fancy](http://catfancy.net)
 * Until I found this plugin (which I didn’t write)
    AStickyPostOrderER written 
   by AnderSC [Visit Plugin Site](http://pixelplexus.co.za/blog/2007/11/20/plugin-to-change-wordpress-post-order/)
 * Hope you have the best of luck!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Force update to tag count?](https://wordpress.org/support/topic/force-update-to-tag-count/)
 *  [grx3](https://wordpress.org/support/users/grx3/)
 * (@grx3)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/force-update-to-tag-count/#post-1424254)
 * Here is the code I used after I built a custom auto-tagger. I noticed that wpdb
   get’s iffy using about 20,000 records and had to user mysql instead. I will post
   the full code over on hawkenterprises.org in a few but for now here is the code.
 *     ```
       <?php
       define('WP_USE_THEMES', false);
   
       /** Loads the WordPress Environment and Template */
       require('./wp-blog-header.php');
       $terms = array(30,23,28,25,33,31,26,27,29,24,32);
       wp_update_term_count($terms);
       ?>
       ```
   
 * I’m sure I don’t need to load everything since it’s just in taxonomy.php but 
   this is less lines. The terms array is IDs of the terms you want to update. Note
   if ran properly this page will output nothing.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Removing Godaddy Banner](https://wordpress.org/support/topic/removing-godaddy-banner/)
 *  [grx3](https://wordpress.org/support/users/grx3/)
 * (@grx3)
 * [15 years, 9 months ago](https://wordpress.org/support/topic/removing-godaddy-banner/#post-1523470)
 * Good to see GoDaddy monitors these forums. I know the reason the ads had to be
   fixed because the bug with the WordPress Admin Dashboard.
 * [http://wordpress.org/search/godaddy+admin+free?forums=1](http://wordpress.org/search/godaddy+admin+free?forums=1)
 * 191 hits
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Removing Godaddy Banner](https://wordpress.org/support/topic/removing-godaddy-banner/)
 *  [grx3](https://wordpress.org/support/users/grx3/)
 * (@grx3)
 * [15 years, 10 months ago](https://wordpress.org/support/topic/removing-godaddy-banner/#post-1523456)
 * Take the code below and stick it in a plugin, this removes it on all the sites
   along with the script-loader.php hack on the forum you should be good to go.
 * function godaddy_style(){
    ?> <style type=”text/css”> #conash3D0 { display:none;}
   </style> <?php } add_action(‘admin_footer’,’godaddy_style’); add_action(‘wp_footer’,’
   godaddy_style’); add_action(‘login_head’,godaddy_style’);

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