Discontinued Account
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Cant remove sidebar?!?!every time i have ever posted here i have rarely got a reply,m and when i do its from someone with less of a clue than me.. so useless.. anyways i figured it out. i wont post the fix though because thats how i am
Forum: Fixing WordPress
In reply to: Poorly written php codeI need to go, but you can email me or add me on MSN
MSN: [email protected]
email: [email protected]Forum: Fixing WordPress
In reply to: Poorly written php codeTry creating a php.ini and increasing disk space – if you don’t have enough for 37MB I would get off there hosting ASAP… that’s just sad… but they could be right – I could take a look if you wanted.
Forum: Fixing WordPress
In reply to: Registration Page Redirect?No Problem ?? Glad I could help, if you ever want to revert just remove that line, comment it out or replace it with default and that should work fine ??
Forum: Fixing WordPress
In reply to: Registration Page Redirect?Add it underneath:
<title><?php bloginfo('name'); ?> ? <?php echo $title; ?></title>
Forum: Fixing WordPress
In reply to: Registration Page Redirect?Try this, note: It may not work because my file is modified. BACKUP YOUR FILE.
Open wp-login.php in root and find:
<title><?php bloginfo('name'); ?> ? <?php echo $title; ?></title>
Add underneath:
<meta HTTP-EQUIV="REFRESH" content="0; url=<strong>PATH-TO-YOUR-OTHER-LOGIN-FORM</strong>">
Note, I know you wanted to redirect to your main page but this MAY work temporarily redirecting users to the login form you want to use
Forum: Fixing WordPress
In reply to: Registration Page Redirect?Wait, just to clarify – you did say you were using a plugin for your login’s correct?
Forum: Fixing WordPress
In reply to: Previewing Posts and Pages show 404 error pageDoes it work on TwentyTen?
Forum: Fixing WordPress
In reply to: Registration Page Redirect?Well, just throwing this out there, don’t know if it works: in your wordpress root directory locate wp-register.php (backup the file) and replace this:
wp_redirect('wp-login.php?action=register');
With this:
wp_redirect('../');
Try that and tell me what happens.
* Note: You may need to change wp_redirect(‘../’); judging on where your wordpress install is located, wp_redirect(‘../’); should work if wordpress is the sole root.Forum: Fixing WordPress
In reply to: Next/Previous Navigation links stopped showing upNo problem, like I said, its hard to tell without actually seeing it.
Forum: Fixing WordPress
In reply to: Plugins – Keep getting error messagesWhy did you rename the plugin folder
from /si-contact-form/ to /si-contact-form-3/?You cannot rename plugin folders or they WILL NOT work.
Mike
What he said ^ you can’t rename the folder unless you do some nasty changes in the code, which is purely unnecessary.
Forum: Fixing WordPress
In reply to: How to list down tagsIn your theme, in functions.php try some stuff in their, or css MAY work.
Create a class and add font-size:xx;Forum: Fixing WordPress
In reply to: Home page gets a "Page isn't redirecting properly" error.Try looking over your code, maybe some code is conflicting? (Start in the theme)
Forum: Fixing WordPress
In reply to: Next/Previous Navigation links stopped showing upNo problem, glad to help. What I think may have happened was possibly was, you were using old cache, the server was trouble bringing it up or possibly a wordpress glitch, honestly I don’t know for sure without seeing it.. but the point is.. it worked didn’t it?
Forum: Fixing WordPress
In reply to: Next/Previous Navigation links stopped showing upGo to your theme directory (wordpress/wp-content/themes/your-theme)
find index.php and where you want the next/previous put this:<?php posts_nav_link('∞','«« Go Forward In Time','Go Back in Time »»'); ?>
and refresh the your index, report back what happens