Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #50513
    bobar22
    Member

    Hello, I am trying to replace the position in the home page only so:

    content-sidebar-wrap is just after the home-message

    and below the content-sidebar-wrap there will be the featued-content-wrap

    And also, in the slider I want to cancel the linking to the posts, how do I do that?

    (you can just tell me the guidelines if you wish to do so like what lines in which file)

    can you please assist?

    #50515
    bobar22
    Member

    by featued-content-wrap i mean the featured-post

    and about the links never mind

    #50578
    Sakin
    Keymaster

    @bobar22: Sorry your question is confusing. By default “Homepage Headline” is above “Homepage Featured Content”. So, I don’t know what you mean.

    In catch Kathmandu Pro, if you are using Featured Post Slider then it will link to Post. There is no option to remove the link. If you want sliding image without the link then you can use Featured Image Slider. Just go to “Appearance => Theme Options => Featured Slider => Slider Options”, then select Image Slider in Select Slider Type and save changes. Then you can upload image in “Featured Image Slider Options”.

    #50732
    bobar22
    Member

    Hi I was referring to their class ID names, featured-post is the 4 squares below the big slider and below that there is the actual page content, now I want the page content to show after the image slider and then below that show the 4 sqaures with the featured posts

    #50784
    Sakin
    Keymaster

    @bobar22: OK then you need to build child theme first. You can read about child theme and download sample child theme from http://catchthemes.com/blog/create-child-theme-wordpress/ . Then you can add the following code in your child theme functions.php file:

    <?php
    // Removing the Default Action Hook
    function unhook_catchkathmandu_functions() {
    	remove_action( 'catchkathmandu_before_main', 'catchkathmandu_homepage_featured_position', 10 );
    }
    add_action( 'init', 'unhook_catchkathmandu_functions' );
    
    add_action( 'catchkathmandu_content_sidebar_start', 'catchkathmandu_homepage_featured_display', 15 );
    #50799
    bobar22
    Member

    Hi thanks for the reply, yeah i do have a child theme and adding it to the functions didn’t change the positions, does it matter if I am using the free theme? because now i see im in the premium forum

    #50803
    Sakin
    Keymaster

    @bobar22: It should work fine. I just tested in my server with Catch Kathmandu Free and now my Featured Post is inside <div id="content-sidebar-wrap">

    Post in your site URL and have you done anything else in child theme.

    #50895
    bobar22
    Member

    Yeah it is inside the “<div id=”content-sidebar-wrap”>” now but how do I move it below the text? see the screen shot:

    http://prntscr.com/5zq2y9

    #50914
    Sakin
    Keymaster

    @bobar22: For that it’s complicated and you might need to consider hiring developer to do this customization. First need to copy the function catchkathmandu_homepage_featured_content() from catchkathmandu-fucntions.php files and then edit the code in your child theme.

    #51146
    bobar22
    Member

    Aw okay 🙁 i thought it seems easy to just replace positions

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘Replacing position of content in home page’ is closed to new replies.