Discussion on Kraft - Minimal Portfolio WordPress Theme

Discussion on Kraft - Minimal Portfolio WordPress Theme

Cart 1,651 sales
Recently Updated
Well Documented

CaliberThemes supports this item

Supported

This author's response time can be up to 1 business day.

875 comments found.

Hello! I was wondering if there is a possibility to change the appearance of the hover state in the portfolio? For example make a white/colorful hover instead of a black and change the font color?

Cheers & thanks

Hi,

Currently this option isn’t there in the theme, we will add this option in the updates.

we can achieve this via custom css.

Provide me the following details :- 1 purchase code 2 site URL 3 color code of the hover state 4 color code of the font

send those details on caliberthemes@gmail.com

Thanks.

I understand, thank you for the quick answer!

Hey! I have two little problems with this theme.

1 – Social links on the footer doesn’t work. 2 – On the Portfolio description i can’t use the line break to put some space between my paragraphes.

thank for your help

Hi,

1 Social links issue has been fixed, you can download the latest version of the theme. You can either update the whole theme as we have added few things or you can just replace “theme-functions.php”, which will fix the social links issue.

You can find “theme-functions.php” in kraft/core/functions

2 Wrap paragraphs in p tag as show below.
<p>paragraph 1</p>
<p>paragraph 2</p>

Let me know if you face any issues.

Kindly rate the theme.

Thanks.

Looked into correct account. Ok is there a way to replace a specific PHP file as an update messes up a lot of CSS?

Hi,

“theme-functions.php” is the file. The path is kraft/core/functions

let me know if this doesn’t fix the issue.

Thanks.

Hi there, I recently bought your theme and very happy with the design and minimal features. However, the social media links do not work from either the ‘dashboard’ or theme settings. Can you advise? Regards, Robin

Do I have to buy this again? Cant seem to download new version. Can you advise?

No, you don’t have to buy it again.

It seems you didn’t buy the theme from this account. Login from the different account (the same account in which the theme was purchased) and then try to download.

Thanks.

Thats right we have 2 envato accounts. Cheers, Rob

Hi, can you tell me how to create a new blank page that doesn’t have any of the theme settings on it?

Hi,

I am not sure what exactly you mean by “any of the theme settings on it”.

To create a blank page, in WordPress dashboard > pages > add new

To clarify what I would like is a blank page, without the logo populating it or the font settings, etc…

Can you please specify what exactly you want to do in that page?

I can help you once I know what you will be doing in that page.

hello, I updated the theme and now in my dashboard the Portfolio section is not showing. Please advise! thanks

Hi,

Please check if all the required plugins are activated.

Thanks.

Hello! I have been really, really happy with this theme. Exactly what I was looking for to present my portfolio, thanks for a clear, simple framework. Question about “fullwidth stack images”. It seems that when I choose this option, my images grow so much bigger than I want, or how they were originally saved. Is there any way to set the image size in this format, if that makes sense? In some cases, I’d prefer “fullwidth stack” instead of “image gallery (2 col)”, which make the images just a bit smaller than I want. I kind of want a happy medium :-)

Hi,

It’s good to know that you are happy with the theme.

Please share your site URL on caliberthemes@gmail.com so that I can see what exactly is happening with the image size.

Thanks.

Hi,

Can’t send you an email via my gmail account, getting an error.

Below is the css rule which you can use to customize the border color (Contact form message).

Put this in custom css with your preferred color code.

div.wpcf7-mail-sent-ok{ border-color:}

Thanks

Hi, I really love your theme.

I have a few questions. Can you help me out?

1. I’d like to change the text to icon on the footer of the right, the social media like.

2. projects page – when the mouse hover on the any of projects it shows the project’s title. I’d like to reduce the font size of them.

3-1. portfolio detail page; Can I delete the black box saying view project? 3-2. projects title and meta font size changes – I couldn’t change the title and sub title, meta detail’s font size. I’ve tried to change typography’s font size, but it didn’t work though.

Thank you. -Jamie

Hi Jamie,

1 Please provide me your email address, I will send you a file for social media icons.

You can change font sizes in custom css.

Appearance > theme options > general > custom css

2 For project title when mouse hovered put the below code and change font-size to preferred one.
.portfolio-wrap .cbp-l-caption-title {
   font-size:16px;
}  
3.1 In portfolio post page under Portfolio Metas there is an option “Enable Button”, unchecked to disable the view project button.

3.2

For project title font size put the below code and change font-size to preferred one.
.project-title h1 {
    font-size:16px;
}
For project subtitle font size put the below code and change font-size to preferred one.
.project-title p {
    font-size:16px;
}
For project meta title put the below code and change font-size to preferred one.
.project-meta li span{
   font-size:16px;
}
For project meta description put the below code and change font-size to preferred one.
.project-meta li {
  font-size:16px;
}

Typography in theme options is for headings and paragraph in the page and not for portfolio or blog posts.

Thanks

Hi,

You can send me your email address on caliberthemes@gmail.com

Thanks.

I’m having a problem with the picture ratio on my mobile device. The vertical length is fixed, only the width is adjusted looks elongated. I sent a screenshot with an email. Thanks.

Hi,

Go to WordPress dashboard > Appearance > Theme Options > General > Custom CSS and paste the code given below and save the changes.

img{ height:auto; }

Thanks.

Concerning portfolio filter: “All works” does not work correctly. After click it should display all portfolio items.

Hi,

There are couple of things to check in ‘portfolio section’ shortcode if you can’t see all portfolio items.

1 ‘Number of portfolio items’ field should be empty if don’t want to limit them.

2 ‘Exclude portfolio’ field should be empty if don’t want to exclude any portfolio.

Also portfolio post has to categorized.

Thanks.

How can I update the theme? There is no menu item for that….

Hi,

Currently there is no option in the theme for update, however we will add this feature in the updates.

You can download the theme (installable WordPress file only) from themeforest and replace it with the existing theme on the server.

Thanks.

OK, but what about the settings and custom CSS. Are they overwritten?

Hi,

Your settings and custom css remains the same and will not be overwritten.

Thanks

Hello,

is there any method formatting the portfolio item description (like WP editor) ? I tried to insert HTML tags (e.g. paragraph) but this did not work.

In your demo pages you can see portfolio item with decription on the right side which are formattet. How did you achieve this.?

Currently only p tag is allowed within the “Portfolio description” section.

We have used p tag in the demos.

There are 2 ways you can allow more html tags by making some changes in kraft/template-parts/portfolio/portfolio-details.php line no 54

1 Replace this code <?php echo wp_kses( $portfolio_desc, array( ‘p’ => array() ) ); ?>

with

<?php echo $portfolio_desc; ?>

In the above case all the tags will be allowed within “Portfolio description” section.

2 You can add only required tags with their attributes by adding them in the array and separating them by comma, like shown below

array( ‘a’ => array( ‘href’ => array(), ‘title’ => array() ), ‘br’ => array(), ‘em’ => array(), ‘strong’ => array(), );

2nd option is recommended.

For more info you can check this link https://codex.wordpress.org/Function_Reference/wp_kses

Thanks.

Hello I am writing in Google translation because I am not good at English. There was a little problem setting the theme.

I do not see the portfolio on the main page. The error message says so; No portfolio added, Please add from admin.

I followed the instructions, but I do not know why the error occurred.

Problem site; Http://www.thefineroot.com/

I set PHOTOGRAPHY as my main page, I also set up the portfolio section with Visual Composer. Of course, I also entered portfolio categories.

I want you to let me know what the problem is. I’ll wait for your reply.

Thanks

Hi,

The message “No portfolio added, Please add from admin.” appears when there is no portfolio post. You will need to create portfolio posts.

In WordPress dashboard go to Portfolio items > add new, make necessary changes.

Please refer to “Portfolio Posts” section in the documentation, each and every steps are given with the screen shot.

If you still face any issues, do contact us.

Thanks.

I sent an email. Can you confirm it? Thanks

Yes, I have received it. I will get back to you on this.

Thanks

Hi there, I have a question about the different Project Type settings for portfolio items. What is the difference between setting a page up as a Page Project with an Image Slider vs a Lightbox Project with an Image Gallery? They seem to appear the same when viewed. Is there a difference somewhere else on the site? Thanks!

Hi,

Portfolio items with Page Project setting will open a page (portfolio details or innerpage) when clicked and Portfolio items with Lightbox Project will open a lightbox popup when clicked.

You can set up a Page Project with an image slider or other ways available in the theme.

Lightbox Project can have single image, image gallery or a video.

Thanks.

Hello,

I am using the theme for a while now and I am “loving” it. Thank you very much for providing Kraft to the community. However since yesterday I am not able to use Visual Composer. The plug in does not load the defined Contents and widgets anymore.

It works again when I turn off the REDUX Framework plugin, but it did before. So could you please advise how to solve that Java script conflict?

Thank you very much in advance and greetings! Oliver

Hi Oliver,

Thanks for the kind words.

Please download the latest copy of the theme (installable WordPress file only) and update it on the server.

After doing the above if still issue occurs then, share your WordPress credentials and URL on caliberthemes@gmail.com

Thankyou

Thank you for the quick reply. This did the job. Kind regards, Oliver

Great!

Don’t hesitate to contact us for any further assistance.

Kindly rate our theme.

Thanks.

Nice theme! Is there a sticky menu??

Hi,

Currently there isn’t a sticky menu. We may add it in future updates.

Thanks.

Ok great! Would it be possible for me to pay you to customize a sticky menu on my site once I load your theme?

Hi,

In how many days you will make the site live?

Kindly reply on caliberthemes@gmail.com

Thanks.

Hello. I bought this template and installed but I cant seem to install the demo data. re is an error message:

Fatal error: Cannot redeclare class OCDI_Plugin in /home/inkiya/public_html/wp-content/plugins/pt-ocdi/one-click-demo-import.php on line 21

Plugin file does not exist.

I am using wp4.72

Please assist. Tks

Peter

Hi Peter,

We are checking this and will get back ASAP.

Thanks.

Hi Peter,

Kindly provide your ftp details, WordPress credentials and site URL on caliberthemes@gmail.com

Thanks.

Interesting in purchasing but wondered if I could put a video in the single slider homepage instead of an image. Tks.

Hi,

Currently single slider is only for images, however video is also a good option to consider.

We may add the video option in future updates.

Thanks.

hello, great theme however, the favicon i’ve uploaded does not seem to show itself… can you help? thanks

Hi,

Appearance > Theme Options > General > favicon is for older version of WordPress.

In new version of WordPress the favicon has to be uploaded in a different way as mentioned below.

Appearance > customize > Site Identity

Do contact us if you need any help in future.

Kindly rate our theme.

Thanks.

ah yes indeed it works that way, thank you i have already rated your theme 5 stars ;) hope you make some more!

Oh, Thanks.

Hello, I need to know where can i find frontpage template grids. I’m doing my portfolio and I don’t find tamplates, I only fins portfolio inside projects. Thank you.

Hi,

You don’t need to import demo manually.

1 Open WordPress Dashboard. 2 Go to Appearance > Import Demo Data. 3 Click on Import Demo Data button and wait until you see the message “That’s it, all done!”.

Note : Dont’s close or navigation away from the browser while the import is in process.

Thanks.

Thanks for your help!

You’re most welcome. It’s always a pleasure to help.

Don’t hesitate to contact us for any help or issues in the theme.

Kindly rate our theme.

Regards

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve ThemeForest.

Sure, take me to the survey