danixland
Forum Replies Created
-
Forum: Alpha/Beta/RC
In reply to: 3.1-RC2-17330 doesn't adds extra classes to commentsthanks everybody for your replies, I am testing it on the latest nightly (rev 17426), without plugins and using the twentyten theme, and the classes are still missing…
what else could this issue be related to?? I can’t think of anything since I am using the standard theme on a “plugin-free” install…let me know something… ??
Forum: Fixing WordPress
In reply to: what's the best way to showcase WordPress templates?thanks a lot for all your replies.. the sites shown on my portfolio online are just a few sites that I was asked to create, I didn’t put my themes in there..
Apart from showing my themes on my website I’ll probably put some of them here on wp.org, you know, I’m designing them because I want to see them (hopefully) used, and not just to show I can do themes, so I think they’ll have much more visibility here.. ??
thanks again for your replies.. ??
Forum: Alpha/Beta/RC
In reply to: 3.1-RC2-17330 doesn't adds extra classes to commentssince the issue is showing up on every svn update, even using the twentyten theme, I’ve opened trac ticket #16394.
Thanks everybody for replying, I hope someone can help me out with this issue..
Forum: Hacks
In reply to: how to use WordPress functions in js file?ok, I can set this thread as solved ??
for future reference, after using Otto’s method, explained in detail on Mark’s post, I had to modify the js script this way:
jQuery(document).ready(function($) { var foo = params.foo; [...]
doing so I was able to retrieve the foo variable set up in the array on my header.php…
thanks a lot, I hope this turns to be useful for others too!!
Forum: Hacks
In reply to: how to use WordPress functions in js file?Thanks for your reply Mark…
I was doing this same thing but in a different way…
now I just have to learn how to read the parameters I’m passing inside my script…
thanks a lot again!!
Forum: Alpha/Beta/RC
In reply to: 3.1-RC2-17330 doesn't adds extra classes to commentsyep!! Updated to svn rev 17357 and the problem is still here…
I gave a look at comment_class() and get_comment_class() in wp-includes/comment-template.php both for the 3.0.4 and the trunk branch and they are identical…
So why this part of my theme works in 3.0.4 and not in trunk??
Also noticed they doesn’t work with twentyten too, so I can exclude is my theme’s problem…Forum: Alpha/Beta/RC
In reply to: 3.1-RC2-17330 doesn't adds extra classes to commentsRevision 17355 has the same problem… any ideas?? Should I file a trac ticket??
Forum: Alpha/Beta/RC
In reply to: 3.1-RC2-17330 doesn't adds extra classes to commentsI’ve noticed I have class “comment” added two times, it was just my mistake due to copy/paste…
sorry ??
Forum: Themes and Templates
In reply to: small issue with children list in commentsI’ve solved moving the
<?php comment_class(); ?>
function from the top<li>
to the<div>
right under it…Thanks anyway!!
Forum: Fixing WordPress
In reply to: How to add a Web Form to the front pagetry looking for the subscribe2 plugin or any subscription plugin on the repository… ??
Forum: Themes and Templates
In reply to: Bulletlist css problemto print a right arrow you could use the pseudo class :before this way:
in the html:
<ul> <li>blah blah</li> <li>blah blah</li> <li>blah blah</li> </ul>
in the css:
ul { list-style:none; } ul li:before { content: "\2192 020"} /* 2192 is the ascii for the right arrow, 0020 is the ascii for the single space */
Or you could use an image with
list-style
in the css… ??Forum: Fixing WordPress
In reply to: Post Content – Post Excerpts – Post Titleusing category templates you should be able to do what you want simply working on the loop in every template file ??
Eg:
the 3 categs are:- alpha – display whole content (template file category-alpha.php)
- gamma – display only the excerpt (template file category-gamma.php)
- beta – display only post title (template file category-beta.php)
Now for those template files to do what you want, you’ll simply have to adjust the way the loop displays contents inside those 3 files… ??
no plugins, no strange functions… just WordPress!!
PS
the template category-{slug}.php was added in WP 2.9, but I’m sure you have the latest stable, don’t you?! ??Forum: Themes and Templates
In reply to: Good Theme to turn WordPress into CMSsorry but I don’t understand, what you mean by: “look like a CMS”?? How does a Content Management System looks like in your opinion??
maybe you could post some link, so that we could better understand your request… ??
Forum: Fixing WordPress
In reply to: Pingback on Themeyou’ll have to give a look at the comments.php template file… try starting from the one shipped with the twentyten theme… ??
Forum: Fixing WordPress
In reply to: How can I remove the rotator from my blog?I didn’t find a way to download this theme, so I can’t give a look at it, however, have you tried looking in the widgets section of your admin area? If this rotator is a widget then you should be able to remove it from the sidebar… If this theme as a dynamic sidebar but you didn’t put any widgets in it, try adding some widget and the rotator should disappear automagically ??
On the other hand, if this theme doesn’t support widgets, then you’ll have to look for the “sidebar.php template file inside your theme directory and remove the section for the rotator, usually it’s a li enclosed section or maybe a div… At least paste the whole sidebar.php code somewhere and we’ll give it a look for you ??bye