Move 3 Colume up and add recent post below 3 colume

Discussion in 'Cloriato WordPress Theme' started by stepplus3491788, Mar 18, 2014.

Thread Status:
Not open for further replies.
  1. stepplus3491788

    stepplus3491788 Guest

    Joined:
    Mar 4, 2014
    Messages:
    25
    Likes Received:
    1
    Hi Support,

    1) I do not need to use 2 column. Then is it possible to delete 2 column as attached image file name: 3column.jpg
    2) I have a lot of artibles to post in website as knowledge. Then Is it possible to have post area below 3 Column. When I add post, It will show automaticly on front page as attached file name: below3Post.jpg
     

    Attached Files:

  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    1. Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .home_content_wrapper > div.feature_content > div.two_third.feature_box {
    display: none;
    }
    .container_24 > div.grid_24.home_content_wrapper > div.feature_content > div.one_third.last {
    display: none;
    } 
    2. You can try Special Recent Posts plugin for this issue.
    Download it from the link given below and install it from the Plugins panel (Plugins ->Add New ->Upload) in your Dashboard.
    http://wordpress.org/plugins/special-recent-posts/
     
  3. stepplus3491788

    stepplus3491788 Guest

    Joined:
    Mar 4, 2014
    Messages:
    25
    Likes Received:
    1
    Hi Piyush,

    Thank for great information.

    I already downloaded plugin: special-recent-post. That this will good to work with widget for drag and drop. However I need post in area below 3 columns. How can I do so with simple way? refer to picture: Below3post.jpeg

    Regards,

    Surachai K.
     
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Activate the Special Recent Posts plugin.
    After that go to front-page.php present in your theme directory and add the code given below

    Code:
     <?php
    // Defining widget options.
    $args = array(
        'post_limit'       => 3,
        'post_random'      => 'yes'    
    );
     
    // Function call.
    special_recent_posts($args);
    ?>
    

    check image for reference

    2014-03-19_1144.png

    This will solve your issue.



    Thanks & Regards
    Gourav Shrivastava
     
  5. stepplus3491788

    stepplus3491788 Guest

    Joined:
    Mar 4, 2014
    Messages:
    25
    Likes Received:
    1
    Great, Thank A million Gourav and InkTheme Support Team.
     
    Piyush likes this.
Thread Status:
Not open for further replies.

Share This Page