Reuben
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Register sidebar widget error message?update your Akismet plugin. I guess the latest version is 2.3.0.
Forum: Fixing WordPress
In reply to: Auto Post Thumbnails messed up everythingOk I guess I found the solution….An empty user meta key is causing the problem.
backup your database and
Run this Sql query…
DELETE FROM wp_usermeta WHERE meta_key = '';
This should fix the problem.
Forum: Fixing WordPress
In reply to: Register sidebar widget error message?Its not the theme which is throwing the error. Its probably one of the plugins. Disable each plugin by plugin and check if the error still exists.
Forum: Fixing WordPress
In reply to: Front page posts have TOO MUCH SPACE between them.open style.css and add this entry at the end of file
.entry{ padding: 0px 0px 20px; }
Increase or decrease the last number(20px) to suit your requirements.
Forum: Fixing WordPress
In reply to: WordPress with an existing websiteIf I understood it correctly, you want your wordpress blog to have the same navigation menu as your current site has.
Create a theme for your WordPress site which looks like your current website and for navigation use WordPress 3.0 custom nav menus.
Read the documentation
https://codex.www.ads-software.com/Theme_Development
https://codex.www.ads-software.com/Navigation_Menus
and also read the source of twenty ten theme.Forum: Fixing WordPress
In reply to: Php memory limit not updatedclear the cache & deactivate all cache plugins and see if it helps.
if it doesn’t open wp-includes >> default-constants.php and check whether this code exists(on line 39)
@ini_set('memory_limit', WP_MEMORY_LIMIT);
Forum: Themes and Templates
In reply to: Translated a theme, created .mo file, and what now?Here is an example of how to use it.
Place it in your functions.php file.
<?php load_theme_textdomain('unique-identifier',get_template_directory() . '/languages'); ?>
save your .mo files in languages folder in your themes folder.
Note:
.mo file should be named based on locale. For example pt_BR.mo will be for Brazilian Portuguese. To know the name of locale you are using just useecho get_locale();
.Forum: Fixing WordPress
In reply to: Fatal Erroropen wp-includes >> load.php file and see if this code exists (lines 571-586).
/** * Whether Multisite support is enabled * * @since 3.0.0 * * @return bool True if multisite is enabled, false otherwise. */ function is_multisite() { if ( defined( 'MULTISITE' ) ) return MULTISITE; if ( defined( 'VHOST' ) || defined( 'SUNRISE' ) ) return true; return false; }
Forum: Fixing WordPress
In reply to: Not able to get 2nd blog to format same as first blogDid you delete the index.php file in your current wordpress installation?
Forum: Fixing WordPress
In reply to: Customize the excerpt meta boxI don’t think you can achieve it through filters/actions. Have you tried removing the excerpt box and adding your own?
https://codex.www.ads-software.com/Function_Reference/remove_meta_box (look at 2nd example)
https://codex.www.ads-software.com/Function_Reference/add_meta_boxForum: Fixing WordPress
In reply to: Trying to build new site with wordpress?Just give it a try its easy. If you are stuck, then post again here. I guess your issue is resolved.
Forum: Fixing WordPress
In reply to: Trying to build new site with wordpress?Forum: Fixing WordPress
In reply to: Php memory limit not updatedWhere are you adding this code? at the end of the file?
Forum: Fixing WordPress
In reply to: how to add a horizontal line after each post? & remove "posted in"Open loop.php and go to line 145 and replace “Posted in” to whatever you want.
Instead of using hr tag, open style.css add this entry at the end
.entry-utility { border-bottom: 1px solid #000000; }
It gives a 1 pixel width black border at bottom.
Forum: Fixing WordPress
In reply to: Auto Post Thumbnails messed up everythingare you using any cache plugins?