Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #132180
    sofiadieselcenter
    Participant

    Hello,

    I’m using wen business pro and since I’m not very good at css I have some issues I hope you can help me fix.
    1. I want to move my Site Description over my Site Heading. (my website is https://salonzakrasota.com/)
    2. I want to modify my home page in a similar way that is displayed on the wen business pro theme example (https://catchthemes.com/wp-content/uploads/2015/08/pro-screenshot1.png).
    3. When I have opened any category in my site (for example https://salonzakrasota.com/category/%D1%83%D1%81%D0%BB%D1%83%D0%B3%D0%B8/%D0%BA%D0%BE%D0%B7%D0%BC%D0%B5%D1%82%D0%B8%D1%87%D0%BD%D0%B8-%D1%83%D1%81%D0%BB%D1%83%D0%B3%D0%B8/) I have 2 issues:
    – in the address bar I want to remove the writing “category”;
    – in the beginning of the page it displays “Category:” followed by my category name. I would like to remove that as well.

    I will be very grateful if you could help me fix these issues I have with my website.
    Thank you in advance and I wish you a successful day. 🙂
    Vladimir Dilkov

    #132205
    Skandha
    Participant

    @sofiadieselcenter: To move site description over site title Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    h2.site-description {
        position:absolute;
        top:10px;
        left:95px;
    }
    .site-title{
        position:absolute;
        top:40px
    }

    To modify your homepage like the demo of Wen Business Pro theme you can follow the link theme-instruction and customize your homepage according to your need. If you have difficulty customizing your site you can always hire a customizer.

    If you want to remove /category/ from the url, follow these two steps:

    Go to Settings >> Permalinks and select Custom and enter: /%category%/%postname%/
    Next set your Category Base to .

    To remove text Category: from the page title you will need to create a child-theme and customize your site. Let me know if you are comfortable with child theme customization.

    Let me know if you have anymore issues!

    Regards,
    Skandha

    #132209
    wensolutions
    Participant

    Hello @sofiadieselcenter,

    Please find below the responses for each of your queries listed below :

    1. I want to move my Site Description over my Site Heading.

    You can add the following custom CSS to your Admin Dashboard > Appearance > Customize > Additional CSS to alter the position of your title and description for desktop screens :

    @media ( min-width: 769px ) {
    
    .site-title {
        position: absolute;
        padding-top: 10px;
    
    }
    
    .site-description {
      position: absolute;
      top:0;
    }
    
    }

    2. I want to modify my homepage in a similar way that is displayed on the wen business pro theme.

    While we have inspected your website, your front page is currently displaying blog recent posts. To get the layout similar to the theme demo, you will need to first setup to display “A Static Page” on Front Page Displays option under Appearance > Customize > Homepage Settings.

    After setting the static front page, you can manage the front page from the customizer settings.

    3. When I have opened any category on my site, I have 2 issues:
    – in the address bar I want to remove the writing “category”;
    – in the beginning of the page it displays “Category:” followed by my category name. I would like to remove that as well.

    To remove the “Category:” word from the category archives title, you would need to add some customization to your theme via child theme approach.

    For reference on using the child theme, please check the link here :
    https://codex.wordpress.org/Child_Themes

    You can also create the child theme by using the Child Theme Generator Plugin.

    After Creating and activating the child theme, please add the following code to your child theme’s functions.php file :

    add_filter( 'get_the_archive_title', function ($title) {
    
        if ( is_category() ) {
    
                $title = single_cat_title( '', false );
    
            } elseif ( is_tag() ) {
    
                $title = single_tag_title( '', false );
    
            } elseif ( is_author() ) {
    
                $title = '<span class="vcard">' . get_the_author() . '</span>' ;
    
            }
    
        return $title;
    
    });

    This will remove the category word from the archive title.

    If you have any confusions/queries further, please feel free to post your queries.

    Best Regards !!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Site description over site heading, home page modifying’ is closed to new replies.