Forum Replies Created

Viewing 15 posts - 8,431 through 8,445 (of 8,657 total)
  • Author
    Posts
  • in reply to: add image and cart items to top menu #3353
    wensolutions
    Keymaster

    Please refer this thread for common solution to this problem.

    http://themepalace.com/topic/add-wp-domain-checker-plugin/

    in reply to: Changing button text #3344
    wensolutions
    Keymaster

    @Smart Hint – To make the string available in two languages you have to use a extension for Polylang plugin.
    Extension

    After, 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.

    in reply to: Add WP Domain Checker plugin #3334
    wensolutions
    Keymaster

    Since 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 !

    in reply to: Change label "Welcome to bizlight" #3333
    wensolutions
    Keymaster

    Hello @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/FrontFeaturedSlider

    Hope that solves your issue.

    in reply to: add image and cart items to top menu #3328
    wensolutions
    Keymaster

    @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.
    Regards

    in reply to: Mobile Primary Menu Issue #3316
    wensolutions
    Keymaster

    Hello @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!

    in reply to: Add WP Domain Checker plugin #3303
    wensolutions
    Keymaster

    You 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.

    in reply to: add image and cart items to top menu #3301
    wensolutions
    Keymaster

    You can check line no. between 252 to 255 menu code wrapped up by ‘nav’ HTML tag.

    in reply to: Slider Button Link? #3296
    wensolutions
    Keymaster

    @drapertom,

    Trying 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

    in reply to: add image and cart items to top menu #3280
    wensolutions
    Keymaster

    Hello @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 !

    wensolutions
    Keymaster

    @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 fixed

    Note : 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.

    in reply to: A few things I would like to change #3261
    wensolutions
    Keymaster

    Hello @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!!

    in reply to: Contact details in Footer #3253
    wensolutions
    Keymaster

    Hello @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/acym9s

    Now 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 Tutorial

    Let us know when you are done with child theme.Then we will suggest you how to add icons.
    Regards

    in reply to: Changing button text #3246
    wensolutions
    Keymaster

    @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/polylang

    You may consider trying other plugins that supports the theme.
    Regards.

    in reply to: Navigation Menu hover colour #3233
    wensolutions
    Keymaster

    Hello @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!!

Viewing 15 posts - 8,431 through 8,445 (of 8,657 total)