sumowebsite
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Composer] Move the footer creditsHiya,
please check this on to modify the footer.Forum: Themes and Templates
In reply to: [Composer] Main page header like a normal pageHi Gio89,
You can do it easily. Go to “Appearance > Customize > CSS” and insert the following code.home .banner { padding: 90px 0; }
Hope that help.
Cheers
Forum: Themes and Templates
In reply to: [Omega] Full page when I click on the article linkAwesome!
And you English is not terrible. Be proud ??Forum: Themes and Templates
In reply to: [Family] Header image only on front pageHi,
That’s very easy to customize with just a few easy code. Please go to “Appearance > Customize > CSS”, and insert below code will do the magic..banner { display:none; } .home .banner { display:block; }
Hope you like it.
Cheers ??
Forum: Themes and Templates
In reply to: [Omega] Full page when I click on the article linkHi blogramma,
You can do it with a few css tweak.
Go to “Appearance > Customize > CSS” and drop this code..singular-post .content { width:100%; } .singular-post .sidebar-primary { display:none; }
Hope that helps ??
CheersForum: Themes and Templates
In reply to: [Omega] Image for the headerHi bryanaquino22,
It requires a little tweak to accomplish what you want in style without modify the theme.
Go to “Appearance > Customize > CSS”, and drop this code will do the magic.title-area { padding: 0px; } .site-header > .wrap { padding: 0px; max-width: 100%; }
It’s easy, isn’t it?
Cheers,
SumoForum: Themes and Templates
In reply to: [Me] Change font family for Navigation ButtonsHi Harrybo,
Go to “Appearance > Customize > CSS” and drop below code (change the font family as you like).omega-nav-menu a { font-family: Arial,sans-serif; }
You only need to copy (update) the outdated templates and transfer your customization (if any) into the updated templates.
Forum: Plugins
In reply to: [Fast Secure Contact Form] Can I just get rid of all those extra DIVs?Unfortunately that’s not possible without customizing the plugin
Forum: Themes and Templates
In reply to: [Family] Header image issueYou can do it by modifying family_get_header_image function to
function family_get_header_image() { if (get_header_image() && is_front_page()) { if (get_theme_mod( 'family_header_link' )) { echo '<a href="'.get_theme_mod( 'family_header_link' ).'"><img class="header-image" src="' . esc_url( get_header_image() ) . '" alt="' . get_bloginfo( 'description' ) . '" /></a>'; } else { echo '<img class="header-image" src="' . esc_url( get_header_image() ) . '" alt="' . get_bloginfo( 'description' ) . '" />'; } } }
Cheers
Forum: Themes and Templates
In reply to: [Family] Issues with entry meta and image resizingHi Helenolivas,
To move the “Leave a Comment”, you need to copy /partials/entry-byline.php and /partials/entry-footer.php from Omega theme into family theme folder, then edit as you need.<footer class="entry-footer"> <div class="entry-meta"> <?php omega_post_terms( array( 'taxonomy' => 'category', 'text' => __( 'Posted in: %s', 'family' ) ) ); ?> <?php omega_post_terms( array( 'taxonomy' => 'post_tag', 'text' => __( 'Tagged: %s', 'family' ) ) ); ?> <?php echo omega_post_comments( ); ?> </div><!-- .entry-meta --> </footer>
About the featured image size, it is controlled by this code in omega functions.php
omega_set_content_width( 640 );
You can use Code Snippets plugin and insert the snippet below,
function custom_family_setup() { omega_set_content_width( 665 ); } add_action( 'after_setup_theme', 'custom_family_setup', 11 );
Hope that helps.
Cheers,
SumoForum: Themes and Templates
In reply to: [Shopping] Creating a Child Theme of ShoppingHi Pia,
Is it allowed to create a new child theme out of the original Shopping Child theme?
> yesWould just like to confirm if it would NOT override the customizations of both the theme and the woocommerce after the Shopping theme update?
> Once you create your own child theme, it won’t be a shopping theme anymore, so shopping theme update won’t affect your child themeWill it also get the updates from the original Shopping theme & Woocommerce?
> Yes for Woocommerce, no for Shopping theme.Hope that helps.
Cheers,
SumoForum: Themes and Templates
In reply to: [Me] Disable READ MOREHi, it’s easy to do that. Please login to your WordPress admin , go to “Appearance > Customize”, click “Posts” tab, and select “Display full post”, click “Save & Publish”
Hope you like it ??Forum: Themes and Templates
In reply to: [Omega] MicrodataCool! Would you like to share your resolution here? Thanks
Forum: Themes and Templates
In reply to: [Omega] Child theme – header image croppingHi,
What child theme you use? Have you tried Firefox?