Forum Replies Created
-
AuthorPosts
-
wensolutions
KeymasterReally very glad to hear it and just checked your site which looks really awesome with great contents!!
All the best wishes for your business.
Regards,
Support Team
WEN Solutionswensolutions
Keymaster
@Charles.brandrethInfinite slide option is not available in current version. However, this will be added in upcoming release.
For quick hack you can edit the bxslider option
infiniteLoop: true
in jquery.bxslider.jsRegarding custom font-awesome icon please check http://fontawesome.io/cheatsheet/ and input the icon slugs in Services section of customizer.
In order to replace the icons other than font-awesome icons, you need to customize the theme file making Child Theme.
Hope this helps!
wensolutions
Keymaster@smariani, you are using the premium version Bizlight-Pro your theme is capable to receive the automatic updates notification in your dashboard.
For this you should have entered your license key in Appearance -> Theme License in your dashboard.
License key can be seen in your My Account dashboard at Theme Palace.
But if all this is already set, then just go to your theme dashboard and check if any update notification is shown.
Regarding upgrading your Pro theme, your all previous custom settings (Customizer ) will remain safe even after you update your theme.
wensolutions
Keymaster@stacy, thank you for your queries.
Clearly, it looks like you are trying to upgrade your theme from free to Pro version of Bizlight theme.
If you have had already customize or made the changes in code in your free theme and keep that in Pro theme as well then you should need to make the child theme of Pro version.
Step would be like
1. Upload Bizlight Pro (Pro version)
2. Make it’s Child Theme and copy all custom code into your new child theme.
3. Activate the child theme.Regarding customizer options, at this moment, they will not be migrated to Pro version after activation.
This means you have to keep in mind the all the settings you have done previously and re-setup it in Pro version. Also please note the widget as well.
Sorry for the inconvenience. This feature will be introduced in next release of the update.
Let us know if any thing is unclear from this response.
wensolutions
KeymasterHello @jeremygadd, there is no strict or required size needed for the gallery appearance as in demo.
This was discussed in this thread http://themepalace.com/topic/thumbnail-size/ , you can check it for more idea.
If you still have the problem going through it, kindly share us your site URL so that we could check it and response you on this issue.
Thank you.
wensolutions
Keymaster@stacy, sorry to know that you are having trouble with creating a Child Theme.
First of all, you’d need to distinguish and remove either of the two wp-content folder in your cpanel. This might be causing this problem.
– All theme should reside under /wp-content/themes/ folder.
– Make sure you have parent theme ‘bizlight-pro’ exists in order for child theme to work.
– Child theme basically should have two files namely style.css and functions.php inside it.
– Make sure you have the proper style code and PHP code as instructed here https://codex.wordpress.org/Child_ThemesIf you still have this problem, please paste your style.css header information and functions.php code to look for any issues in the code.
Thank you
wensolutions
KeymasterHi, your functions.php file should look like this with all code above.
<?php add_action( 'wp_enqueue_scripts', 'enqueue_parent_styles' ); function enqueue_parent_styles() { wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' ); } add_action( 'after_setup_theme', 'declare_sensei_support' ); function declare_sensei_support() { add_theme_support( 'sensei' ); } global $woothemes_sensei; remove_action( 'sensei_before_main_content', array( $woothemes_sensei->frontend, 'sensei_output_content_wrapper' ), 10 ); remove_action( 'sensei_after_main_content', array( $woothemes_sensei->frontend, 'sensei_output_content_wrapper_end' ), 10 ); add_action('sensei_before_main_content', 'my_theme_wrapper_start', 10); add_action('sensei_after_main_content', 'my_theme_wrapper_end', 10); function my_theme_wrapper_start() { echo '<div id="primary" class="content-area"><main id="main" class="site-main" role="main">'; } function my_theme_wrapper_end() { echo '</main><!-- #main --> </div><!-- #primary -->'; /** * Hook - education_hub_action_sidebar. * * @hooked: education_hub_add_sidebar - 10 */ do_action( 'education_hub_action_sidebar' ); }
To insert image you can paste your screenshot link here with your post.
Thanks
wensolutions
Keymaster@dsb, thank you for your question. If I have understood your question right, Bizlight Pro theme on the homepage does not use any widgets except in the footer part for multiple footer columns.
This means, almost all sections of the homepage are configurable from the Customizer section provided by the WordPress.
Hope this helps resolving your query.
Thank you.
wensolutions
Keymaster@GedBrockie, you are in the right track after Child Theme set up.
Regarding, site crash after changing email and phone number in customizer sounds quite weird as we don’t think this could hit hard on the whole site. Probably, if you could show us the screenshot anytime if it repeat again would help us to debug it for you.
Next thing, yes of course you can paste all the custom Sensei code just below the existing code that you have in your child theme’s functions.php file.
This should be running without any error as long as you paste it carefully.
Let us know if you run into any problem.
Thanks
wensolutions
KeymasterHello @rsruss67
As I have seen the demo of the theme here http://themepalace.com/theme-demo/?demo=aU1zOUkyUGs0K05aTVFYT2dLQXNJdz09 and there is no such issue as you have explained.
So can you please provide your site URL so that it will be easy for me to debug.Best Regards!!!
wensolutions
KeymasterHello @dsb mobile sac,
I just finished testing the eVision Corporate Pro theme adding items to the homepage with widgets and I couldn’t find any issue. Have you tried creating new post under each ET section and enabling them first before adding those sections to the homepage?Thank you.
wensolutions
KeymasterHello @miriam,
Hope are you doing well today.
Since Bizlight Pro is a multi-page website it is not possible to make to jump to the section. However, you can still use this technique on your home page. To do so you might consider hiring a customizer to tweak it with customization according to your need.Let us know if you have any further queries.
Best Regards
wensolutions
KeymasterHello @GedBrockie,
The theme needs some customization to support the sensei plugin. For this you need to create a child theme. Here are some guides in case you haven’t made one before:
Turtorial 1
Tutorial 2Basically, you need two files style.css and functions.php to create a child theme. After activating child theme, paste the following additional code inside functions.php:
add_action( 'after_setup_theme', 'declare_sensei_support' ); function declare_sensei_support() { add_theme_support( 'sensei' ); } global $woothemes_sensei; remove_action( 'sensei_before_main_content', array( $woothemes_sensei->frontend, 'sensei_output_content_wrapper' ), 10 ); remove_action( 'sensei_after_main_content', array( $woothemes_sensei->frontend, 'sensei_output_content_wrapper_end' ), 10 ); add_action('sensei_before_main_content', 'my_theme_wrapper_start', 10); add_action('sensei_after_main_content', 'my_theme_wrapper_end', 10); function my_theme_wrapper_start() { echo '<div id="primary" class="content-area"><main id="main" class="site-main" role="main">'; } function my_theme_wrapper_end() { echo '</main><!-- #main --> </div><!-- #primary -->'; <?php /** * Hook - education_hub_action_sidebar. * * @hooked: education_hub_add_sidebar - 10 */ do_action( 'education_hub_action_sidebar' ); ?> }
Next, navigate to Posts-> Edit from your admin panel. Under Sidebar Settings choose Extra Sidebar 1 as Primary Location. Click Update to save the settings. Repeat this process for all of your posts.
Then go to Appearance-> Widgets-> Place/Move the Sensei Widget to Extra Sidebar 1 Widget Area.This should be the trick to show the course lessons on Extra Sidebar Area and remove the other sidebar from the bottom area too.
Best Regards.
wensolutions
KeymasterHello @mishawagon,
You need to first create the pages adding featured image to them.
See the guide on how to add featured image to a page here
Next, you need to first enable the slider from Customize/Featured Slider/Slider Type/Enable Slider On/Choose any option except disabled. Click Save and Changes.
Then choose the pages (that have already featured images) from which you want to show the image slider.That’s the trick to to add image slider to a page.
Best Regards.wensolutions
Keymaster@GedBrockie, thank you for the appreciation of the theme.
Is it possible to share us your site URL so that we can look at it to be more clear on this issue ?
Sorry asking this again, could you please make it more simple and precise on which section and/or page in your site you are having a problem and need our help ?
-
AuthorPosts