Jakub Machala
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Get the term name and url by IDOh, where did this function come from? :O Amazing…
<?php echo get_term_link($term,$taxonomy); ?>works awesomeThe only thing left is the name of the term I guess… get_term_name doesn’t exists… it can be done with
<?php wp_list_categories('taxonomy=...&include=id'); ?>but this includes a link to, that’s a problem for me…Thanks!
Forum: Themes and Templates
In reply to: Get the term name and url by IDHi, thanks for the reply, unfortunately I forgot to mention that I have to do this outside the loop with any term.
Let me explain… I need a static headline + link (separately) with term’s name (headline) and term’s url (link). I need to display any term by ID, for example something like <?php echo get_term_name(10); ?> would display a name of term with ID 10, the same with link.
Thanks a lot…
Forum: Fixing WordPress
In reply to: is_category fuction for custom taxonomie's termsWell, I’ve just found this out myself… to use conditional tags of terms in custom taxonomies use is_tax() function like this:
<?php elseif(is_tax('custom-taxonomy', $term = 'custom-term')) : ?> ... <?php endif; ?>Forum: Fixing WordPress
In reply to: is_category fuction for custom taxonomie's termsNobody know a solution to this please?
Thanks a lot…
Forum: Plugins
In reply to: [WP-prettyPhoto] [Plugin: WP-prettyPhoto] Problems with WordPress 3.0?Hi,
works perfectly fine for me…Forum: Themes and Templates
In reply to: Homepage link in WP3 custom menuHi,
unfortunately it’s a dynamic (index.php) page.Forum: Themes and Templates
In reply to: Two types of category listingWell, if it works with such customized outputs it would be awesome.
Thanks for you replies :).
Forum: Themes and Templates
In reply to: Two types of category listingHi,
thanks for the answers…MichaelH: I tried that but it’s all related to styling certain categories differently, I need the same style for all first-level categories and other style for second level categories.
chinmoy: Thanks a lot for your reply, however this doesn’t solve two problems. How to recognize a category OR subcategory (this could be probably solved by http://wordpress.org/support/topic/292073?replies=5) and bigger issue… I want to display 3 float, 3 non float posts as you described. But other 6 (older) posts should be displayed by WP’s paging function (that means six per page, multiple pages).
Thanks a lot…
Forum: Plugins
In reply to: Display a list of random pages (without plugin, widget)Wow, you rock! Thanks a lot…
Forum: Your WordPress
In reply to: TranslateIntoCzech.comHi,
ahh this is exactly why I always post threads like this. Thanks a lot for this note, I completely forgot this. Added to a Prices page.I’m also happy that you like the design. Thanks.
Forum: Plugins
In reply to: Wp-prettyphoto doesn’t work with WP 2.9Same problem here, the “raw” version of this script works fine.
Forum: Plugins
In reply to: Quick link to a certain postHi,
thanks a lot for this great code, works like a charm! I only have one small question, this solutions ignores permalinks and uses static links such as http://www.domain.com/?p=20, is there any way how to bypass this?Thanks a lot!
Forum: Themes and Templates
In reply to: Filtering posts by custom fields valuesWow, I don’t know how to thank you both!
tugbucket: This is a bit more complicated solution and am I right if I say that this solution doesn’t allow me to set other “criteria” such as category, order_by,…?
geraldyeo: Where did you find it :)? It’s completely missing in the codex and it solves my entire problem! I can easily filter posts by published/unpublished, amazing. You saved my day!
Thanks to you both guys…
Forum: Everything else WordPress
In reply to: Unregistered user postHi, try to use this awesome plugin: TDO Mini Forms…
Forum: Themes and Templates
In reply to: Is possible to use function in is_page array?Nobody knows? I still haven’t figured it out 🙁 pls