ProDesigns

Forum Replies Created

Viewing 15 posts - 886 through 900 (of 971 total)
  • Author
    Posts
  • in reply to: Video Tutorial ? #6745
    ProDesigns
    Keymaster

    Hi @joe_sterns,

    Blog Way is minimal theme and straight forward. That is why we do not have video or other tutorial of it. However, we are planning to add documentation of it soon.

    If you can provide us your email id, we will forward you offline documentation of Blog Way Plus. You can learn from it.

    Later we will add documentation of free theme on our site too.

    Thank you.

    ProDesigns
    Keymaster

    Hi @David,

    It is tested code. We have tested it in both main theme and child theme.

    If you can provide us your site url and logins details (FTP through our email) we can test it for you.

    Thank you.

    in reply to: Search bar #6693
    ProDesigns
    Keymaster

    Hi @mindfulfil,

    You can find tutorials for child theme or you can hire customizer for it.

    in reply to: Search bar #6691
    ProDesigns
    Keymaster

    Hi @mindfulfil,

    Blog Way theme do not support search icon at menu at default condition.

    However, if you have knowledge of child theme you can add it using available hook of theme.

    Thank you.

    ProDesigns
    Keymaster

    Hi @David,

    You can add following lines of code to remove category prefix at functions.php of child theme.

    add_filter( 'get_the_archive_title', 'blog_way_category_title_change');
    
    	function blog_way_category_title_change( $title ) {
    
    		if ( is_category() ) {
    
    			$title = single_cat_title( '', false );
    
    		} 
    
    	return $title;
    
    }

    Premium version of this theme Blog Way Plus comes with child theme. You can check it at themeforest:
    https://themeforest.net/item/blog-way-plus-minimal-wordpress-blog-theme/19848313?s_rank=1

    Hope you will like it.

    Thank you.

    ProDesigns
    Keymaster

    Hi @David,

    You can use following CSS to change font-size of heading

    h1.page-title {
        font-size: 25px;
    }

    To remove Category prefix there is no option in theme. However, if you have used child theme you can override it from there.

    We will try to provide this option in upcoming version of our theme.

    Thank you.

    ProDesigns
    Keymaster

    You are always welcome David. If you need further help reach us anytime. Thanks!!!

    in reply to: How to get rid of the side bar? #6713
    ProDesigns
    Keymaster

    Hi @mindfulfil,

    That screenshot was of Blog Way Plus (premium) theme.

    However, you can go to Appearance >> Customize >> Theme Options >> Post Options and select No Sidebar on Sidebar option.

    This will hide sidebar in all pages.

    ProDesigns
    Keymaster

    Hi @pinkalligatorr29,

    It can be controlled by number of excerpt length. You can reduce excerpt length to lower number.

    Or, you can also use following CSS to prevent text floating left without changing excerpt length.

    .entry-img {
        width: 50%;
        display: inline-block;
        padding-right: 10px;
    }
    
    .detail-wrap {
        display: inline-block;
        width: 50%;
    }
    in reply to: Can I change the site title and tagline font sizes? #6719
    ProDesigns
    Keymaster

    Your are always welcome. Our support team are ready to help if you need any support in future too.

    ProDesigns
    Keymaster

    Hi @David,

    You can use following CSS to hide categories of posts:

    span.cat-links {
        display: none;
    }
    in reply to: Homepage thumbnail size #7251
    ProDesigns
    Keymaster

    Hi @heylaurenem,

    Hope you are using child theme that comes with zip file of themeforest. To change image dimension you can do it through child theme.

    If you have not used child theme please install and activate child theme and follow following process:

    – At functions.php of child theme please add: add_image_size( 'blog-way-large', 690, 450, true );, You can change image size of your own.
    – Create folder name ‘template-parts’ on child theme directory
    – Copy content.php from child theme and paste into that folder.
    – Go to line 16, you can see following code:
    <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('blog-way-plus-common'); ?></a>
    Replace it with
    <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('blog-way-large'); ?></a>

    Hope this will help you. Feel free to use our support forum or online chat if you need further help.

    Thank you.

    in reply to: Can I change the site title and tagline font sizes? #6717
    ProDesigns
    Keymaster

    Hi @dbookbinder,

    Please login to wp-admin dashboard. Then go to Appearance >> Customize >> Additional CSS and add following CSS to change font size of title and tagline.

    .site-title a{
       font-size: 40px;
    }
    
    .site-description {
        font-size: 30px;
    }

    Please change size as per your requirement.

    in reply to: Is Blog way theme, Google adsense Ready? #6707
    ProDesigns
    Keymaster

    Hi @stylemyday,

    Your site looks great now. Cheers!!

    in reply to: zip file? #207
    ProDesigns
    Keymaster

    Hi @shantanu,

    Color Options: This option change the color of entire theme.

    Font Options: This option allow you to change font of site title, menu, headings, etc

    Footer Credit Customization: You can see Theme: Education Care Pro at footer. You can change it to yours or hide it.

    Layout Options: It is to change sidebar layout of blog post like left sidebar or right sidebar.

Viewing 15 posts - 886 through 900 (of 971 total)