coggia
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Lightbox] some Images aren’t displayed at max sizeOh thanks , merci -je ne sais plus en quelle langue répondre-
This option didn’t exactly jump out at me 😉thanks again
I’ve seen a possible solution by implementing the JQzoom,http://www.mind-projects.it/projects/jqzoom/
but I don’t see how to override the nextgen gallery function.Someone can help me with this please?..
Forum: Fixing WordPress
In reply to: managing query_posts and dropdown listsno clue anyone?
Forum: Fixing WordPress
In reply to: managing query_posts and dropdown listssorry, this post was duplicated due to a server 500 error 🙁
Forum: Fixing WordPress
In reply to: managing query_posts and dropdown listsForum: Fixing WordPress
In reply to: php code to link a categoryOkay, thanks to you I managed to a solution 🙂
Maybe not an exceptionnal one, but it works, here it is if someone needs it one day:
$catpost = get_the_category(); foreach ($catpost as $cat) { if($cat->category_parent==25){ $namecat= $cat->cat_name; echo $namecat; } }(the category parent ‘GENRE’ got the id = 25)
Thanks again
Forum: Fixing WordPress
In reply to: php code to link a categorySo far I only managed to get the link to all tthe posts belonging to GENRE with this:
$category_id = get_cat_ID( 'Genre' ); $category_link = get_category_link( $category_id );But cannot found to which genre belong this particular post
Forum: Fixing WordPress
In reply to: php code to link a categoryerr…well, not really;
I guess I’m not explaining my problem quit right,I’ve seen your post before posting mine, yours list all the categories and shows their attributes, my problem is I’m stuck with choosing one particular category which is included in another one, i make an example :
My Post is in 2Categories: NES, and GENRE->STRATEGY
I want to display this line in my single.php:
that this post is STRATEGY and the link to al the posts that belong to STRATEGYI apologize if the answer to this was in your post too, but i didn’t see how 🙁