han

Forum Replies Created

Viewing 15 posts - 226 through 240 (of 434 total)
  • Author
    Posts
  • in reply to: Omega 0.9.6 – Updates #2137
    han
    Keymaster

    @ckubs, thanks for your feedback. I found a better way dealing with child theme flexibility. Will keep the layout option.

    @Lisa_Cat
    , The plugin requires Omega / Omega Child themes. you should activate the theme first.

    in reply to: Omega 0.9.6 – Updates #2121
    han
    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.

    in reply to: Omega 0.9.6 – Updates #2120
    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.

    in reply to: Mobile theme not working #2113
    han
    Keymaster

    It 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.

    in reply to: Mobile theme not working #2111
    han
    Keymaster

    I cannot reproduce the issue on iphone and desktop browser. omega_get_setting function is available. Does it work with Omega Parent theme?

    in reply to: Highlighting Menu Item for Current Page #2109
    han
    Keymaster

    You 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;
    }
    in reply to: Removing featured images from the homepage #2108
    han
    Keymaster

    Hi, you can install Omega Options plugin, then go to “Appearance > Theme options” to disable featured image.

    in reply to: Omega 0.9.6 – Updates #2102
    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.

    in reply to: Omega 0.9.6 – Updates #2101
    han
    Keymaster

    @silvio, Can you post your page / site url?

    in reply to: Omega 0.9.6 – Updates #2098
    han
    Keymaster

    Content/sidebar is the default layout, so you don’t need to change anything

    in reply to: How do I clear blank ? #2097
    han
    Keymaster

    Use this one

    .singular .entry {
        margin-bottom: 10px;
    }
    .singular .navigation {
        display:none;
    }
    in reply to: How do I clear blank ? #2093
    han
    Keymaster

    You need to add my custom css to “Appearance > Customize > CSS”. If you want to update style.css, I suggest to use “Omega Child theme

    in reply to: Omega 0.9.6 – Updates #2092
    han
    Keymaster

    No, your settings are stored in database. You can install the plugin if you want to change the settings.

    in reply to: How do I clear blank ? #2084
    han
    Keymaster

    Please delete the above and try this.

    .singular .entry {
        margin-bottom: 10px;
    }
    .singular .navigation {
        display:none;
    }
    in reply to: How to change header icon size? #2081
    han
    Keymaster

    this is for ‘Shopping’ theme

Viewing 15 posts - 226 through 240 (of 434 total)