CallUp
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: I Widgetized My Theme Locally – Now It Won’t Let Me Log In – HELP!I cut the wamp services off, restarted them, over and over, and nothing. I shut it off and left it off for a few minutes. Started it back up, and it now lets me log back on.
Not sure what was going on. Maybe that YouTube feed is freaking out my security settings.
Anyways, I’m back in, but if anyone thinks they know what happened, I’d still love to hear it.
Thanks.
Forum: Themes and Templates
In reply to: Removing the “Older Posts” Line?If you look in your index.php file you should see something that resembles this code above your loop and below it. Just remove the one above the loop:
<div class=”navigation”>
<div class=”left”><?php next_posts_link(‘« Older Posts’) ?></div>
<div class=”right”><?php previous_posts_link(‘Newer Posts »’) ?></div>
</div>Forum: Themes and Templates
In reply to: Widgetising ThemesAnyone?
Forum: Fixing WordPress
In reply to: CSS help: Text Formatting Problem with <p>I’m testing with Firefox and IE on MS Vista. I don’t get a line break from a single return on either browser. How frustrating.
Forum: Fixing WordPress
In reply to: CSS help: Text Formatting Problem with <p>That does work. It’s frustrating, because it’s not “what you see is what you get”, like in this editor. In this editor, at WordPress.org, if I hit a single return (like such)
it takes me to the next line (not treating it as a new paragraph). When I hit return twice (like such)then the text appears two lines below, and it gets posted the same way, and thus “what you see is what you get”. My editor converts all returns (one, two consecutive ones, three consecutive ones, etc.) to a single p. So if I want to write a poem or lyrics, where each line is not a new paragraph, but just a new line, then I have to remember to do shift-return for each line.
That’s not really obvious or clear to most users — especially strangers I hope to have in the future posting on my site. How can I get my site’s editor to be “what you see is what you get”, like this editor?
Forum: Fixing WordPress
In reply to: CSS help: Text Formatting Problem with <p>How can you assign two hard returns to p and one hard return to br ? Anyone?
Forum: Fixing WordPress
In reply to: CSS help: Text Formatting Problem with <p>To make it clearer, here’s what I’m getting. I typed out each of the following sentences in the WYSIWYG editor, and then hit return the number of times I stipulated:
First line, hit return once.
Second line, hit return once.
Third line, hit return once.
Fourth line, hit return twice.
Fifth line, hit return twice.
The end.And if you look at the source, once it’s posted, it shows each of those lines between the p tags:
<p>First line, hit return once.</p>
<p>Second line, hit return once.</p>
<p>Third line, hit return once.</p>
<p>Fourth line, hit return twice.</p>
<p>Fifth line, hit return twice.</p>
<p>The end.</p>It doesn’t distinguish between one hard return, two hard returns, … n hard returns. It assigns a single p for however many consecutive hard returns you type.
Forum: Fixing WordPress
In reply to: Author role conditional checkOOps, I posted before I saw yours. 🙂
Forum: Fixing WordPress
In reply to: Author role conditional checkHow about using this:
Forum: Fixing WordPress
In reply to: Author role conditional checkHere’s some links to refer to: http://codex.wordpress.org/Function_Reference/get_currentuserinfo
Forum: Fixing WordPress
In reply to: Author role conditional checkYou can do something like this:
<?php global $user_level;
<!–get_currentuserinfo() gets the currentuser info and automatically assigns the values to some global variables, including $user_level, above–>
get_currentuserinfo();
if ($user_level == 1) { ?><!–user level 1 equates to ‘contributor’–>
<!–here’s where you could put your bio link–>
<?php } ?>Hope this helps.
Forum: Fixing WordPress
In reply to: Tags to Identify Logged In User’s RoleAwesome! Thanks for your help!
Forum: Fixing WordPress
In reply to: Accessing DashBoard During Theme Design PhaseSolution: Just wrote the login code into the xhtml to allow admin access.
Forum: Fixing WordPress
In reply to: Post with blank title breaks permalinks?avocado,
I just noticed the same thing. Hopefully, someone will answer you. I’d like for it to be mandatory for post titles as well.Forum: Fixing WordPress
In reply to: Accessing DashBoard During Theme Design PhaseI just tried that and it’s still rerouting me back to the home page.