Forum Replies Created
-
AuthorPosts
-
wensolutionsKeymaster
Please refer this thread for common solution to this problem.
wensolutionsKeymaster@Smart Hint – To make the string available in two languages you have to use a extension for Polylang plugin.
ExtensionAfter, activating the plugin, Go to your child theme’s functions.php add following code at the end of the file.
$bizlight_customizer_defaults['bizlight-fs-slider-button-text'] = pll__('Click to start', 'bizlight' ); pll_register_string('Translation of Click to start', 'Click to start', 'Customizer', $multiline);
Now, Go to Settings-> Languages -> Strings Translations Tab and replace the texts as necessary.
Hope this helps.
wensolutionsKeymasterSince your requirements are mostly custom (WooCommerce and WP Domain Checker implementation), it will be treated as ‘Custom Job’ other than a purely theme support, for which we recommend you to Hire our Customizer .
Your requests will be exclusively resolve by our Customizer Team .
Hope you will consider this fact !
wensolutionsKeymasterHello @9toy,
To change the label, Go to Admin’s Panel Appearance -> Customize Section.
a) From Customize section, go to Home/Front Featured Slider.
b) From Home/Front Featured Slider, you will be able to select various options. At first you have to check Enable Slider On from Slider Enable Options section.For further theme customization visit our theme instruction page on:
http://themepalace.com/theme-instructions/bizlight-pro/#3.SetupHome/FrontFeaturedSliderHope that solves your issue.
wensolutionsKeymaster@9toy – Update the code from line 251 (ie 1 line above
<nav>
) upto</header>
by following lines of code:<div class="col-xs-10 col-sm-6 col-md-8 col-lg-8"> <nav id="site-navigation" class="main-navigation" role="navigation"> <button class="menu-toggle" aria-controls="primary-menu" aria-expanded="false"><i class="fa fa-bars"></i></button> <?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_id' => 'primary-menu' ) ); ?> </nav> </div> <div class="col-sm-1 col-md-1 col-lg-1"> <?php if ( in_array( 'woocommerce/woocommerce.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) ) { $count = WC()->cart->cart_contents_count; ?><a class="cart-contents" href="<?php echo WC()->cart->get_cart_url(); ?>" title="<?php _e( 'View your shopping cart' ); ?>"><?php if ( $count > 0 ) echo $count ."items"; elseif( $count== 0 ) echo $count ."item" ; ?></a> <?php } ?> </div> </div> </div> </header>
Let us know how it works.
RegardswensolutionsKeymasterHello @royvarney,
We checked the theme in iphone(safari browser) and it is working well for us. So, can you please post your site-url?Thanks!
wensolutionsKeymasterYou might try copying this php file featured-main-hook.php from inc/hooks/featured-slider/ into your child them.
Next, replace a line of code 152
<?php echo esc_html( $bizlight_fs_slider_button_text ); ?>
with your plugin shortcode<?php echo do_shortcode('[wpdomainchecker button="Search"]');?>
to output the search button.Note: It is our only effort to provide you the probable walk-through of plugin implementation in the theme. Our support would not be responsible for any third-party extension compatibility other than we recommended.
Thank you.
wensolutionsKeymasterYou can check line no. between 252 to 255 menu code wrapped up by ‘nav’ HTML tag.
wensolutionsKeymasterTrying to answer based on what we have understood, as of current theme options provide by the theme for homepage Slider, the button takes the link dynamically from the page you assigned from the Appearance -> Customizer -> Home/Front Featured Slider section. So at the moment you cannot define custom link for each slider button.
Thanks
wensolutionsKeymasterHello @9toy,
To add add image and cart items to top menu, first create a child theme.After you are done with child theme, inside theme’s inc/hooks/header.php in menu section code paste the following code to output the cart with count.
<?php if ( in_array( 'woocommerce/woocommerce.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) ) { $count = WC()->cart->cart_contents_count; ?><a class="cart-contents" href="<?php echo WC()->cart->get_cart_url(); ?>" title="<?php _e( 'View your shopping cart' ); ?>"><?php if ( $count > 0 ) echo '(' . $count . ')'; ?></a> <?php } ?>
Next, inside your child theme’s functions.php, paste the following code.
function my_header_add_to_cart_fragment( $fragments ) { ob_start(); $count = WC()->cart->cart_contents_count; ?><a class="cart-contents" href="<?php echo WC()->cart->get_cart_url(); ?>" title="<?php _e( 'View your shopping cart' ); ?>"><?php if ( $count > 0 ) echo '(' . $count . ')'; else echo 0.00 ; ?></a><?php $fragments['a.cart-contents'] = ob_get_clean(); return $fragments; } add_filter( 'woocommerce_add_to_cart_fragments', 'my_header_add_to_cart_fragment' );
Now, add little CSS to position the cart image in your child theme’s style.css :
.cart-contents:before{ font-family:WooCommerce; content: "\e01d"; font-size:28px; margin-top:10px; font-style:normal; font-weight:300; color:#fff; } .cart-contents:hover {text-decoration: none;}
Hope this helps !
March 9, 2016 at 5:51 am in reply to: Bizlight Pro theme problems by displaying on mobile phone #3276wensolutionsKeymaster@Miriam, the new updated version of Bizlight Pro theme (2.0.6) has been released and now available for download. The known responsive issue has been resolved in this version.
== Changelog ==
= 2.0.6 =
* Slider responsive Issue fixed
* About Section number of page selection increased
* Banner Image on the single post/page can be removed if not required
* Minor Style fixedNote : Make sure to remove previous slider media queries from Custom CSS field from your theme option.
Otherwise, it will override the new version update as well.Thank you.
wensolutionsKeymasterHello @Anthony
Navigation child elements open to the left for some reason, how can I switch so they open to the right?
To switch navigation child elements to the right you have to add below CSS in your child theme’s style.css file.
.main-navigation ul ul li:hover ul { left: 200px; width: 200px; }
I’d like to remove all of the strange underline on hover off of everything on the homepage.
To remove all of the strange underline on hover off of everything on the homepage you need to add below CSS in your child theme’s style.css file.
a:hover{ text-decoration:none; }
Also I still can’t get rid of the 3 dots in the service section if I wanted no words to be displayed
If you don’t want 3 dots to be appear in the service section then you need to copy and paste below code in your child theme’s functions.php file.
function bizlight_words_count( $length = 25, $bizlight_content = null ) { $length = absint( $length ); $source_content = preg_replace( '<code>\[[^\]]*\]</code>', '', $bizlight_content ); $trimmed_content = wp_trim_words( $source_content, $length, '' ); return $trimmed_content; }
Hope this will help to resolve your issue.
Regards!!
wensolutionsKeymasterHello @smariani,
You have to add a text widget for each column Going to Admin’s Panel Appearance -> Widgets -> Text . Then assign Text widget to Footer Column 1. Repeat this process for Footer Column 2 and 3 as well. You can take the reference on adding text to text widget as shown in the attached screenshot.
http://prnt.sc/acym9sNow regarding your query to display little icon next to each one, you have to create child theme, so your tweaks won’t be overwritten when updating the theme. Here are some guides in case you haven’t made one before:
Codex Child Theme
Tutorial
Video TutorialLet us know when you are done with child theme.Then we will suggest you how to add icons.
RegardswensolutionsKeymaster@Smart, is your site multisite setup? If so, above given instruction should work.
The current version of theme is not Polylang compatible. We recommend you to reach this plugin support forum for this concern:
https://wordpress.org/support/plugin/polylangYou may consider trying other plugins that supports the theme.
Regards.wensolutionsKeymasterHello @smariani
Thanks for your appreciation on the theme.
Apparently there is no option available to change the hover color from customization in Color Section.
But this can be achieved through adding simple custom CSS.
To add custom CSS go to Admin Panel / Appearance / Customize / Theme Options /Custom CSS.
In this section you will see a custom CSS box to write custom CSS.
Copy and paste below code in that box:ul.menu li a:hover { color: #A7202E !important; }
You can change Hex value to your choice of color.
You can reference Here for color code.
Hope this will help to resolve your issue.Best Regards!!
-
AuthorPosts