themehit
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Lifestyle] Blog pages full width?Hi, this is an easy tweak. Go to “Appearance > Customize > CSS” and drop this code
.content { width: 100%; padding-right: 0; }Cheers
Insert below code into functions.php will solve your issue.
add_action( 'omega_entry', 'lifestyle_edd_featured_image' ); function lifestyle_edd_featured_image() { if ( 'download' == get_post_type() ) { if ( has_post_thumbnail() ) { the_post_thumbnail(); } } }Please note that lifestyle theme is not created specifically for EDD. So you need to make some customization
Forum: Themes and Templates
In reply to: [Lifestyle] Easy Digital Downloads Featured Image not showingHi, try insert this code into functions.php
add_action( 'omega_entry', 'lifestyle_edd_featured_image' ); function lifestyle_edd_featured_image() { if ( 'download' == get_post_type() ) { if ( has_post_thumbnail() ) { the_post_thumbnail(); } } }Forum: Themes and Templates
In reply to: [Omega] Omega 1.12.0 theme and WordPress 4.5.2Hi, it looks like you are using another Omega theme, not this free Omega theme. Please contact the theme author where you purchased the theme.
Forum: Themes and Templates
In reply to: [Omega] How to make full width contentMaking it full width is an easy CSS tweak. Go to “Appearance > Customize > CSS” and drop this code
.content { width: 100%; }Forum: Themes and Templates
In reply to: [Omega] Visual Editor not showing uphi, you are not using this free Omega. Please contact the theme author where you purchased your premium theme.
Forum: Themes and Templates
In reply to: [Lifestyle] How to activate mobile versionDid you customize the theme? I saw the Media Queries section was modified.
@media screen and (max-width: 8px) {Please check the original style.css. It should be
@media screen and (max-width: 768px) {Forum: Themes and Templates
In reply to: [Lifestyle] White bars under iconsHi, I don’t see white bars, just red background. Did you fix it?
Forum: Themes and Templates
In reply to: [Omega] Omega Theme locate images into headerThanks for sharing your snippet. Glad that work for ya 🙂
Forum: Themes and Templates
In reply to: [Lifestyle] how to make the headimage into slideshowYes you can use any slideshow plugin and insert your slideshow widget / shortcode into “Home Banner” widget area (Go to “Appearance > Widgets”)
Forum: Themes and Templates
In reply to: [Lifestyle] Default related postsHi, please ask the Zemanta plugin author directly. We don’t use that plugin
Forum: Themes and Templates
In reply to: [Lifestyle] Space missing in author bylinePlease upgrade your omega theme via WordPress admin to fix the issue.
Forum: Themes and Templates
In reply to: [Lifestyle] Space missing in author bylineHi, there is a space after “by “. Can you post your site url?
Forum: Themes and Templates
In reply to: [Lifestyle] Menu bar missing on mobileI check your site, I can see the default black menu bar (drop down) via mobile.
Forum: Themes and Templates
In reply to: [Lifestyle] How to activate mobile versionHi, mobile version (responsive) should work automatically. Could you provide your site url?