jkovis
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Max upload file size"this file is over the maximum allowed size"– yep, php.ini. As @jonimueller said, it’s probably controlled by your host
Forum: Fixing WordPress
In reply to: Sidebar, um, not on the sideFor some reason your single post pages are structured like:
<div id=content" class="col-ful"> <div id="main"> <!-- main content goes here--> <div id="sidebar"> <!-- sidebar content goes here--> </div> </div><!-- end #main --> </div>instead of:
<div id=content" class="col-ful"> <div id="main"> <!-- main content goes here--> </div><!-- end #main --> <div id="sidebar"> <!-- sidebar content goes here--> </div> </div>Open single.php and see if a
</div>was deleted and/or use Firebug to try and see why the main<div>is not being closed.Forum: Fixing WordPress
In reply to: Margin/Padding Issue around ImageWordPress adds the following classes to images it inserts:
.centered .alignright .alignleft .alignnoneCan you post a link to your site?
Forum: Fixing WordPress
In reply to: Max upload file sizeI’m pretty sure the max upload size on a non-network WordPress install comes from php.ini, not WordPress.
Are you getting an error when you try to upload a large file? If yes, what is the error?
Forum: Fixing WordPress
In reply to: 3.1.2 fresh install – missing table buttons in visualThe table row in the editor is not part of a standard WordPress install…check the 3.0.4 install to see which plugin is adding it (might be AdvancedTinyMCE)
Forum: Fixing WordPress
In reply to: Cannot Add Post After Upgrade to 3.1.2If I click Edit it just shows the normal screen as if adding a new post, but I cannot actually type anything.– So the text is there, but you can’t see the blinking cursor and/or add text to the post?
Are you in Visual or HTML view?
Forum: Fixing WordPress
In reply to: Comments turned offHave you recently activated any plugins?
Can you verify that on wp-admin/options-discussion.php
–Allow people to post comments on new articlesis checked
–Automatically close comments on articles older than ## daysis either not checkedForum: Fixing WordPress
In reply to: RSS Categories Feeds…just not happening –You could also use a different permalink structure (wp-admin/options-permalink.php) and just add /feed to any page.
Forum: Fixing WordPress
In reply to: Login/Logout Redirect>But wasn't the redirection placed in wp-login.php?— yes, but you shouldn’t edit core WordPress files, especially since there is a hook that you can use instead.
Your code should look something like:
add_filter('login_redirect', 'my_login_redirect_function'); function my_login_redirect_function($redirec_to) { // add code here to determine where to redirect the the user after login return $redirect_to; }Forum: Fixing WordPress
In reply to: RSS Categories Feeds…just not happening –hmm…the feed at http://amandlanet.net/amandlablog/?cat=1&feed=rss2 is loading fine for me.
Forum: Fixing WordPress
In reply to: Login/Logout RedirectYou will need to hook into the login_redirect filter.
Forum: Fixing WordPress
In reply to: Displaying posts 1-3 and posts 4-6 of a category in two widgetsIt looks like you will need to create a custom widget to include an
offsetoption (first widget would offset would equal 0, second would equal 3).Forum: Fixing WordPress
In reply to: how to make a client login systemIs there a question in there? I’d look into Gravity Forms or any of the dozen or so similar plugins.
Forum: Fixing WordPress
In reply to: Comments redirectFind style.css in your theme and change:
line 1078 from:
.comment-body{ float: left; padding: 8px; }to:
.comment-body{ /*float: left;/**/ padding: 8px 8px 25px 8px; }There are some other CSS styles for .comment-body, but leave them as they are.
Forum: Fixing WordPress
In reply to: wp-admin javascript is broken from load-scripts.phphmm…that is strange.
Have you tried downloading a fresh copy of WordPress and overwriting wp-admin and wp-includes?