Forum Replies Created
-
AuthorPosts
-
ProDesigns
KeymasterHi @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
KeymasterHi @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.
ProDesigns
KeymasterHi @mindfulfil,
You can find tutorials for child theme or you can hire customizer for it.
ProDesigns
KeymasterHi @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
KeymasterHi @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=1Hope you will like it.
Thank you.
ProDesigns
KeymasterHi @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
KeymasterYou are always welcome David. If you need further help reach us anytime. Thanks!!!
ProDesigns
KeymasterHi @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.
July 4, 2017 at 7:12 pm in reply to: How to ensure the text doesn't continue wrapping below the featured image #6737ProDesigns
KeymasterHi @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%; }
ProDesigns
KeymasterYour are always welcome. Our support team are ready to help if you need any support in future too.
ProDesigns
KeymasterHi @David,
You can use following CSS to hide categories of posts:
span.cat-links { display: none; }
ProDesigns
KeymasterHi @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.
ProDesigns
KeymasterHi @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.
ProDesigns
KeymasterHi @stylemyday,
Your site looks great now. Cheers!!
ProDesigns
KeymasterHi @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.
-
AuthorPosts