hapaxlegomen
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: The current author profile on a clean page ? Very hard in fact.Because the nickname and the author name are the same. This is a scientific revue, no funny nickname on it… You think it’s the problem ???
Forum: Fixing WordPress
In reply to: The current author profile on a clean page ? Very hard in fact.Badly, All these fields are full of information.
Forum: Fixing WordPress
In reply to: The current author profile on a clean page ? Very hard in fact.I have made. It doesn’t change anything. ! :-X I don’t understand. I’m on WP1.5.2.
Forum: Fixing WordPress
In reply to: How use quicktags in other admin fields ?Thanks but I can do this. Only part of the title post must be in italic… I need quicktags to target the title field.
Forum: Fixing WordPress
In reply to: The current author profile on a clean page ? Very hard in fact.Hello Nearlythere,
I have made what you say but having the same problem : profile information aren’t display.
Go here : https://www.cometes.org/2005/10/17/antony-mckenna-moliere-dramaturge-libertin/
and click on the author link at the end of the page. You will arrive here :
https://www.cometes.org/author/eloise-lievre/Whitout nothing only posts !
And I must add I will need after to change the url in a french on, whith “membres” instead “author” in permanent link… So much work for this week…
Thankx for your help
Forum: Themes and Templates
In reply to: wp_list_pages and wp_list_cats – no <li>!You won’t find your answer at this page. ‘title_li’ only erase the headline and the
- .
I’m looking for the same thing since 2 weeks.
Forum: Fixing WordPress
In reply to: The current author profile on a clean page ? Very hard in fact.You can see an example of this crash here :
https://www.cometes.org/2005/10/17/antony-mckenna-moliere-dramaturge-libertin/
Note that $curauth is taken by my author.php, but not translate into data ! … ???
Forum: Fixing WordPress
In reply to: How use quicktags in other admin fields ?I have already hack the quicktags.js but I simply cannot find where to hack the “destination” of tag generatef by a quicktag.
I don’t think it’s interesting only me. In fact, I don’t understand why quicktags are limited to the post content. More is better than less for the same price, isn’t it ? (I say that for next version of WP)
Forum: Fixing WordPress
In reply to: How use quicktags in other admin fields ?My question is so stupid ??… I don’t think it’s so easy, and no one speak about it !
More than 90% of my titles must have italic (book titles) and so if Quicktags could work for them, I could win lot of time instead copy-paste every tag by hand.
If there is a javascript senior, let him explain ??
Forum: Plugins
In reply to: Find Category ID of post, see if it equals 20, then do somethingSniff !! ??
Me I need more complex conditions and I crash on the same problem ! But the solution shown can be applicated to my case ! Heeeeeeeelp… Sniff !Forum: Plugins
In reply to: CSS SwitcherTry https://www.alistapart.com/articles/alternate instead.
It works great on my WP site.Forum: Fixing WordPress
In reply to: Category ID or the eternal new question never resolved ?Euuuh, always me…
I use
<?php
foreach((get_the_category()) as $cat)
{$cat->cat_ID;}
?>and after in my simgle template, I use a very basic if condition :
if ($cat != 1)
{echo ‘test’;}
else
{echo ”;}And my condition doesn’t work… ?? Is there some technical specification about this way of catching cat ID to explain this ?
I don’t see the smallest error in my nano-code.Forum: Fixing WordPress
In reply to: Category ID or the eternal new question never resolved ?Sorry, I have made a error in my code and
<?php
foreach((get_the_category()) as $cat) {
echo $cat->cat_ID . ‘ ‘;
} ?>works for me ! ??
Always be carefull before crying too much… :-XForum: Fixing WordPress
In reply to: Category ID or the eternal new question never resolved ?It’s totally unbelievable. If you can’t have the current cat ID, how do you make conditions if ?????!
I have only 6 root category (no child). I absolutely need which category is current in my “single template”. When I say absolutely, it’s absolutely, because when it is a category, you have something display, and another, another display.
I can’t ask my author to use templates for each post ! And templates won’t solve the problem when there is are if for an unique category…
I made this so easely with b2 that I couldn’t imagine I won’t be able with WP ! How will I do ??? It’s not a bug, it’s a structural vice.
Forum: Fixing WordPress
In reply to: child pages with wp_list_pages… but for the current pageThanks everybody for help. I took the Viper007Bond solution, clean and perfect ! ??