How to remove pagination capability on homepage blog section

Home Forums Gillion Theme How to remove pagination capability on homepage blog section

Home Forums Gillion Theme How to remove pagination capability on homepage blog section

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    RESOLVED Posts
  • Brand911
    Participant

    In the page settings (bottom of edit page) for my home page, in the ‘Blog’ section, I would like to only show 3 posts and disable pagination. Currently there are only 3 choices:
    <div class=”fw-backend-option-label fw-col-xs-12 fw-col-sm-3 fw-col-lg-2″>
    <div class=”fw-inner fw-clearfix”><label for=”fw-option-page_blog_pagination_type”>Blog Pagination Type</label></div>
    </div>
    <div class=”fw-backend-option-input fw-backend-option-input-type-radio fw-clearfix fw-col-xs-12 fw-col-sm-9 fw-col-lg-10 width-type-auto”>
    <div class=”fw-inner fw-pull-left fw-clearfix”>
    <div class=”fw-inner-option fw-clearfix”>
    <div class=”fw-backend-option-descriptor fw-listening-started” data-fw-option-id=”page_blog_pagination_type” data-fw-option-type=”radio”>
    <div id=”fw-option-page_blog_pagination_type” class=”fw-option fw-option-type-radio”>
    <div><label for=”fw-option-page_blog_pagination_type-default”><input id=”fw-option-page_blog_pagination_type-default” checked=”checked” name=”fw_options[page_blog_pagination_type]” type=”radio” value=”default” /> Default per page</label></div>
    <div><label for=”fw-option-page_blog_pagination_type-button”><input id=”fw-option-page_blog_pagination_type-button” name=”fw_options[page_blog_pagination_type]” type=”radio” value=”button” /> Load More button (on click)</label></div>
    <div><label for=”fw-option-page_blog_pagination_type-infinite”><input id=”fw-option-page_blog_pagination_type-infinite” name=”fw_options[page_blog_pagination_type]” type=”radio” value=”infinite” /> Infinite loading (on scroll)</label></div>
    </div>
    </div>
    <div>I do not want any pagination there– just the 3 posts. How do I remove it?</div>
    <div>Thank you!</div>
    </div>
    </div>
    </div>

    Attachments:
    You must be logged in to view attached files.

    Solution for this topic

    Hi @Brand911,

     

    I hope you are well today and thank you for your question.

     

    You can remove it by adding the following CSS code in the Custom CSS code option of your theme on the below path.

     

    Admin Area -> Appearance -> Theme Settings -> Custom Code -> CSS Code

     

    #page-container .sh-pagination {
        display: none;
    }

     

    Best regards,
    Shufflehound team

    Brand911
    Participant

    Thank you!!

     

    You are most welcome here 🙂

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