grx3
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Sticky Post orderHope your still around because someone wrote a plugin to fix this. I experienced the same issues on cat fancy
Until I found this plugin (which I didn’t write)
AStickyPostOrderER written by AnderSC Visit Plugin SiteHope you have the best of luck!
Forum: Fixing WordPress
In reply to: Force update to tag count?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
In reply to: Removing Godaddy BannerGood 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
191 hits
Forum: Fixing WordPress
In reply to: Removing Godaddy BannerTake 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’);