check12
Forum Replies Created
-
Forum: Plugins
In reply to: category-slug characterok, so the xlanguage plugin needs to manage this…
a’right, I hope somebody can implement this.Forum: Fixing WordPress
In reply to: Stop automatic special character conversionthanks, that will work.
Forum: Fixing WordPress
In reply to: Stop automatic special character conversionI just wanted to insert an jquery code in the post. I used an if clause like
if (var1 == 1 && b == c) {...}
but the code doesnt work because in the source code the & is replaced by the code I posted above. thats why my code doesn’t work.Forum: Plugins
In reply to: wp-polls: adding language doesn’t workok, I checked the wp-admin section and everything there is translated! I also installed another plugin (GD Star Rating) and I still got the same problem: for the administration the translation works, but @ the site not.
can anybody help me?Forum: Plugins
In reply to: Now Reading Posts Plugin*push*
it seems that there is no such plugin present :>Forum: Fixing WordPress
In reply to: php code in the loopyou are right, I solved the problem bei adding if statements within the loop. that works, thanks
Forum: Fixing WordPress
In reply to: php code in the loopI tried to rebuild it, but I’m still failing. Same issue, I can’t get the_content() to be outputted.
Forum: Fixing WordPress
In reply to: php code in the loopThanks so much, I test it!
EDIT: Thanks but that’s not what I wanted. The
<ul>
has to be out of the loop and I need an if statement before the loop starts if I’m in a category. I try to use your code and rebuild it.Forum: Fixing WordPress
In reply to: passing variablesBe more specific please. Did you used the variable within a php function? In that case you should first make the varibale in the function global with “global $make;” before you can use it
Forum: Fixing WordPress
In reply to: Image- and Description-PostThank you very much.
At the Categorie-Page and Post-Page the excerpt + the_content text are displayed together (twice; I mean on both pages).
Now I need to remove the_content text at the Categorie-Page.
And at the Post-Page I have to remove the Excerpt while showing now the_content .
How can I do that?
Is there a Tag for each of these commands?
It would be great if I have a tag for the avatar_image, the excerpt, the_content text and the postlink.p.s.
the avatar is also shown at the Post-Page, how can I remove it there?ok with the following code it worx, but the avatar is still shown at the Post-Page. That’s why its built within the_content() tag. I have to figure out how to remove it there.
<?php if ( is_category() ) { if (function_exists('gkl_postavatar')) gkl_postavatar(); // get the avatar. Without this code it would not be shown, because its built in the_content. the_excerpt(); } else { the_content(); // here I have to remove the avatar. how? } ?>