Tagged: 

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #107530
    caulon
    Participant

    Not sure why it is designed to show grid content before the posts, is there a way to make it show below posts?

    #107549
    Mahesh
    Keymaster

    @caulon: For this, you’ll need to create a child theme. You can find more details on creating child theme HERE. Then in your child theme’s functions.php add the following codes.

    add_action( 'init', 'fabulous_fluid_child_move_featured_grid' );
    function fabulous_fluid_child_move_featured_grid(){
        remove_action( 'fabulous_fluid_after_header', 'fabulous_fluid_featured_grid_content', 30 );
        add_action( 'fabulous_fluid_after_content', 'fabulous_fluid_featured_grid_content', 55 );
    }

    Regards,
    Mahesh

    #107572
    caulon
    Participant

    That code ended up making the featured grid content disappear from the homepage, it did work to move it above the featured grid content in the post page but it is still below the featured content, what code would work to also move it above the featured content and not make it disappear from homepage?

    #107584
    Mahesh
    Keymaster

    @caulon: The Grid should have displayed in the homepage too, just below the content. I tested the same in our server and is working fine.
    For Featured Content below the content, go to Dashboard=> Appearance=> Customize=> Featured Content and check Check to Move above Footer option.

    Regards,
    Mahesh

    #107629
    caulon
    Participant

    I did get featured content to move below posts by selecting move above footer. The featured grid content does dissapear though on homepage still, I have only show on homepage checked.

    #107630
    caulon
    Participant

    Actually that code makes the featured grid content disappears from entire site.

    #107631
    caulon
    Participant

    So it disapears when you check the box….Check to disable content( posts/content and primary sidebar) on homepage at Appearance – Customize – Theme Options – Homepage/Frontpage Options…

    Is there a way to modify code to get around that since I want to disable posts on homepage?

    #107710
    Mahesh
    Keymaster

    @caulon: Well, you can hide the content from the homepage with Custom CSS. Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:

    .home #content-wrapper {
        display: none;
    }

    Regards,
    Mahesh

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Make Posts show above Featured Grid Content’ is closed to new replies.