lemonhead
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How do I display partial comments on the front pagethis did not seem to work…but maybe I put it in the wrong place…here is my loop.php
[code moderated as per forum rules - please use the pastebin]
Forum: Themes and Templates
In reply to: inove 1.4.5 does not display properly in chromeNote I should clarify it does not display properly in Google Chrome. Firefox and IE is fine.
Forum: Fixing WordPress
In reply to: Header Tag – Add CSS linkI’m somewhat new to amending code, but why can’t you create a php file and input the addcss function ? Why do you need to do this as a plugin ?
Forum: Fixing WordPress
In reply to: Delay in seeing my changes to index.php fileI use Google Chrome and I did Clear Browsing Data/Empty Cache and then re-load page…old code was still there..
I use Dreamhost as my Web Host provider…
Forum: Plugins
In reply to: [Plugin: Register Plus] Feature SuggestionsDanoNH, I have 2.7. When u say it does not work, is the behavior u are observing where the register link is clicked, but the wp form is displayed ?
Forum: Plugins
In reply to: [Plugin: Register Plus] Feature SuggestionsI have activated the register plus plug-in and updated the Settings, however when I click on the register link on my sidebar the normal wordpress register link appears…I assume I need to change my sidebar code to call the register plus code..what do I need to do so the register plus form appears not the wp register login..
Forum: Fixing WordPress
In reply to: Can no longer change themesWith no luck and no response from the forum. I reinstalled wp. I then tried a new theme. Same thing it did not install. Then I noticed in the very upper right hand corner in a very light shade “Activate Theme”. It was a tough lesson to learn.
Forum: Fixing WordPress
In reply to: Why aren’t changes to php files reflected immediately on my site?Thanks for the advice. I also have the same problem (I use Yahoo also.). I never experienced this problem until I started using WordPress, so I assumre this is a WP issue. I will try the above solution.
Forum: Fixing WordPress
In reply to: Site Admin button is not displayedI followed the tips found in http://codex.wordpress.org/Login_Trouble#Site_URL_Redirecting.
My mistake was following the instuctions found in “Giving WordPress its own directory” There seems to be some type of conflict in the re-direct of forms when using this strategy.
Forum: Fixing WordPress
In reply to: WordPress address (URI) – Missing slashI followed the tips in http://codex.wordpress.org/Login_Trouble#Site_URL_Redirecting
Forum: Fixing WordPress
In reply to: WordPress address (URI) – Missing slashNo, when you hit submit on the login it does not seem to re-direct correctly. Thus my users are not seeing “write post”, “manage post”, etc
Items that should become avaialable after signing in, but do not (see post.php, edit.php, etc.)
?php global $user_ID; ?>
<div id=”sidebar”>
<?php if ($user_ID) { ?>
<h2><?php _e(‘User Options’); ?></h2>- Write Post
- Manage Posts
- Your Profile
- Webmail
- <?php wp_loginout(); ?>
<?php wp_register(); ?>
<?php } ?>
Login Form
<?php if (!$user_ID) { ?>
<h2><?php _e(‘Login’); ?></h2>- <form name=”loginform” id=”loginform” action=”/blog/wp-login.php” method=”post”>
<label>Username: <input type=”text” name=”log” id=”log” value=”” size=”10″ tabindex=”7″ />
</label>
<label>Password: <input type=”password” name=”pwd” id=”pwd” value=”” size=”12″ tabindex=”8″ />
</label>
<label><input name=”rememberme” type=”checkbox” id=”rememberme” value=”forever” tabindex=”9″ />
Remember me</label>
<input type=”submit” name=”submit” id=”submit” value=”Submit” tabindex=”10″ />
<input type=”hidden” name=”redirect_to” value=”/” /></form>
<?php } ?>
Forum: Fixing WordPress
In reply to: WordPress address (URI) – Missing slashWhen I go to options and I add the ending slash like below http://clanobrien.us/blog/ and then I click on update it changes it back to http://clanobrien.us/blog
Any ideas ?
Forum: Fixing WordPress
In reply to: Site Admin button is not displayedOkay it now works. I changed “/” to “/blog” in the submit form and now site admin, write post, etc. appears. 2 questions though :
1. Why does this work ? Below is the code.
2. When someone types in http://www.clanobrien.us it will take them to http://www.clanobrien.us. Should it take them to http://www.clanobrien.us/blog ?<input type=”hidden” name=”redirect_to” value=”/” /></form>
Forum: Fixing WordPress
In reply to: Site Admin button is not displayedI can live without the site admin not displaying, but what about the code “Write Posts” that does not appear when my users sign-in. Does your solution above work for this ?
Thanks in advance for your assistance ?
Forum: Fixing WordPress
In reply to: Site Admin button is not displayedIs there any thing I should review to determine why the site admin button does not appear after the initial sign-in ? If I later click on another link within the sidebar the site admin button appears. Thus I think that for some reason after I click on the submit button it is not running the below code:
<!– begin sidebar –>
<?php global $user_ID; ?>
<div id=”sidebar”>
<?php if ($user_ID) { ?>
<h2><?php _e(‘User Options’); ?></h2>- Write Post
- Manage Posts
- Your Profile
- Webmail
- <?php wp_loginout(); ?>
<?php wp_register(); ?>
<?php } ?>