themehall
Forum Replies Created
-
Hi Pia, not sure I understand your question. That might not be part of the theme, maybe wordpress core or WooCommerce.
Forum: Themes and Templates
In reply to: [Church] Mobile Theme EditionHi Gamberine,
To upload your logo and change color, go to “Appearance > Customize”. You’ll find the settings there.Forum: Themes and Templates
In reply to: [Church] Problems using Metaslider as a Widget in Home Banner.Hi, it looks like Metaslider issue, please check the setting and find if there is responsive option or, don’t set the width to make it fluid.
Forum: Themes and Templates
In reply to: [Omega] Language file available?German translation is not available, but you can create your translation using tool like poedit.
Omega supports localizationForum: Themes and Templates
In reply to: [Omega] How to make submenus in the mobile menu toggleableHi, I have better and flexible alternative for you.
You can use this responsive menu plugin and customize the menu look and feel.Then, you need to disable Omega mobile menu via css, go to “Appearance > Customize > CSS” and insert this code
#menu-icon { display:none; }
Forum: Themes and Templates
In reply to: [Omega] Duplicate menuYou can use Code Snippets plugin and run below snippet
add_action( 'after_setup_theme', 'omega_custom_theme_setup',11 ); function omega_custom_theme_setup() { remove_action( 'omega_before_header', 'omega_get_primary_menu' ); }
Forum: Themes and Templates
In reply to: [Omega] switch arrangement of home page post contentYou can use Code Snippets plugin and run below snippet
add_action( 'omega_before_entry', 'omega_featured_image' ); function omega_featured_image() { apply_filters ( 'omega_featured_image' , printf( '<a href="%s" title="%s">%s</a>', get_permalink(), the_title_attribute( 'echo=0' ), get_the_post_thumbnail(get_the_ID(), get_theme_mod( 'image_size' ), array('class' => get_theme_mod( 'image_size' )) ) )); }
Then, go to “Appearance > Customize > Posts” and deactivate “Include the Featured Image?”
Forum: Themes and Templates
In reply to: mobile response issue for omega child theme called customNew version with fixes has been uploaded to wp repo
@screamingskull, a new version of Custom Theme with fixes has been uploaded to wp repo for review.
NextGEN Pro is a must have upgrade for a responsive lightbox.
Forum: Themes and Templates
In reply to: [Custom] NextGEN slide show is not mobile responsiveCan you try to update custom/style.css line 314 with this
img { height: auto; width: auto\9; /* IE8 */ }
Forum: Themes and Templates
In reply to: [Omega] Home Page paginationHi,
you can use Code Snippets plugin and insert below snippetfunction omega_child_theme_setup() { remove_action( 'omega_after_loop', 'omega_content_nav'); add_action( 'omega_after_loop', 'omega_child_content_nav'); } endif; // omega_child_theme_setup add_action( 'after_setup_theme', 'omega_child_theme_setup', 11 ); function omega_child_content_nav() { global $wp_query, $post; // Don't print empty markup on single pages if there's nowhere to navigate. if ( is_single() ) { $previous = ( is_attachment() ) ? get_post( $post->post_parent ) : get_adjacent_post( false, '', true ); $next = get_adjacent_post( false, '', false ); if ( (!$next && !$previous) ) return; } if ( is_singular() && !get_theme_mod( 'single_nav', 0 ) ) { return; } // Don't print empty markup in archives if there's only one page. if ( $wp_query->max_num_pages < 2 && ( is_home() || is_archive() || is_search() ) ) return; $nav_class = ( is_single() ) ? 'post-navigation' : 'paging-navigation'; ?> <nav role="navigation" id="nav-below" class="navigation <?php echo $nav_class; ?>"> <?php if ( is_single() && get_theme_mod( 'single_nav', 0 ) ) : // navigation links for single posts ?> <?php previous_post_link( '<div class="nav-previous alignleft">%link</div>', '<span class="meta-nav">' . _x( '←', 'Previous post link', 'omega' ) . '</span> %title' ); ?> <?php next_post_link( '<div class="nav-next alignright">%link</div>', '%title <span class="meta-nav">' . _x( '→', 'Next post link', 'omega' ) . '</span>' ); ?> <?php elseif ( $wp_query->max_num_pages > 1 && ( is_home() || is_archive() || is_search() ) ) : // navigation links for home, archive, and search pages ?> <?php // Don't print empty markup if there's only one page. if ( $GLOBALS['wp_query']->max_num_pages < 2 ) { return; } ?> <?php if ( get_next_posts_link() ) : ?> <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">←</span> Previous Posts', 'omega' ) ); ?></div> <?php endif; ?> <?php if ( get_previous_posts_link() ) : ?> <div class="nav-next"><?php previous_posts_link( __( 'Next posts <span class="meta-nav">→</span>', 'omega' ) ); ?></div> <?php endif; ?> <?php endif; ?> </nav><!-- #nav-below --> <?php }
Then you can adjust the css to right aligned the “Previous Posts”
.nav-previous { float:right; }
Forum: Themes and Templates
In reply to: [Omega] No Sidebar for Custom About PageHi angetam, There is an easier way to do it, you can copy sidebar.php into your child theme and modify it as you like.
Hope that helps ??Forum: Themes and Templates
In reply to: [Omega] Full width photos as featured image for post.That’s not our free Omega theme. Please contact the theme author where you purchased the theme.
Forum: Themes and Templates
In reply to: [Omega] Full width photos as featured image for post.Can you post your site url? Have you checked on blog post detail (not blog index)?
Forum: Themes and Templates
In reply to: [Omega] Full width photos as featured image for post.What do you mean by replacing “post” with your post title?
I tried the snippet above and it works to make full width featured image