23 comments found.
Hi Team,
How to create the wide footer, i can see only boxed footer option on theme. The header have the option to display the wide and boxed style.
Hi,
You can add the following css to Additional CSS field of Appearance > Customize > Panel:
footer .port { max-width: 100% !important; }
It should do the trick.
Should you need additional assistance in the process, please submit a ticket at our support site – http://boldthemes.ticksy.com/ and our support team will be glad to help you.
Kind regards,
BoldThemes team
Hi, How can i add our own font on theme?
Hi,
Thanks for the purchase.
Save your font to the folder on your site – for the purposes of this example, we have saved the font ttf file to /wp-content/fonts/ folder we have created.
Then, you need to add font face declaration to the Additional CSS field of Appearance > Customize panel:
@font-face { font-family: myCustomFont; src: url("/wp-content/fonts/Southmore.ttf"); }
Replace the font slug and the url in line with your needs.
Then you need to add the following code to your child theme functions.php file, or using third party plugin such as https://wordpress.org/plugins/code-snippets/
// POST FONT if ( ! function_exists( 'boldthemes_customize_post_font' ) ) { function boldthemes_customize_post_font( $wp_customize ) { BoldThemesFramework::$customize_fonts['myCustomFont'] = 'My Custom Font'; $wp_customize->add_setting( BoldThemesFramework::$pfx . '_theme_options[post_font]', array( 'default' => urlencode( BoldThemes_Customize_Default::$data['post_font'] ), 'type' => 'option', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'boldthemes_sanitize_select' )); $wp_customize->add_control( 'post_font', array( 'label' => esc_html__( 'Post Article Font', 'boldthemes_framework_textdomain' ), 'section' => BoldThemesFramework::$pfx . '_typo_section', 'settings' => BoldThemesFramework::$pfx . '_theme_options[post_font]', 'priority' => 98, 'type' => 'select', 'choices' => BoldThemesFramework::$customize_fonts )); } } // BODY FONT if ( ! function_exists( 'boldthemes_customize_body_font' ) ) { function boldthemes_customize_body_font( $wp_customize ) { BoldThemesFramework::$customize_fonts['myCustomFont'] = 'My Custom Font'; $wp_customize->add_setting( BoldThemesFramework::$pfx . '_theme_options[body_font]', array( 'default' => urlencode( BoldThemes_Customize_Default::$data['body_font'] ), 'type' => 'option', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'boldthemes_sanitize_select' )); $wp_customize->add_control( 'body_font', array( 'label' => esc_html__( 'Body Font', 'boldthemes_framework_textdomain' ), 'section' => BoldThemesFramework::$pfx . '_typo_section', 'settings' => BoldThemesFramework::$pfx . '_theme_options[body_font]', 'priority' => 97, 'type' => 'select', 'choices' => BoldThemesFramework::$customize_fonts )); } } // HEADING FONT if ( ! function_exists( 'boldthemes_customize_heading_font' ) ) { function boldthemes_customize_heading_font( $wp_customize ) { BoldThemesFramework::$customize_fonts['myCustomFont'] = 'My Custom Font'; $wp_customize->add_setting( BoldThemesFramework::$pfx . '_theme_options[heading_font]', array( 'default' => urlencode( BoldThemes_Customize_Default::$data['heading_font'] ), 'type' => 'option', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'boldthemes_sanitize_select' )); $wp_customize->add_control( 'heading_font', array( 'label' => esc_html__( 'Heading Font', 'boldthemes_framework_textdomain' ), 'section' => BoldThemesFramework::$pfx . '_typo_section', 'settings' => BoldThemesFramework::$pfx . '_theme_options[heading_font]', 'priority' => 100, 'type' => 'select', 'choices' => BoldThemesFramework::$customize_fonts )); } } // SUPERTITLE HEADING FONT if ( ! function_exists( 'boldthemes_customize_heading_supertitle_font' ) ) { function boldthemes_customize_heading_supertitle_font( $wp_customize ) { BoldThemesFramework::$customize_fonts['myCustomFont'] = 'My Custom Font'; $wp_customize->add_setting( BoldThemesFramework::$pfx . '_theme_options[heading_supertitle_font]', array( 'default' => urlencode( BoldThemes_Customize_Default::$data['heading_supertitle_font'] ), 'type' => 'option', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'boldthemes_sanitize_select' )); $wp_customize->add_control( 'heading_supertitle_font', array( 'label' => esc_html__( 'Heading Supertitle Font', 'boldthemes_framework_textdomain' ), 'section' => BoldThemesFramework::$pfx . '_typo_section', 'settings' => BoldThemesFramework::$pfx . '_theme_options[heading_supertitle_font]', 'priority' => 100, 'type' => 'select', 'choices' => BoldThemesFramework::$customize_fonts )); } } // HEADING SUBTITLE FONT if ( ! function_exists( 'boldthemes_customize_heading_subtitle_font' ) ) { function boldthemes_customize_heading_subtitle_font( $wp_customize ) { BoldThemesFramework::$customize_fonts['myCustomFont'] = 'My Custom Font'; $wp_customize->add_setting( BoldThemesFramework::$pfx . '_theme_options[heading_subtitle_font]', array( 'default' => urlencode( BoldThemes_Customize_Default::$data['heading_subtitle_font'] ), 'type' => 'option', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'boldthemes_sanitize_select' )); $wp_customize->add_control( 'heading_subtitle_font', array( 'label' => esc_html__( 'Heading Subtitle Font', 'boldthemes_framework_textdomain' ), 'section' => BoldThemesFramework::$pfx . '_typo_section', 'settings' => BoldThemesFramework::$pfx . '_theme_options[heading_subtitle_font]', 'priority' => 100, 'type' => 'select', 'choices' => BoldThemesFramework::$customize_fonts )); } } // MENU FONT if ( ! function_exists( 'boldthemes_customize_heading_menu_font' ) ) { function boldthemes_customize_heading_menu_font( $wp_customize ) { BoldThemesFramework::$customize_fonts['myCustomFont'] = 'My Custom Font'; $wp_customize->add_setting( BoldThemesFramework::$pfx . '_theme_options[menu_font]', array( 'default' => urlencode( BoldThemes_Customize_Default::$data['menu_font'] ), 'type' => 'option', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'boldthemes_sanitize_select' )); $wp_customize->add_control( 'menu_font', array( 'label' => esc_html__( 'Menu Font', 'boldthemes_framework_textdomain' ), 'section' => BoldThemesFramework::$pfx . '_typo_section', 'settings' => BoldThemesFramework::$pfx . '_theme_options[menu_font]', 'priority' => 100, 'type' => 'select', 'choices' => BoldThemesFramework::$customize_fonts )); } }
Again, replace the css slug of the font and the Display name on these lines as needed
BoldThemesFramework::$customize_fonts['myCustomFont'] = 'My Custom Font';
Once you do that, the font will be in the list on Appearance > Customize > Typography panel (as the last item) and you will be able to use it just as any other font.
Should you need any additional support, please submit a ticket at our support site – http://boldthemes.ticksy.com/ and our support team will be glad to assist you.
Kind regards,
BoldThemes team
Can I customize colors for these themes? Thanks!!
Hi,
Thanks for contacting us.
Yes, you can set main accent colors in theme customizer which change the overall color scheme of the site.
Kind regards,
BoldThemes team
Hello! Is the theme compatible with WordPress 5.6 and is it Gutenberg optimized? I’m only asking because I really want to use the theme for my next project but I still haven’t used it because of lack of Gutenberg support.
Hi,
Thanks for contacting us.
The theme is compatible with WordPress 5.6
Gutenberg can be used for posts. Please note that for the layout of the static pages you need to used Bold Builder which comes with the theme, but you can freely use Gutenberg for writing posts.
Kind regards,
BoldThemes team
Hi, is it possible to customize colors? My colors are pink, blue and orange… any of these in the background would be great. Thanks
Hi,
Thanks for contacting us. Yes, it is possible to change color scheme of the theme within Customizer.
Kind regards,
BoldThemes team
Hi, i like your design very much. Before purchasing i want to ask a question. Why Gtmetrix scores are such low? Could be any problem in the future? Thank you.
Hi,
Thanks for contacting us. If you analyze http://val.bold-themes.com/green-demo/ on Gtmetrix, you will see that the main reasons is the optimization of images and potential usage of CDN. Everything else is A and two Bs.
The point is that the reasons for Gtmetrix score are theme related, you will use and optimize your own images. Ours had to look good so we have made some compromises willingly.
Kind regards,
BoldThemes team
Pre-purchase question: is the theme able to make full width posts? Especially when the full width header is used. I’ve seen that you’ve provided a columns layout & no sidebar example, but I don’t understand if that would be possible with every type of header or just in this particular style. Thanks in advance!
Hi,
Thanks for contacting us. Yes, you can get the same layout as on columns layout & no sidebar example regardless of the type of the header.
Kind regards,
BoldThemes team
Hi! Is it possible to de-activate some of the effects of the different elements (like turning off the zoom or movement when hovering over pictures/blogs posts ect)? And is it optimized for mobile? Thank you!
Hi,
Thanks for contacting us. Yes, you can switch off or modify hover effects on page elements throughout the site. We have tried to make it as optimized as we could but, in the end, you should be judge of that.
Kind regards,
BoldThemes team
Thank you for the quick reply!
Hi there! Great theme. But I cant seem to actually find the full documentation of step-by-step instructions for installing the theme and setting it up like all other themes provide. I just keep getting taken back to the link that says WHAT’S INSIDE THE BOX which only just lists a few things of my purchase but not actual instructions for installation. Can you please provide a link to the actual documentation where all the instructions are for this theme? Thanks!!
Hi,
Thanks. You can find the documentation at http://documentation.bold-themes.com/val and the installation and demo import procedure is at http://documentation.bold-themes.com/val/getting-started/
Please let us know should you have any additional issues with the documentation site.
Kind regards,
BoldThemes team
Hello, beautiful template. I need a reserved area, where only some registered users can access. is it possible to do this?
Thanks
Hi,
Thanks! It is possible either by using WordPress built in password protected page feature or by using some of the third party plugins which enable this.
Kind regards,
BoldThemes team
Can we get more social icons like pinterest, etc.
Hi,
Which other icons besides pinterest would be of interest to you?
Thanks in advance.
Kind regards,
BoldThemes team
Thanks for the reply. Pinterest, Email, Reddit, What’s App, StumbleUpon, and maybe even Print
Oh, and also Tumblr
Hi,
Thanks, we will see to add additional icons in our future theme releases. But, if you require such a diverse list of sharing features, maybe the best option is to use one of the third party plugins specialized for post share features.
Kind regards,
BoldThemes team
Ok, thanks. But at least Pinterest should be added.
hello..I see your profile page. really you have greats portfolio GLWS:)
Thanks!
Hello! It’s a nice theme and I’m in love with them. I have some questions: Can I build a portfolio (in possible ways) with the Bold Builder? It’s very important to me. // If and when I buy the theme, can you guys help me with the installation? // It’s simple to translate the theme?
Thanks!
Hi,
Thanks Yes, you can build a portfolio using provided Bold Builder elements.
Unfortunately, we do not offer installation services, but our support team can provide assistance if you encounter problems while following instructions from our online documentation – http://documentation.bold-themes.com/val
The theme can be translated using poedit or third party plugins such as https://wordpress.org/plugins/loco-translate/ Relevant .pot files have been provided – this is a standard method for WordPress themes translation.
Kind regards,
BoldThemes team
Thank you! Another quick question: I read the theme are woocommerce ready. I can sell my products without any problem? I just want so much the theme and want to check any fear I have. I don’t want to regret! ♥ Thank you
Hi,
Yes, please take a look at the shop look and feel here: http://val.bold-themes.com/green-demo/shop/
Kind regards,
BoldThemes team
Pre-sale question: Is this theme compatible with Gutenberg and WordPress 5.0? And if not, are you planning on releasing a new update soon? And is it possible to have different post styles for every blog post? Or do I have to choose one style for all my posts?
Hi,
The theme will work with WordPress 5.0. but it is not compatible with Gutenberg meaning that Gutenberg default blocks are not styled in line with the theme’s look and feel. The theme uses its own page builder instead. It is possible to have different post styles for every blog post, you do not have to choose one for all your posts.
Kind regards,
BoldThemes team
Thank you for replying! One last question: Is Bold Page Builder going to ever support Gutenberg and it’s blocks? Or would your themes be able to support the style of Gutenberg in the near future? I am asking because there are two of your themes that I am really interested in purchasing.
And if one day I change the theme of my blog with another that uses Gutenberg, would I have a problem with the styling of my posts?
Hi,
We will certainly provide the css support for built in Gutenberg blocks over next few months, but, if you intend to use the themes to their full potential, you will need to use Bold Builder – that will be our approach in near future.
Kind regards,
BoldThemes team
Hi,
Is it possible to change the background color ?
Hi,
Sure, you can change all colors according to your preference.
Kind regards,
BoldThemes team
Amazing work Congratulations.
Thank you
Great job. Impressive design and functionalities. Good luck with the sales
Thanks!
Great Work BoldThemes GLWS
Thanks
Amazing Work, Good Luck With Sale, Follow me too
Thanks!
Great Work, Congratulations GLWS
Thanks!