emanoelmelo
Forum Replies Created
-
Forum: Plugins
In reply to: Posts in gridsVery nice!! Thanks for the tip, alchymyth!!!!
Forum: Plugins
In reply to: Posts in gridsInteresting solution alchymyth, thank you!!! One of my problems is that divs have different heights, so if they are too long, they “move” the divs bellow.
Forum: Themes and Templates
In reply to: 404 page doesn’t show upOk Angad, since you solved, you should post the solution, not ask moderators to erase.
Forum: Themes and Templates
In reply to: Sub-categories to use parent category template?You dont need plugin, just use a few codes at the functions.php
I’ve found in this article:
http://brassblogs.com/blog/making-child-categories-recognize-parent-displaysForum: Fixing WordPress
In reply to: Big Challenge: Showing one single page in category folderhow?
Forum: Fixing WordPress
In reply to: Shadowbox JS and Media Librarymaybe you have to open another page/post for the second gallery.
Forum: Plugins
In reply to: category template if statement for cat childrenWhat if we where talking about a single post? Like if a post was in some category or that category’s child? I’ve tried to use in_category instead of is_category but no results…
try this on the functions.php:
add_filter(‘single_template’, create_function(‘$t’, ‘foreach( (array) get_the_category() as $cat ) { if ( file_exists(TEMPLATEPATH . “/single-{$cat->term_id}.php”) ) return TEMPLATEPATH . “/single-{$cat->term_id}.php”; } return $t;’ ));
Code grabbed from somewhere this forum.
Forum: Themes and Templates
In reply to: Design a Post TemplateTry this on the functions.php:
add_filter(‘single_template’, create_function(‘$t’, ‘foreach( (array) get_the_category() as $cat ) { if ( file_exists(TEMPLATEPATH . “/single-{$cat->term_id}.php”) ) return TEMPLATEPATH . “/single-{$cat->term_id}.php”; } return $t;’ ));I grabbed this code from somewhere this forum.
Forum: Plugins
In reply to: Slickr Gallery Question(s)…what version of WP are you using? You have to change de permalinks going to Settings > Permalinks at WP 2.7x
Forum: Plugins
In reply to: Slickr , lightbox part doesn’t worklook if your lighbox is working in other imagens of other pages. Maybe is the lighbox installating (look if your theme has the <?php wp_header(); ?>) code.
Forum: Plugins
In reply to: [Plugin: Slickr Gallery] Slickr: A little work but well worth the downloadThe only thing i dont like with this plugin is the way we must use. Point a page for the plugin doesnt solve my problem. Is that a way to INSERT the gallery at a page, using code? I really need to do this, using WP CODA at http://www.buffetplanetamagico.com.
Thans guys…
Forum: Fixing WordPress
In reply to: How to list categories and description on page?Try this topic:
http://wordpress.org/support/topic/151935?replies=4#post-832204Forum: Fixing WordPress
In reply to: List WordPress Categories with Cat DescriptionsThis was quite what i was looking for, thank you guys!
Forum: Fixing WordPress
In reply to: realTinyMCE is not definedFunny is that i have 2 Wp installations, with the same version (2.3.1) running. The one at the root directory needed no workaround! The one in a subdirectory worked well with the “=false” one….
These things are funny.