wordmotes
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: /page/46/ page not foundThanks so much it worked! I could hug you now! You made a sad men damn happy for the moment. 🙂
Yes I noticed. I should take a closer look to the child theme. Now I updated the files for my self.
Forum: Fixing WordPress
In reply to: /page/46/ page not foundHi
I used a query in the index.php before the loop starts.
<?php if ( is_front_page() ) { query_posts($query_string . "&showposts=1"); } ?> <?php /* Run the loop to output the posts. * If you want to overload this in a child theme then include a file * called loop-index.php and that will be used instead. */ get_template_part( 'loop', 'index' ); ?>I take a look into loop.php and there I can’t found a query question.
Forum: Plugins
In reply to: Fresh emoticons for WordPressThe Emoticon Set is now realeased under CCL. Hope you’ve fun with them!
Forum: Plugins
In reply to: Fresh emoticons for WordPressThe emoticons are free for personal usage. If you use them it would be nice to set a link or leave a note where the emoticons come from.
Forum: Fixing WordPress
In reply to: Social buttons helpYou set me a big smile on my face. This works, but you’ve no spaces between longer articles, with this solution. If you add the following to your code, it should also work with spaces in the article.
<?php echo str_replace( ' ', '%20', get_the_title()); ?>I hope I can give you a little bit back with it.
Forum: Fixing WordPress
In reply to: Social buttons helpI recognized the same problem using WordPress 3.0.1 and Twentyten 1.1
The problem is “the_title” if you use it in links you get a invalid markup because of “WHITESPACE in QUERY”.
I’m no coder or developer as well so I have no answer how the problem can be solved.
We need “%20” for the whitespace, but I’ve no idea where you can add this. Maybe anyone of you have a idea for this?