Forum Replies Created
-
AuthorPosts
-
thedarkmist
MemberHello.
Same problem here. But using this widget and aligning the image left or right, the images doesn't behave like with the genesis featured pages plugin.thedarkmist
MemberI would put my 2 cents: I think developer should focus on making more professional child themes. Genesis is a great tool, but it design potential is really limited, compared for example, to the new Divi 2 theme from ElegantThemes. I don't want to say Genesis development team should take charge of drag 'n' drop page composers or so on, but for sure the users community needs more quality child themes.
thedarkmist
MemberYes, it's the point I wanted to put attention on.
Unfortunately it seems that Studiopress is not interested in making cool designs, since they (I think) prefer to focus on genesis core. I respect their vision, but I think it's going to be a break to the adoption of Genesis 2.0 and a favor to themeforest and other selling platform. Orp probably to other frameworks with more out of the box designs that can emerge in future.
I'm a Pro Plus Genesis customer. But I'll have no problems to pay every single theme more, if the quality would be that.thedarkmist
MemberOn some devices (I've tested with android) if you touch the first link the dropdown appears for few seconds and the the first link's page is loaded, making the dropdown links unreachable.
thedarkmist
MemberStudiopress could have good reasons to not want to manage designs. But I think they should act a role in the stimulation of the growing of a cool community designers. The actual section of community child themes is small, not so much easy to find, and auto-managed. What if studiopress would involve designers of the world giving them a good platform to sell their designs, for example? I think that genesis coders would pay for quality child themes. They don't have to be released for free even to plus members.
thedarkmist
Member@braddalton, try to test the dropdown menu with a touch device. It's not properly "usable".
thedarkmist
MemberI think the point is not really the quantity of the theme released. But the approach to the design. Even if SP would release 5 new themes per month, I think they wouldn't be very useful if they were all blog-like or with no special attention to design.
thedarkmist
MemberI recommend to fix it. The custom header setting doesn't work at all.
thedarkmist
MemberThis should work:
// Add support for featured image in pages and single posts
add_action( 'genesis_post_content', 'insert_featured_image', 5, 0 );
function insert_featured_image() {
if (is_single() || is_page()) {
if (has_post_thumbnail( $post->ID ) ) {
$image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'medium' );
$full = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'full' );
$alt = get_post_meta( get_post_thumbnail_id( $post->ID ), '_wp_attachment_image_alt', true);
?>
<a href="<?php echo $full[0]; ?>" class="lightbox"><img src="<?php echo $image[0]; ?>" width="<?php echo $image[1]; ?>" height="<?php echo $image[2]; ?>" class="alignleft post-image" alt="<?php echo $alt; ?>" /></a>
<?php
}
}
}thedarkmist
MemberThank you very much, it solved!
-
AuthorPosts