paolino
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: How do I change my forum email addressSame here!
Forum: Your WordPress
In reply to: Italian soprano web site.Very nice site.
I really like the slideshow on the home page. Do you use a plugin?Also my compliments fot the very nice integration with ZenPress (plugin or by hand?)
Ciao
Forum: Your WordPress
In reply to: NewSite: wordpress = CMSStyledSheet, thank you. Menu is not mine but was written by Stu Nicchols on CSSPLay. Menu style was mine.
Forum: Your WordPress
In reply to: NewSite: wordpress = CMSDianeV, yes Galleryo is developed by an italian guy.
But you can find something in english here:
http://www.studio404.it/wp-plugins/galleryo-readme-en.htmBy now, Galleryo is no more developed, but I hope that the author can think about that decision.
Forum: Your WordPress
In reply to: NewSite: wordpress = CMSThank you Diane.
About the photos, yes I uased a plugin called Galleryo.
I had to hack it a little bit because I need some custom functions… so I wrote theme 😎Forum: Fixing WordPress
In reply to: 1.5 permalink trouble: www.mysite.com/category/IMHO cat=0 means all the category. In this way /category/ shoud point to “category.php”. In category.php it easy to check the ID and showing all the category.
Forum: Fixing WordPress
In reply to: 1.5 permalink trouble: www.mysite.com/category/No one can confirm my investigation?
Forum: Fixing WordPress
In reply to: 1.5 permalink trouble: www.mysite.com/category/I’ve investigate further and I really think that index.php?cat=0 is completely diferent from index.php?cat=1 (or any othe number).
Both category.php and archive.php doesn’t apply fat index.php?cat=0Bug or feature?
Forum: Fixing WordPress
In reply to: 1.5 permalink trouble: www.mysite.com/category/Thanks Mark, I think it’s a good starting point. But there are some problems.
I rewrite your rule according to my site settings. Now if i do
[blogdir]/category/ I’ don’t have anymore the [in]famous 404 error but it reloads the starting page. I’m sure becouse in my theme directory I have category.php and this file is loaded when a category is hitted. It works perfectly with all the other category but not with your solution.
So I tried the following rules:
RewriteRule ^category$ /index.php?cat=1 [QSA,L]
With cat=1 (without “$” sign) it load correctly the category.php template. If I try with a non existing category id (let’s say 56) I have the 404 error (different from the original one, this one is styled inside my blog and it’s not the apache default 404 page).So it seemd that cat=0 doesn’t call correctly the right template (in order category.php, archive,php, index.php) but it calls directly index.php as template.
I think we are not so far from the solution… but we have to investigate more. 8-)) LOL
Thank you
Forum: Fixing WordPress
In reply to: 1.5 permalink trouble: www.mysite.com/category/No one who want (or can) help me and Novac?
Forum: Themes and Templates
In reply to: How to apply min-height in IE and other browsersI don’t like conditional statement so I use another (very common) trick:
#insideWrapper {
min-height: 500px;
height: auto !important;
height: 500px;
}
Explorer doesn’t understand !important and will apply the 500px height as min-height. Other browsers understand !important (including IE/Mac which also understands min-height) and will apply auto height instead.Ciao