lerizzle
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: no paragraph tags!!Well a paragraph tag is used to markup a paragraph, and a space is not a paragraph.
I don’t think theres an alternate editor for wordpress but if they were a quality one would not allow for bad markup.
It would help to see why you want more space them it would help decide what the best approach is. Like for instance if it’s a different section then you might insert an hr tag with the right CSS to create the spacing. Or if it’s the last paragraph you could use p:last. There’s a solution for you but it may vary based in your problem.
Another possibility May be to add the style to the style drop down but I have never done that.
Forum: Fixing WordPress
In reply to: no paragraph tags!!My wp does create empty paragraph if I push return twice. However you should never have empty paragraphs it’s not valid mark-up. If you need more space you should adjust it in your css, not in the html.
Forum: Fixing WordPress
In reply to: no paragraph tags!!WordPress will add paragraph tags automatically on the page. Even though they are not in the editor they will be on the generated page.
If you want a line space you should add an empty paragraph.
Forum: Fixing WordPress
In reply to: 3.2.1 will not accept an administrator passwordHave you tried the mysql command line option here:
Forum: Fixing WordPress
In reply to: Sidebar Widgets Appearing at the Bottom??it looks fine to me in firefox. what browser are you using?
Forum: Fixing WordPress
In reply to: Sidebar Widgets Appearing at the Bottom??provide a link, but most likely you have something in your sidebar that is too wide and causing it to break below the content.
Forum: Fixing WordPress
In reply to: How to insert scripts and code into a post?You could use post meta. check for that meta, i’m guessing in your functions.php then output what you need in the footer if it exists.
Forum: Fixing WordPress
In reply to: child theme issueis your parent theme also using @import? If so that might be your issue. Make it easy on yourself and just copy and paste the parent theme styles in your css file instead of importing it. Cause technically if you are using a child theme it’s cause you want the fucntionality not the look and feel.
Forum: Fixing WordPress
In reply to: Trying to create a category pagelike an archive page? Your theme should have that already. If you want a different one for a specific category you can by calling the file category-[slug].php
Forum: Plugins
In reply to: [WP Custom Fields Search] Pagination removing space in queryIs there another fix. Cause remove_action(‘template_redirect’,’redirect_canonical’); just breaks everything.
Forum: Plugins
In reply to: [Image Widget] Image Widget License?I could be wrong but as far as I’ve been told everything built for wordpress has to be fall under the same license so you should be able to include with the proper credits.
This is also true for pay plugins but that would be mean.
Don’t quote me but thats what I understand. Anyone else?
Forum: Fixing WordPress
In reply to: Custom Taxonomies admin box broken after WP3 upgrade.I have the same issue. The ajax to add a new taxonomy term doesn’t work. Well it actually does but nothing changes on the page I have to refresh.
Forum: Fixing WordPress
In reply to: Maximum number of posts in a custom postBut if my permalink is only /photo/photoname I should be ok no? Cause that only creates 1 rewrite rule so it shouldn’t matter. Am I wrong?
Forum: Fixing WordPress
In reply to: caching not workingLooks like I needed
define('WP_CACHE', TRUE);
at the top of wpconfig as oppose to
define('ENABLE_CACHE', TRUE);
at the bottom
The lack of support is really forcing me to understand things ??
Forum: Fixing WordPress
In reply to: get_term_by name not working in pluginsorry, Term didn’t exist yet ??