Labradork
Forum Replies Created
-
Forum: Requests and Feedback
In reply to: Huge boxes and input fieldsI like pressing the uber button. Makes me feel like I did something important–almost world changing.
Forum: Requests and Feedback
In reply to: Huge boxes and input fieldsYeah, they’re kind of big, but I wouldn’t call it HUGE. Looks bigger in MS IE than in Firefox.
Forum: Fixing WordPress
In reply to: carriage return and hyphenateMaybe this is what you might be looking for, but I’m not really sure:
Forum: Fixing WordPress
In reply to: Include pageThe WordPress Codex is your friend. Read about Pages and scroll down to “Pages can use Different Templates”.
Forum: Fixing WordPress
In reply to: Deleting Categories and PostsDo a search for “sending referrers” in the search box above and you’ll get some posts that refer to your problem.
YoB
Forum: Fixing WordPress
In reply to: carriage return and hyphenateAre you looking for something that would hyphenate the title, or the text in the body? Have you tried looking for plugins at WordPress Plugin Database, WordPress Plugin Repository, or the WordPress Codex?
As for the unformatted plugin, all it does is prevent WP from formatting your body text automatically. You will be able to manually write your post. You add a custom field to the post and set it to 1 or 0 if you want the plugin be enabled for that particular post or not.
You can’t read the languate MO file because it is a binary file. Check this page out for more info, Localizing WordPress.
Forum: Fixing WordPress
In reply to: carriage return and hyphenate1. You can use the wp-unformatted plugin.
2. I’m not sure how to hyphenate.
3. Use Crimson Editor instead of notepad. It is free and so much better. Even has syntax highlighting.
WP is telling links to show up only on the front page. You can change that by editing sidebar.php.
In default template, find and delete:
<?php /* If this is the frontpage */ if ( is_home() || is_page() ) { ?>
Find this line and delete too (it is the third to last line):
<?php } ?>
This will also make your meta info show up on all pages unless you just move the above code around instead of deleting it.
YoB
Forum: Fixing WordPress
In reply to: 2 domains, 1 host, permalink problem.Permalinks on both sites are working for me. Also, I’m not sure how secure it is to show your php info in public, but I’n no security expert.
YoB
It appears that your header image is working as a link back to your home directory.
Forum: Themes and Templates
In reply to: In link section change, “>>” to “a—?” ?If you are using Kubrick or the default templates, then edit or delete this CSS entry:
.entry ul li:before, #sidebar ul ul li:before {
content: "0BB 020";
}YoB
Forum: Everything else WordPress
In reply to: free/open source shopping cart program neededMals-e.com offers a free shopping cart that I’ve used on several sites.
You can also try Microshop from Asymptomatic.
Did you try a search on SourceForge?
YoB
Forum: Installing WordPress
In reply to: MySQL 4.0.22Pester your host to upgrade. If you’re paying them for hosting, then they should at least give you something in return. If not, move to a new host. Hosting is cheap these days.
YoB
Forum: Fixing WordPress
In reply to: Template Switcher for 1.5?By the user do you mean a visitor to your site or the site admin?
YoB
Forum: Themes and Templates
In reply to: More “Little boxes”Yes, the div should expand to fit the content, unless you specify a background image for the div within the CSS file. Example:
background: url("images/bg.png");
The Firefox extention does not edit the CSS file on the site. It just reads it. The browser then reinterprets what changes you make. Then you cut and paste your changes from your browser into your CSS file on the server. This way you don’t waste time loading and reloading the file to see your changes.
Just don’t visit another page when using that extention. It will load the CSS from the new site and you will lose your changes.
YoB