Forum Replies Created
-
AuthorPosts
-
paulcParticipant
You're right, seems to be a caching issue. Kinda weird, though, don't remember this happening before. With browsers getting so many updates, maybe something was changed. Cleared the browser cache and updates are OK. Well, back to work. Thanks.
July 22, 2016 at 7:55 am in reply to: After update to genesis 2.3.0 genesis_prev_next_post_nav does not work anymore #190003paulcParticipantNice fix mairagall. Works great. Thanks!
July 1, 2014 at 12:06 pm in reply to: Genesis 2.1.0 Breaks Subtitles on Featured Posts Widget #112473paulcParticipantIn lib/widgets/featured-post-widget.php:
//Old code Genesis 2.0.2 - works:
`if ( ! empty( $instance['show_title'] ) ) {
if ( genesis_html5() )
printf( '<h2 class="entry-title"><a href="%s" title="%s">%s</a></h2>', get_permalink(), the_title_attribute( 'echo=0' ), get_the_title() );
else
printf( '<h2><a href="%s" title="%s">%s</a></h2>', get_permalink(), the_title_attribute( 'echo=0' ), get_the_title() );}`
//New code Genesis 2.1.0 - broken:
`if ( ! empty( $instance['show_title'] ) ) {
$title = get_the_title() ? get_the_title() : __( '(no title)', 'genesis' );
if ( genesis_html5() )
printf( '<h2 class="entry-title"><a href="%s">%s</a></h2>', get_permalink(), esc_html( $title ) );
else
printf( '<h2><a href="%s">%s</a></h2>', get_permalink(), esc_html( $title ) );}`
Now, I just need to determine if the change is trivial and can be reversed or if it will cause some other issues elsewhere.
paulcParticipantHaven't tried on an iPhone, but my Droid Razr and Amazon Kindle both have the issue with these dropdowns. Could be something not noticed during development since most of it seems to be done on Apple products. Interesting.
paulcParticipantI am setting up the Metro theme on a test site and I have this same issue you're having.
I have a menu I can use on non-WP sites, on a smartphone if you touch the main menu item, the dropdown appears, just like a mouse hover on a desktop or laptop, and waits for you to touch another selection before going there. If StudioPress has a solution for this I would prefer to incorporate that in the theme, but in the meantime, I'm going to try to hack this other menu into the WP site and see if I can make it work.
I think a lot of people would like to see this feature in StudioPress. I'll keep you posted on what I figure out, but if anyone else has a solution, please let us know.
-
AuthorPosts