themehall
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Omega] Full width photos as featured image for post.Hi Evan,
To make full width featured image on singular post, you can use Code Snippets plugin, create a snippet using the code below and activate.add_action('omega_after_header', 'omega_fullwidth_featured'); function omega_fullwidth_featured() { if ( has_post_thumbnail() and is_singular("post")) { the_post_thumbnail('full'); } }if you want to add a slider instead of featured image, you need to replace the_post_thumbnail function with your slider function.
Forum: Themes and Templates
In reply to: [Me] Manual "read more"Awesome. We are looking into this weirdness
Forum: Themes and Templates
In reply to: [Me] Manual "read more"Can you try to change the [Read more…] more with other text, maybe
read more…
Forum: Themes and Templates
In reply to: [Me] Manual "read more"Hi,
Go to “Appearance > Customize > Posts” and choose “Display Full Post”. Then you can insert your More tag via WordPress editor.Forum: Themes and Templates
In reply to: [Composer] Post author not displayingNew version of Composer theme with fixes has been uploaded for review. Feel free to download and try.
Forum: Themes and Templates
In reply to: [Composer] Post author not displayingHi, did you customize the theme? Can you post your site url?
Forum: Themes and Templates
In reply to: [Shopping] Blogroll with LOAD MORE – possible?Hi kunststoffat, your active theme doesn’t looks like our free shopping theme. Please contact the theme author to ask about the possibility.
Forum: Themes and Templates
In reply to: [Family] Navigation Menu on Mobile and Tablets does'nt workHi, I don’t see the init.js in the html source. Please make sure that you include init.js in your child theme js folder.
Forum: Themes and Templates
In reply to: [Omega] infinite scrollingHi, no it doesn’t by default. But you can use jetpack plugin. It has infinite scroll feature.
Enabling Infinite Scroll is very similar to adding support for post thumbnails. You can extend Omega capabilities using Code Snippets and add below snippet.
/** * Add theme support for infinite scroll. * * @uses add_theme_support * @return void */ function omega_infinite_scroll_init() { add_theme_support( 'infinite-scroll', array( 'container' => 'content', ) ); } add_action( 'after_setup_theme', omega_infinite_scroll_init' );Forum: Themes and Templates
In reply to: [Family] Site Update Malfunction?Please try this
center the content
.content { text-align: center; }center the header
.entry-header { text-align: center; }Forum: Themes and Templates
In reply to: [Family] Site Update Malfunction?The code above is to remove sidebar.
Can you try this instead?
.home .content, .singular-page .content { padding-right: 0; width: 100%; }Forum: Themes and Templates
In reply to: [Family] Site Update Malfunction?Hi santomian,
There are two ways to center the page:
1. Edit the page and choose “Full-width, No Sidebar” template. You need to do it on each pages.
2. If you want to center the page globally, go to “Appearance > Customize > CSS” and drop below code:.singular-page .content { padding-right: 0; width: 100%; }Please give a try and let us know how it goes.
Forum: Themes and Templates
In reply to: [Omega] Site Title ReplacementHi Patrick, you change your site title with logo via Customizer. It’s a part of Omega theme.
Go To “Appearance > Customize > Branding”, upload your logo and Save.Hope that helps.
Forum: Themes and Templates
In reply to: [Omega] fix mobile responsiveness issuesThat true. That way you don’t have to load the media query stylesheet twice.
Anyway, enqueue the parent style like what you are doing now is not a bad idea either. Adding another css file won’t hurt your site. So if you feel more comfortable with your current approach, just make sure that your custom CSS won’t override the responsive part or Omega
Forum: Themes and Templates
In reply to: [Omega] fix mobile responsiveness issuesYou can safely remove the code from functions.php. If that’s the only code in functions.php, you can remove the file. Style.css is the only required file. You can add functions.php if you want to add custom php code.