Forum Replies Created
-
AuthorPosts
-
han
Keymasterhan
Keymaster@pixeltoko, add this code into your functions.php
// Add specific CSS class by filter add_filter('body_class','my_class_names'); function my_class_names($classes) { // add 'class-name' to the $classes array if(is_single()) $classes[] = 'page-template-full-width'; // return the $classes array return $classes; }Then edit sidebar.php, replace
if ( is_active_sidebar( 'primary' ) && !is_page_template('page-full-width.php') ) : ?>
with
if ( is_active_sidebar( 'primary' ) && !is_page_template('page-full-width.php') && !is_single() ) : ?>Use omega child theme is recommended.
Please note that next version of Omega will remove support for custom field Layout. The omega parent is simplified so we can create more unique child theme layout.han
Keymaster@Seth, you can install Omega Options plugin to have “Header and footer options” back. I’ll fix Live CSS option shortly.
@silvio, I’ll fix it shortly, please stay tune for next version.
@ckubs, documentation is on my TODO list.han
KeymasterIt looks like cache issue, try to clear cache. I have no experience with WP Super Cache. I use W3Total cache and it works just fine.
han
KeymasterI cannot reproduce the issue on iphone and desktop browser. omega_get_setting function is available. Does it work with Omega Parent theme?
han
KeymasterYou can add css code to highlight the current page menu item
.omega-nav-menu .current_page_item a, .omega-nav-menu .current-menu-item a { color: #000000; }han
KeymasterHi, you can install Omega Options plugin, then go to “Appearance > Theme options” to disable featured image.
han
Keymaster@ckubs, thanks for your suggestion. Most logos don’t need resize and will fit mobile screen nicely. If resize is required, simple css tweak will solve the problem.
han
KeymasterContent/sidebar is the default layout, so you don’t need to change anything
han
KeymasterUse this one
.singular .entry { margin-bottom: 10px; } .singular .navigation { display:none; }han
KeymasterYou need to add my custom css to “Appearance > Customize > CSS”. If you want to update style.css, I suggest to use “Omega Child theme“
han
KeymasterNo, your settings are stored in database. You can install the plugin if you want to change the settings.
han
KeymasterPlease delete the above and try this.
.singular .entry { margin-bottom: 10px; } .singular .navigation { display:none; }han
Keymasterthis is for ‘Shopping’ theme
-
AuthorPosts
