Han
Forum Replies Created
-
Forum: Plugins
In reply to: [Visual CSS Style Editor] Pro version with Extended LicenseInclude it in a theme looks like a better solution. I see that you have provided integration option.
add_site_option( 'YP_PART_OF_THEME', 'true' );
Thanks for your confirmation.
Forum: Themes and Templates
In reply to: [Church] Home Banner widget area not showing upHi, please check this forum post for resolution
Forum: Themes and Templates
In reply to: [Church] 0.7.5 upgrade broke banner slideshowHi, I fixed this in version 0.7.6, submitted it last week. You’ll get update notification in a few days via WP admin or you can download latest church theme here and update it manually.
If you want to fix it manually, please find church_banner function in themes/church/functions.php and replace with this,
function church_banner() { ?> <div class="banner"> <div class="wrap"> <?php if(is_front_page() && is_active_sidebar( 'banner' ) ) { dynamic_sidebar( 'banner' ); } elseif ( !is_front_page() && get_theme_mod( 'church_header_home' ) ) { echo ''; } else { // get title $id = get_option('page_for_posts'); if ( is_day() || is_month() || is_year() || is_tag() || is_category() || is_singular('post' ) || is_home() ) { $the_title = get_the_title($id); } else { $the_title = get_the_title(); } if (( 'posts' == get_option( 'show_on_front' )) && (is_day() || is_month() || is_year() || is_tag() || is_category() || is_singular('post' ) || is_home())) { church_get_header_image(); } elseif(is_home() || is_singular('post' ) ) { if ( has_post_thumbnail($id) ) { echo get_the_post_thumbnail( $id, 'full' ); } else { church_get_header_image(); } } elseif ( has_post_thumbnail() && is_singular('page' ) ) { the_post_thumbnail(); } else { church_get_header_image(); } } ?> </div><!-- .wrap --> </div><!-- .banner --> <?php }
Forum: Reviews
In reply to: [Church] Theme is currently broken with no fixHi Explorz,
Please check this support thread for resolution. That should fix your issue. Still trying to response all emails post holiday, clean up inbox. Happy New Year!Forum: Reviews
In reply to: [Church] Good BUT HEADER IMAGE NOT DISPLAYINGThanks for your report and sorry about the issue. Please check the resolution at this support thread
Forum: Themes and Templates
In reply to: [Church] Sudden header Image Issue in WP 4.4Guys sorry about the issue. New version of church theme (v 0.7.5) has been uploaded for review.
The change was in church_banner function in functions.php.
Since it might take a couple days before update notification appear on your WordPress admin, pou can download the latest version from the link above, or replace your church_banner function with .function church_banner() { ?> <div class="banner"> <div class="wrap"> <?php if ( !is_front_page() && get_theme_mod( 'church_header_home' ) ) { echo ''; } else { // get title $id = get_option('page_for_posts'); if ( is_day() || is_month() || is_year() || is_tag() || is_category() || is_singular('post' ) || is_home() ) { $the_title = get_the_title($id); } else { $the_title = get_the_title(); } if (( 'posts' == get_option( 'show_on_front' )) && (is_day() || is_month() || is_year() || is_tag() || is_category() || is_singular('post' ) || is_home())) { church_get_header_image(); } elseif(is_home() || is_singular('post' ) ) { if ( has_post_thumbnail($id) ) { echo get_the_post_thumbnail( $id, 'full' ); } else { church_get_header_image(); } } elseif ( has_post_thumbnail() && is_singular('page' ) ) { the_post_thumbnail(); } else { church_get_header_image(); } } ?> </div><!-- .wrap --> </div><!-- .banner --> <?php }
Let me know how it goes. Thanks & Happy New Year!
Forum: Themes and Templates
In reply to: [Church] Sudden header Image Issue in WP 4.4Hi, new version has been submitted to fix the issue. It will be available for update once approved. Thanks for your report
Forum: Plugins
In reply to: [Rating System] Error ActivatingThank you Juliette! Omega theme is being updated with the latest version of the TGMPA library. It will be available for public once approved.
Forum: Themes and Templates
In reply to: [Omega] Lifestyle theme has an issueHi, thanks for your report. The new version has been submitted for review. You’ll get update notification once approved. Or, you can download the latest version of Omega theme here.
Forum: Themes and Templates
In reply to: [Omega] Posts don't show properlyAwesome! And I love your custom omega child theme ??
Forum: Themes and Templates
In reply to: [Omega] Posts don't show properlyif you want to display posts on front page, you don’t need to setup a static front page. Simply choose “Your latest posts” for “Front page displays”
Forum: Themes and Templates
In reply to: [Me] How to setup categories in the widget area?I can’t your site
Error: “The connection has timed out”Forum: Themes and Templates
In reply to: [Omega] Dark bar on Mobileyou can remove border-bottom attribute below
ul.menu-primary a { padding-top: 16px; padding-bottom: 16px; border-bottom: 1px solid #EEE; }
Forum: Themes and Templates
In reply to: [Omega] Bug on the menu for mobilesPlease check the original Church Demo. It always show “Navigation”. That’s default behavior of tinynav.js.
Forum: Themes and Templates
In reply to: [Omega] Bug on the menu for mobilesWell, the menu has been customized. Please ask the person who customized it.