threestyler
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Fullscreen theme Parse ErrorSame error on all themes or just fullscreen? open up /lib/author-info-avatar.php and see what is on line 5. Check the readme files does the theme require any additional plugins to function? etc
Forum: Plugins
In reply to: Fatal error from Related Posts pluginFTP and remove the plugin this will disable it and you should be able to access wp-admin.
Forum: Plugins
In reply to: [Blog Metrics] Fatal Error when using Blog MetricsTry increasing wordpress memory add the following to your wp-config.php:
/** Increase memory size from default 32mb. */
define(‘WP_MEMORY_LIMIT’, ’64M’);Forum: Fixing WordPress
In reply to: SQL Import/RestoreYou shouldn’t attach your database as it includes sensitive data, I would suggest you remove it from your post.
However I was able to install your database on a local server just fine so I would suggest your problem is due to the size of the db, there is probably a tool to split large databases into smaller files or you could manually split the db up just make sure you don’t cut it off mid table. Or you could contact your host who should have the means and be willing to import it for you.
As you have put your db in the wild I would strongly suggest you change passwords and possibly take some extra security means such as locking down the administration to your ip only.
Forum: Themes and Templates
In reply to: Sidebar pushed to the bottom and I did validateProbably a missing div somewhere or a div in the wrong place.
Easiest check would be to disable all plugins and remove any/all widgets if this resolves it re-enable one by one until you find the culprit otherwise:
Make a backup copy of your theme and overwrite with a fresh copy of the free theme, integrating your changes one by one and checking the results each time.
Forum: Fixing WordPress
In reply to: dynamic sidebarYou need to register the custom sidebar in the functions.php file as well.
if ( function_exists('register_sidebar') ) register_sidebar(array( 'name' => 'sidebar_onama', 'before_widget' => '', 'after_widget' => '', 'before_title' => '<h2>', 'after_title' => '</h2>', ));Forum: Fixing WordPress
In reply to: Categories posting at the top not bottomMove it to below <?php the_content(); ?>
Forum: Fixing WordPress
In reply to: pretty vs almost pretty linksCan you clarify what you have done?
ie if you add the following permalink structure: /%category%/%postname%/ what happens? Does WordPress update the .htaccess file at all? Have you tried to manually create the .htaccess file? Be as descriptive as you can on what you have tried otherwise it’s hard to know what to suggest.
Forum: Fixing WordPress
In reply to: dynamic sidebarWhat’s the website? and what is the code you used to call the sidebar?
Forum: Fixing WordPress
In reply to: picture in post showing up as linkFor html add class=”alignleft” or “alignright” inside `<img src=”http://site.com/image.jpg” class=”alignleft” alt=”image description” /> This should cause the text to wrap.
Forum: Plugins
In reply to: Next page link causes error / website slower?Sounds like an htaccess fault.
1) Try rebuilding permalinks first just go to wp-admin/settings/permalinks -> Save Changes. Try again if still happening try the next couple of options.
2) If it still doesn’t work check the directory via ftp for a file called error_log and see what it is reporting.
3) Rename .htaccess to orig_.htaccess update permalinks again.
Forum: Themes and Templates
In reply to: ANYONE USING DFBLOG?The navigation is created dynamically and displays the pages you have created in the admin panel.
Open header.php and look for:
<ul class="sf-menu"> <li class="<?php echo $indexpage_class; ?>"><a href="<?php echo get_settings('home'); ?>"><?php echo $dfblog_home_label ?></a></li> <?php wp_list_pages('sort_column=menu_order&title_li='); /* old -> wp_list_pages('title_li=&depth=1'); */ ?> <?php if ($dfblog_feed_visibility == "on") { ?> <li class="page_item"><a href="<?php bloginfo('rss2_url'); ?>" title="<?php bloginfo('name'); ?> RSS Feed"><?php _e('Subscribe to Feed'); ?></a></li> <?php } ?> <li class="page_last"> </li> </ul>The code inbetween the first
<li> </li>tags is what outputs the pages as menus. The Second<li> </li>tags output the Subscribe to RSS MenuYou could hardcode a menu before, in between or after any of the above
<li> </li>tags or you could delete them entirely and manually add the menu’s yourself. Just make sure you remove the opening and closing<li><!-- and everything in between --></li>ie if you wanted to manually add links to the homepage and blog:
<li><a href="http://yourwebsitename.com">Home</a></li>
<li><a href="http://yourwebsitename.com/blog">Blog</a></li>Forum: Plugins
In reply to: Change "Edit Posts" screen to list posts within categories?Have you tried the Category Overload Plugin?
http://wordpress.org/extend/plugins/category-admin/Forum: Fixing WordPress
In reply to: Adding functions for new php fileYou can call template files using the following:
<?php include(TEMPLATEPATH . '/99archive.php'); ?>or custom sidebar:
<?php include ('sidebar_99archive.php'); ?>Forum: Plugins
In reply to: authors widget in sidebar does not list all authorsIt’s probably only showing authors that have made posts? And not showing authors that have not made posts.