Enno
Forum Replies Created
-
Hi!
Your tipp displays the most recent posts.
Unfortunately the chosen category is ignored… ;(And there is always one more post than defined in “counter”.
If I enter “number of Posts = 3” there will be 4 posts displayed.
I could live with that but that the category is ignored is not good.Would you be so kind and have a look at it?
Thanks
EnnoThanks a lot! I will try this!
Regards
EnnoThanks for your fast reply!!
Please go to customizer -> Theme Options -> Right Sidebar
There is the first option named “Category Post One”Site is not live right now so no URL. sorry.
Forum: Themes and Templates
In reply to: [Fukasawa] Remove Pagination and Load All PostsI am also interested in “endless” scrolling feature within this theme…
Forum: Themes and Templates
In reply to: [MesoColumn] Theme Options DisappearedAnf how do I replace “get_theme_option” in my child theme?
The Child theme is not working anymore.
No HTML ouput from get_theme_option()… :/Forum: Reviews
In reply to: [DirectEdit] Like the older days…I would like to have the option to activate/ deactivate DirectEdit in the top toolbar because editing the content will eventually be done not so often.
Forum: Plugins
In reply to: [DirectEdit] Sorry… Does not work properlyseems to be same topic “does not work with child themes”…
Forum: Themes and Templates
In reply to: [MesoColumn] comments.php of child-themeI have the idea that the additional plugin “vicomi” caused the strange behaviour…
W/o vicomi the childs comments.php will be loaded using
<?php comments_template( '', true ); ?>
Regards EnnoForum: Themes and Templates
In reply to: [MesoColumn] Display tags of custom taxonomyYes, it is! Thanks!
Will I be able to restrict the call for only ONE specific taxonomy?By the way? Is this a standard WP function?
maybe expanded by you?there is a little fault: It displays the tags like this:
tag1, tag2, and tag3
the comma before “and” is too much… 😉
Forum: Themes and Templates
In reply to: [MesoColumn] Display tags of custom taxonomySorry, this is the right code (taken from the worpdress codex)
$taxonomy = 'mytax'; // get the term IDs assigned to post. $post_terms = wp_get_object_terms( $post->ID, $taxonomy, array( 'fields' => 'ids' ) ); // separator between links $separator = ', '; if ( !empty( $post_terms ) && !is_wp_error( $post_terms ) ) { echo '<b>works on Release</b> '; $term_ids = implode( ',' , $post_terms ); $terms = wp_list_categories( 'title_li=&style=none&echo=0&taxonomy=' . $taxonomy . '&include=' . $term_ids ); $terms = rtrim( trim( str_replace( '<br />', $separator, $terms ) ), $separator ); // display post categories echo $terms; } ?>the previous posted code displays all taxonmies.
Forum: Themes and Templates
In reply to: [MesoColumn] comments.php of child-themeSorry, I was wrong! Using
<?php comments_template( ); ?>
In single.php solves the problem: the child’s theme comments.php is taken now!
Thanks!Forum: Themes and Templates
In reply to: [MesoColumn] comments.php of child-themeI have a multi-site-installation. maybe this is important…?
Forum: Themes and Templates
In reply to: [MesoColumn] comments.php of child-themeNo, sorry, that didn’t work.
Forum: Themes and Templates
In reply to: [MesoColumn] comments.php of child-themeYes, I’ll try tomorrow. Thanks!
Forum: Themes and Templates
In reply to: [MesoColumn] comments.php of child-themeHi Richie,
the problem is that the form is not completely hidden…!This stub remains although comments are closed:
<div id=”commentpost”>
<!– If comments are open, but there are not comments. –>
</div>For my understanding it should not appear at all.
1. Problem:
my changes in comments.php are not respected2. Problem
the div-commentpost-stub. which should not be created at all.Regards
Enno