alains
Forum Replies Created
-
Thanks 0tto42 1000x 🙂
Just a clarification why I needed this badly. With P elements wrapping DIVs I wasn’t able to validate the xhtml.
BEFORE OTTO42:
<div class="photo">
P<img alt="img" src="img.jpg" />P
</div>
<div class="txt">
Psome txtP
</div>
P<br class="clear" />
</div>
AFTER OTTO42:
<div class="photo">
<img alt="img" src="img.jpg" />
</div>
<div class="txt">
some txt
</div>
<br class="clear" />
</div>
Note the opening P before BR in first example without closing P tag.
Forum: Plugins
In reply to: spambot registrations–captcha protection?Aditional spam preventing from friend of mine. It’s easy :
Add another txt field in your form and hide it with CSS.
Than check when posting if field is empty or not. If not…it’s almost a spam-bot.The method is so basic but usefull.
Forum: Fixing WordPress
In reply to: How do I display blog within my website’s shell?I’ve misunderstood your goal. My solution intended to incorporate let’s say a list of recent posts on your non-WP page.
So as jackosh said you have to play with themes. I recomend you to copy an existing theme, rename it and begin with customizing there. If you mess your code u still have untouched default theme.
Forum: Everything else WordPress
In reply to: Word Press & Google & Duplicate ContentI agree with you but my solution is not inteded as a “hack” but as how to avoid Google-penalty.
Even if you write for your readers Google will find duplicate content without those little hacks.
Example:
You write a new post. The exact excerpts are then listed on:
Your index page, category page, archives, tags etc.Forum: Fixing WordPress
In reply to: How do I display blog within my website’s shell?Basicly:
Put
<?php
require('./blog/wp-blog-header.php');
?>
on top of your php page (before doctype & other stuff). With this you’ll be able to use WP stuff on your “normal” page.Forum: Requests and Feedback
In reply to: Using WordPress for a commercial siteIt is free…but they ask (not obligatory) for a modest link on your WP powered site. It is up to you. If you’re happy with this wonderfull piece of software than you should put a link somewhere…but again…it is up to you.
Forum: Plugins
In reply to: UTW – character encoding problemThanks for your help but no answer here.
The problem is that the authors support forum was down…but now I see that is working again.
For UTW users:
http://neato.co.nz/forum/Forum: Themes and Templates
In reply to: Backup not workingThanks 100x reln to pointing me int the right direction: chown. Cheers!
Forum: Everything else WordPress
In reply to: Word Press & Google & Duplicate ContentUsing UTW and no duplicate content AFAK.
Just use index,follow on:- main page
- post page
and noindex,follow in all other instances (pages, tags, categories, archives…)
Forum: Themes and Templates
In reply to: Backup not workingJust for the record. I am using WP 2.05 and it is only working with 777 for me. Anything else is a failure.
As far as I can chmod to 777, make a backup and than switch to more safe chmod it’s fine for me.
I am really interested if other WP users can get it to work with less than 777?
Forum: Requests and Feedback
In reply to: Several features that would be really usefullMaybe this one:
Forum: Everything else WordPress
In reply to: Word Press & Google & Duplicate ContentFor web designers, webmasters etc. this site is a “MUST BOOKMARK”.
Valuable info and great community.
It’s my number one site for css, browser specific problems, marketing, code ,copyright…
Give it a try!
Forum: Fixing WordPress
In reply to: positioning image mystery?Try to resolve this issue with CSS.
So give the
.post img { float:left; }
Every image in the post class will be floated left.OR
Make a .lefty and .righty classes and than apply them in the editor when writing.
For example:
.lefty { float:left; margin:0 10px 10px 0; }
.righty { float:right; margin:0 0 10px 10px; }Forum: Your WordPress
In reply to: critique please :)Yup. Except that I myself would also left align the search field (not entire green box) to titles (Categories, Links & Feeds). So the green box is aligned to green backgrounds of sections & field aligned to words.
Forum: Your WordPress
In reply to: critique please :)Much better 🙂
Another one…I promise the last 😉
The green search box will better fit into design if you align it with right side menu tabs. So you should move it more on left & than left align the search field in it to the Categories, Links & Feeds.