sumowebsite
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Omega] Thumbnails in the most recent posts previewHi, you can insert your thumbnail images into post (content) editor. It won’t show up on your blog’s main page, only on detail post.
Go to “Appearance > Customize > Posts” to manage the optionForum: Themes and Templates
In reply to: [Family] Navigation Menu on Mobile and Tablets does'nt workHi Helle,
I see that you customize the custom theme by creating another child theme. Great approach!
You just forgot to include js/init.js from custom theme into your new child theme. You can find the sample code in /custom/functions.phpForum: Themes and Templates
In reply to: [Church] Images not showing in Facebook postsI saw the image, https://screencast.com/t/xuAddi2riLLf
Forum: Themes and Templates
In reply to: [Church] Images not showing in Facebook postsWhat is your site url?
Forum: Themes and Templates
In reply to: [Omega] Google Analytics CodeGoogle Analytics is plugin territory. The plugin mentioned above works on Omega. Just make sure it’s activated and setup properly
Forum: Themes and Templates
In reply to: [Church] Images not showing in Facebook postsHi jennhale,
Facebook post is plugin territory. Please try to activate this pluginFacebook Open Graph, Google+ and Twitter Card Tags
Hope this solve your issue. Let me know how it goes
Forum: Themes and Templates
In reply to: [Family] Moving entry metaPlease follow this simple steps to Moving entry meta
1. create a blank files called entry-byline.php and entry-footer.php in family/partials directory
2. insert this code into entry-footer.php<div class="entry-meta"> Published on <time <?php omega_attr( 'entry-published' ); ?>><?php echo get_the_date(); ?></time> <span <?php omega_attr( 'entry-author' ); ?>><?php echo __('by ', 'family'); the_author_posts_link(); ?></span> <?php echo omega_post_comments( ); ?> <?php edit_post_link( __('Edit', 'family'), ' | ' ); ?> </div><!-- .entry-meta -->
Also, please make sure you use the latest Omega theme
Forum: Themes and Templates
In reply to: [Omega] Adding a logout link to my footer/** * default footer insert filter */ function omega_default_footer_insert( $settings ) { if ( is_user_logged_in() ) { return '<p class="copyright"> <a href="https://bibliophone.com/disclaimer/">Disclaimer</a> | <a href="https://bibliophone.com/privacy-policy/">Privacy Policy</a> | <a href="<?php echo wp_logout_url( get_permalink() ); ?>" title="Logout">Logout</a> </p>'; } else { return '<p class="copyright"> <a href="https://bibliophone.com/disclaimer/">Disclaimer</a> | <a href="https://bibliophone.com/privacy-policy/">Privacy Policy</a> </p>'; } }
Forum: Themes and Templates
In reply to: [Family] Move Header above NavigationIt’s pretty easy to move header image above the navigation
If you don’t want to override family child theme to maintain future update, use Code Snippets plugins run this snippetfunction custom_family_setup() { remove_action( 'omega_after_header', 'omega_get_primary_menu' ); add_action( 'omega_after_header', 'omega_get_primary_menu', 11 ); } add_action( 'after_setup_theme', 'custom_family_setup', 12 );
Hope that helps.
Forum: Fixing WordPress
In reply to: Logo is too big how do I make it smaller.Looks great! ??
Forum: Plugins
In reply to: [WooCommerce] Different cart for each shopI never seen anything like that. I’d suggest to simplify your checkout process to increase conversion. Unless you have a good reason, your customer will get confused. Why one cart is not enough?
Forum: Themes and Templates
In reply to: [Omega] Logo not appearing in the Branding HeaderAwesome ??
Forum: Themes and Templates
In reply to: [Omega] Logo not appearing in the Branding HeaderYou have to input the Site Title. The Site Title is displayed in the title bar of a web browser as well and logo alt attribute (If you add logo). So, don’t remove site title
Forum: Fixing WordPress
In reply to: Logo is too big how do I make it smaller.Hi, the problem is in the logo image. There are lots of white space around the logo. You need to crop the space and reduce the logo size a bit.
Forum: Plugins
In reply to: [WooCommerce] Different cart for each shopHi Vincent, I am not sure if there is a plugin for that.
But you can create a network (multisite) to open three shops in single WordPress installation.