Tagged: 

Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #83877
    Carina
    Member

    Hi,
    I really apprichiate if someone help me to hide the blog posts from the front page. I dont need eihter an other static page contents inside the front page.

    An other question is that how can I change from the navigation the word HOME to another language?

    And the last, is it possible to change the color of the footer from white to black (with white texts)?

    http://www.happiradikaali.fi/test/

    #83880
    Mahesh
    Keymaster

    Hi @Carina,

    1. Removing blog posts from front page.
    For this change you have to create a child theme. You can find more details on creating child theme HERE. Then in child theme create a file index.php and add the following codes and save it.

    <?php
    /**
     * The main template file.
     *
     * This is the most generic template file in a WordPress theme
     * and one of the two required files for a theme (the other being style.css).
     * It is used to display a page when nothing more specific matches a query.
     * E.g., it puts together the home page when no home.php file exists.
     *
     * @package Catch Themes
     * @subpackage Catch Responsive
     * @since Catch Responsive 1.0
     */
    
    get_header();
    
    get_footer(); ?>

    2. Changing Home to another language.
    Go to Dashboard=> Appearance=> Menus” and change Home label to another language home text manually.

    3. Changing footer color to black with white text.
    Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS.

    #site-generator {
        background-color: none repeat scroll 0 0 #000;
        color: #fff;
    }

    Regards,
    Mahesh

    #83989
    Carina
    Member

    Hi Mahesh,

    thank you for help and for you quick response! I have still almost the same problems.

    1. I made a child theme but the blog post is still in the front page.

    2. I changed “Home” to other language, but there happened something very wired, the blog-page use now the same page that frontpage. When I look the “blogi” in editor it looks normal, but now it has the same url that frontpage.

    3. I put the code to Theme Options, but the footer is still white.

    http://www.happiradikaali.fi/test/

    What did I do wrong??

    #84021
    Mahesh
    Keymaster

    Hi @Carina,

    1. You haven’t activated the child theme. Go to “Dashboard=> Appearance=> Themes” and activate Catch Responsive Child theme.

    2. It seem you’re using static front page. Go to “Dashboard=> Appearance=> Customize=> Static Front Page” and select Your Latest Post from Front Page Displays option and click save.

    3. Please replace the above CSS with the following. The background-color should only contain hex value. It will fix the footer color.

    #site-generator {
        background-color: #000;
        color: #fff;
    }

    Let me know if this helps.

    Regards,
    Mahesh

    #84053
    Carina
    Member

    Hi Mahesh,

    thank you for help!! Now other things are ok, but when I go to “Themes” I can´t see the Catch REsponsive Child theme. Do I have to load it from somewhere?

    – Carina

    #84062
    Mahesh
    Keymaster

    Hi @Carina,

    In the earlier reply, you’ve mentioned you’ve made child theme. If you haven’t created child theme, create a child theme. You can find more details on creating child theme HERE. After creating child theme, you’ll see it displayed in “Dashboard=> Appearance=> Themes”.

    Regards,
    Mahesh

    #84068
    Carina
    Member

    Hi Mahesh,

    I have done folders and files for child theme to server, but something went wrong and I can´t see the child theme where it should be (Themes). I asked now help from the Catcsthemes Support because the site has to get to work quite hurry. Thank you Mahesh for you help!!!

    – Carina

    #84072
    Mahesh
    Keymaster

    Hi Carina,

    Hope you’ve followed the instruction as in the site for creating child theme. And where have you uploaded the Child theme folder in the server? It should be in “Your site’s WordPress Installation Folder/wp-content/themes/”. What do you see in the Themes pages? Is there any mentioning of broken themes or something like that?

    Regards,
    Mahesh

    #84077
    Sakin
    Keymaster

    @mahesh: I am working with this from Support Ticket. So, you can ignore this here.

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘Hide latest posts from front page’ is closed to new replies.