Jens M Eichkorn
Forum Replies Created
-
Forum: Plugins
In reply to: JetPack Gallery sizing down full-size images for thumbnailsSame problem here. Can’t find any solutions.
Another thread about that issue was closed without any help ??
I mean the tiled galleries inside a post does exactly what we want for the widget. It pulls the re-sized thumbnails but in my sidebar (widget) it uses the full width (original) image and scales it down. I end up with a 15mb home page :
Pls we need a solution for this guy!
Forum: Themes and Templates
In reply to: [Pinboard] How to include a featured image in single post pages?Thanks, that helped me! ??
Forum: Themes and Templates
In reply to: [Pinboard] Display custom post type on home pageThe problem is, that custom post types won’t be displayed on the home page no matter what category they have.
So he still need’s this work around.
And yes – a child theme would be recommended, in case he doesn’t want to loose changes after updating. So I put it in a child themes functions.php.
Forum: Themes and Templates
In reply to: [Pinboard] How to add slider?You might want to set posts with a featured image as ‘sticky’.
The slider will then show the featured images of all sticky posts.
Forum: Themes and Templates
In reply to: [Pinboard] Display custom post type on home pageI think he was talking about custom post types so that’s not the solution.
I know it’s late but maybe it helps in the future. What you want is a funktion in the function.php of your theme (at the end):
add_action( ‘pre_get_posts’, ‘include_yourCustomPostType_in_home’ );
function include_events_in_home( $query ) {
if ( ! is_admin() && $query->is_main_query() && $query->is_home() ) {
$query->set( ‘post_type’, array( ‘post’, ‘yourCustomPostType’ ) ); /* Set your Custom Post Type Name instead of yourCustomPostType */
}
}Forum: Plugins
In reply to: [Image Watermark] Scale/Opacity/Quality sliders not working in optionsCan you please tell how to fix that?