Forum Replies Created

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • in reply to: Remove "STYLED DATE" from post view #2298
    karat
    Participant

    You can hide the date and the number of comment by using:

    .entry-meta.ht-post-info {
    display: none;
    }

    in reply to: Portfolio categories title position #2259
    karat
    Participant

    Where do you want to move it?

    in reply to: Create new Layout #2258
    karat
    Participant

    For a full-width layout, just pick the layout without the side bar under the Sidebar Layout (it is on each page/post).

    You can hide the title by clicking off “Display Site Title and Tagline” under general settings in the customizer.

    You can hide the nav using css, paste the code below in the additional css box.

    nav#ht-site-navigation {
    display: none;
    }

    Hope this helps.

    in reply to: Remove "STYLED DATE" from post view #2257
    karat
    Participant

    Hi-
    You can hide the date by pasting the code below in the additional CSS section.

    span.entry-date.published.updated {display:none;
    }

    If you want to hide the date on the home page add:
    .ht-blog-date {
    display:none;
    }

    in reply to: Re-order Homepage #2227
    karat
    Participant

    Hi-
    I just found out it is now in a file called:
    total-functions.php
    If you are working with a child theme, paste the below in your functions php and change the order to what you want.
    Hope this helps!

    if( !function_exists(‘total_home_section’) ){
    function total_home_section(){
    $total_home_sections = apply_filters(‘total_home_sections’,
    array(

    ‘slider’,
    ‘about’,
    ‘featured’,
    ‘blog’,
    ‘portfolio’,
    ‘service’,
    ‘team’,
    ‘counter’,
    ‘testimonial’,
    ‘logo’,
    ‘cta’
    )
    );

    return $total_home_sections;
    }
    }

    in reply to: Reordering Home Page Sections #2225
    karat
    Participant

    Thanks! I see it now.

Viewing 6 posts - 1 through 6 (of 6 total)