han

Forum Replies Created

Viewing 15 posts - 181 through 195 (of 434 total)
  • Author
    Posts
  • in reply to: Disable Sidebars On Mobile ( Omega Theme) #2428
    han
    Keymaster

    Do you see the sidebar when WP touch disabled?

    in reply to: missing prev. post and next post link #2427
    han
    Keymaster

    You can download Omega 1.0.3 here or wait WPTRT (WP Theme Review Team) to update the theme repository.

    in reply to: Omega 1.0.0 Updates #2422
    han
    Keymaster

    Go to church theme functions.php and replace
    add_theme_support( 'omega-footer-widgets', 4 );
    with
    add_theme_support( 'omega-footer-widgets', 3 );

    in reply to: Posts of one category op home #2419
    han
    Keymaster

    Insert this code into functions.php, and replace ‘9’ with your selected category id.

    function my_home_category( $query ) {
     if ( $query->is_home() && $query->is_main_query() ) {
     $query->set( 'cat', '9');
     }
    }
    add_action( 'pre_get_posts', 'my_home_category' );
    in reply to: still getting comments #2418
    han
    Keymaster

    In the Settings>discussion, you’ll see this option: “Allow people to post comments on new articles (These settings may be overridden for individual articles.)” If this box is not checked, all future post comment will be disabled.
    To change the comment settings for a post or page you already published, first locate the post/page you want to edit on the Posts or Pages page, then, locate the Discussion module on the edit screen, and either check or uncheck the options it offers.
    To reduce spam comment, you can use akismet plugin, or cookies for comments.

    in reply to: Custom – header image #2417
    han
    Keymaster

    To restore default image, go to “Appearance > Header” and click “Restore Original Header Image”

    in reply to: Church Theme Navigation #2416
    han
    Keymaster

    Go to “Appearance > Customize > CSS and drop this code

    .omega-nav-menu {
        text-align: center;
    }
    in reply to: Disable Sidebars On Mobile ( Omega Theme) #2415
    han
    Keymaster

    I don’t see any sidebar from my iphone. Did you fixed it?

    in reply to: missing prev. post and next post link #2414
    han
    Keymaster

    This option is now added to Omega 1.0.3. Go to “Appearance > Customize > Posts” to enable the single post links

    in reply to: Remove Header #2393
    han
    Keymaster

    Go to “Appearance > Customize > CSS, and drop this code

    .site-header {display: none;}
    .site-inner {padding-top: 0;}
    
    in reply to: Footer #2391
    han
    Keymaster
    in reply to: Move menu after (below) branding #2364
    han
    Keymaster

    Insert these lines into alpha_theme_setup function.

    remove_action( 'omega_before_header', 'omega_get_primary_menu' );
    add_action( 'omega_after_header', 'omega_get_primary_menu' );
    in reply to: make footer \"stick\" to bottom #2363
    han
    Keymaster

    Try this

    .site-footer {
        border-top: 1px solid #F5F5F5;
        color: #666;
        padding: 20px 0px;
        text-align: center;
        position: fixed;
        bottom: 0px;
        width: 980px;
        background: #fff;
    }
    in reply to: Conflict with WPML? #2362
    han
    Keymaster

    The errors are not from Omega theme, please contact wpml support.

    in reply to: Remove "published on" from post. plain WP #2350
    han
    Keymaster

    You can find and replace the text in content.php and all content-postformat.php files.

Viewing 15 posts - 181 through 195 (of 434 total)