kmuth
Forum Replies Created
-
Excellent. Glad to have been able to help! It’s a great plugin.
Thanks for your quick reply. There’s a missing conditional at line 2320 of Post-List-2.php, so the value of metaPosition is getting ignored. Restoring the conditional there and at line 2343 fixed it for me.
// Meta if( $attr['metaPosition'] =='top' ) { include ULTP_PATH.'blocks/template/meta.php'; } // Title if ($title && $attr['titleShow'] && $attr['titlePosition'] == 0) { include ULTP_PATH.'blocks/template/title.php'; } // Excerpt if(($idx == 0 || $attr['showSmallExcerpt']) && $attr['excerptShow']) { if ( $attr['showFullExcerpt']== 0 ) { $post_loop .= '<div class="ultp-block-excerpt">' .ultimate_post()->excerpt($post_id, $attr['excerptLimit'] ).'</div>'; } else { $post_loop .= '<div class="ultp-block-excerpt">'.get_the_excerpt().'</div>'; } } // Read More if ($attr['readMore'] && ($idx == 0 || $attr['showSmallBtn'])) { $post_loop .= '<div class="ultp-block-readmore"><a href="'.$titlelink.'">' ($attr['readMoreText'] ? $attr['readMoreText'] : __( "Read More", "ultimate-post" )).ultimate_post()- >svg_icon($attr['readMoreIcon']).'</a>. </div>'; } // Meta if( $attr['metaPosition'] =='bottom' ) { include ULTP_PATH.'blocks/template/meta.php'; }
Yes, reducing the default height solved the ‘close’ button issue on small mobile screens. Thank you!
I’ve now tested on Safari, Firefox, and Chrome for iPad, and none scroll popup content. Again, working perfectly on other devices.
Forum: Themes and Templates
In reply to: [Harmonic] Main navigation menu disappearedResolved. Something was broken in my child theme css. Wiped the file, redid it, and voila. Banner returned.
Forum: Themes and Templates
In reply to: [Harmonic] Main navigation menu disappearedAddendum: The menu shows up in mobile and tablet views. Media query problem?
Forum: Themes and Templates
In reply to: [Zerif Lite] How to set custom og:image for home page?liznz, how did you do it? I’m having the same problem.
Forum: Themes and Templates
In reply to: [Zerif Lite] Front Page Featured Image for Social MediaApologies, my site: https://knowtheory.org
Forum: Hacks
In reply to: Login RedirectCheers! Thanks for the help bcworkz.
Forum: Hacks
In reply to: Login RedirectAh, yes… the default works great, if someone’s logging in from, say, a comment section. But when they login from the menu, it sends them to the Dashboard. I want to keep them on the front end.
Forum: Hacks
In reply to: Login RedirectThanks for this, bcworkz, but I’ve tried inserting
$_SERVER['HTTP_REFERER']
in place ofhome_url()
, which just loops the user back to the login page.