libor-jelinek
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Plugin: NextGEN Gallery] Page Title – Picture 1 etcSolution from madjax seems to be only way if you really want to have names in title.
I’ve extended it album name also:
global $wpdb; $albumcontent = $wpdb->get_row("SELECT * FROM $wpdb->nggalbum WHERE id = '$album' "); $gallerycontent = $wpdb->get_row("SELECT * FROM $wpdb->nggallery WHERE gid = '$gallery' "); if(!empty($gallerycontent->title)) { $new_title = ' - '.$albumcontent->name.' - '.$gallerycontent->title.''; $title = $new_title . $title; } return $title;Forum: Fixing WordPress
In reply to: HTTP 500 ErrorCan you see HTTP 500 error on all pages or on only any specific URLs like wp-comments-post.php?
I experienced problems with wp-comments-post.php when I didn’t fill e.g. email address on the comment form. wp-comments-post.php sent HTTP 500 error and IE browsers show only default “Page cannot be displayed” (friendly HTTP errors are turn on by default) but all others broswers show message “You did not enter email address correctly.”
Forum: Plugins
In reply to: Single_Cat_Title doesn’t display linksthe_category()Forum: Fixing WordPress
In reply to: More tag ignored on home pageCan somebody explain me why is
<!--More-->tag ignored on home (front) page? (is_home() == TRUE)?It’s very inconsistent behaviour and for me it was difficult to resolve why my posts are not cutted after
<!--More-->on home page post listing.If you understand the reasons, please consider explaint it to following Codex pages where is the_content() and excerpt described.
http://codex.wordpress.org/Customizing_the_Read_More
http://codex.wordpress.org/Template_Tags/the_excerptCheers
LiborForum: Themes and Templates
In reply to: Newbie need help with this errorLast thing that can cause the problem can be layout directory permissions…
Set “chmod 777” on layout directory (rwxrwxrwx) (permission to read, write and execute for owner, group, other) (using FTP client if you have your WP on remote server) and try it again.
Libor
Forum: Themes and Templates
In reply to: Newbie need help with this errorDear Egypty, are you sure that you have subdirectory named “layouts” under your theme directory (i.e. wp-content/templates/nameOfYourTemplate/layouts)?
Error message means that subdirectory layouts doesn’t exist or is inaccessible.
Libor