blogsdna
Forum Replies Created
-
Forum: Installing WordPress
In reply to: WP 2.7 Upgrade Buggy????can you check your web server error log for any php errors.
are you using wp-cache plugin or any plugin which caches your files ??? if yes then deactivate this plugin and make sure to delete all cache files.
Forum: Plugins
In reply to: [Plugin: Admin Menu Management] breaks css in wp2.7good to post about any non compatible plugins list this will save other users from getting trapped into unwanted errors and issues.
Thanks af3Forum: Installing WordPress
In reply to: 2.7 Keeps Requesting Database Upgradeare you using wp-cache plugin or any plugin which caches your files ??? if yes then deactivate this plugin and make sure to delete all cache files.
Forum: Installing WordPress
In reply to: Another problem upgrading to 2.7did properly uploaded all files of wp 2.7 installation ??
Forum: Fixing WordPress
In reply to: Heavy Spamming – 500 trackback/pingbacks every minutewell manually blocking ips and using htaccces is best method i will advice apart from bad behavior ,
Forum: Plugins
In reply to: [Plugin: WP Super Cache] super cache and php speedyhmm i am looking for this thanks for sharing.
Forum: Plugins
In reply to: Adding .html to categories and pagesThis seems to be possible with htaccess but it will require quite lots of work as well as chances are high that you may screw up with infinite redirection.
Forum: Fixing WordPress
In reply to: Deleted Category Childs Still in Site MapWe have one more alternate solution you can disallow that child url (error 404 url) from robots.txt file and may try to contact XML plugin author for future proceeding.
or try to diactivate xml sitemap and activate and then see.
Forum: Fixing WordPress
In reply to: Adding title tags for each page?Use ALL IN ONE SEO plugin to add custom title on every post
Forum: Fixing WordPress
In reply to: missing blog portionsAre you still facing problem ?? i see your blog is working fine and all post are getting displayed properly. if your issue is resolved then please mark this thread as resolved.
Forum: Plugins
In reply to: Customizing WordPress Related Posts in Sidebarwhich related post plugin you are using ?? most of all related posts plugin supports custom css just check in your related post plugin options
Forum: Themes and Templates
In reply to: Bottom bar for widgetsyou need to add following function in your function.php
between starting and closing php tagsif ( function_exists('register_sidebar') ) register_sidebar(array( 'name' => 'bottom', 'before_widget' => '<ul>', 'after_widget' => '</li></ul>', 'before_title' => '<li><h2>', 'after_title' => '</h2></li><li>', ));
change before and after widget/title to match to your theme
now edit your footer.php file to include widget support
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('bottom') ) : ?><?php endif; ?>
Forum: Themes and Templates
In reply to: Where is the Widget code in WordPress ?You need to edit core WordPress file to achieve this.
Go to wp-includes folder of your wordpress directory and search for “widgets.php” file.
Open this file in normal txt editor and locate line number 1084 or search for string ‘images/rss.png‘ .
Exactly below that line you will see following code,
$title = "<a class='rsswidget' href='$url' title='" . attribute_escape(__('Syndicate this content')) ."'><img style='background:orange;color:white;border:none;' width='14' height='14' src='$icon' alt='RSS' /></a> <a class='rsswidget' href='$link' title='$desc'>$title</a>";
Now delete first link from that variable. It should look line this after deletion,
$title = "<a class='rsswidget' href='$link' title='$desc'>$title</a>";
Save this file and we have done it. check your blog and you wont see that RSS feed icon.
Please keep this in mind that every time you upgrade your WordPress blog you need to edit this file also in future this file may get changed or code get modified then this hack will not work.
Forum: Fixing WordPress
In reply to: login problems please help!!!!this is really streng.. do you still see your old post on your blog ?? just make sure your database connection is proper and their is no change from database side (database name,password,connection string).
Forum: Themes and Templates
In reply to: Posts with avatars – they dissapeared!!!!how did you moved you blog? did you created fresh woordpress and then imported all your post ??
Avatar option is by default disabled and you need explicitly enable this option from your admin panel->Discussion Settings-> there is setting for Avatar Display with option for setting Default Avatar see this https://codex.www.ads-software.com/Using_Gravatars