Forum Replies Created

Viewing 15 posts - 2,896 through 2,910 (of 8,657 total)
  • Author
    Posts
  • in reply to: Theme compatibility #90512
    wensolutions
    Keymaster

    Hello @theshade001

    Yes, the free version of the theme is compatible with the latest WordPress version as well as WooCommerce.

    Regarding your query about the updates, the development and enhancements on our products is a continuous process and our developer team work hard to release new updates. However, there is no specific date to release new updates and hence we are unable to specify you the exact date regarding this query.

    Hope this clears your confusion,

    Feel free to reach us for any further query/confusion,

    Regards!!

    in reply to: "Post id" clarification – Business Hub Theme #90511
    wensolutions
    Keymaster

    Hello @rashida

    To decrease the space between two dividers, please add the below given CSS

    .divider_line {
        margin-top: 5px;
        margin-bottom: 5px;
    }

    For the rest of your queries a higher level of code customization is required and hence to make the changes in your website, you need to hire a professional developer. To hire a developer, please refer to the below given link :

    https://themepalace.com/hire-a-customizer/

    Hope to hear from you again,

    Regards!!

    in reply to: Problem with tabs and FAQ #90510
    wensolutions
    Keymaster

    Hello @darkpain

    We will let you know as soon as the update is released.

    Thank you for your kind co-operation,

    Regards!

    in reply to: I get the letter "amit" in from of the text in the footer #90461
    wensolutions
    Keymaster

    Hello @erniepope,

    The update has been released, Please update to the latest version and verify the issue.

    Thank you.

    Regards!!

    in reply to: Problem with tabs and FAQ #90450
    wensolutions
    Keymaster

    Hello @darkpain,

    First of all thank you very much for using the WP Travel Utilities plugin.

    The issue has been noted as the known issue and we will soon release the update fixing the issue.

    Hoping for your kind co-operation.

    Regards!!

    in reply to: update theme #90447
    wensolutions
    Keymaster

    Hello @gisela,

    If you have directly added your custom code in the original theme file then all of your modification will be lost once you update to the current version of the theme.

    So you need to always go through the child theme for any modification in the original parent theme. In this way, there won’t be any problem in updating to the latest version.

    So, we would suggest you to build the child theme and add all of your custom code there.

    Hope this helps.

    If you have ay query/confusion related to the theme then kindly let us know.

    Thank you.

    Best Regards!!

    wensolutions
    Keymaster

    Hello @erniepope,

    Glad we could help you.

    If you have any issues further, please let us know.

    Thank you.

    Best Regards!!

    in reply to: I get the letter "amit" in from of the text in the footer #90445
    wensolutions
    Keymaster

    Hello @erniepope,

    We would like to apologize for the trouble.

    We will fix the issue and release the update soon.

    Hoping for your kind co-operation.

    Best Regards!!

    in reply to: Slider – too fast – how to slow it down? #90393
    wensolutions
    Keymaster

    Hello,

    You can find the code in the link : https://pastebin.com/Jmy9Z9qh

    Add the code to your child theme’functions.php.

    Hope this helps.

    Regards!!

    in reply to: Meet Our Teachers layout #90392
    wensolutions
    Keymaster

    Hello,

    Please add below code in your child theme functions.php file.

    function kids_education_pro_render_slider_section( $content_details = array() ) {
            $options          = kids_education_pro_get_theme_options();
            $read_more_button = $options['main_slider_learn_more_text'];
     
            $content_type          = $options['main_slider_type'];
            $slider_effect         = ( $options['main_slider_type'] == 'demo' ) ? 'cubic-bezier(0.250, 0.100, 0.250, 1.000)' : $options['slider_content_effect'];
            $slider_control        = ( $options['enable_slider_controls'] == true ) ? 'true' : 'false';
            $slider_dragable       = ( $options['enable_slider_dragable'] == true ) ? 'true' : 'false';
            $slider_pause          = ( $options['slider_pause_on_hover'] == true ) ? 'true' : 'false';
            $slider_divider_enable = $options['slider_divider_enable'];
     
            if( $content_type == 'demo' ) {
                $data_slick_value = '{"slidesToShow": 1, "slidesToScroll": 1, "infinite": true, "speed": 8000, "dots": false, "arrows": true, "autoplay": true, "fade": false }';
            }
            else {
                $data_slick_value = '{"slidesToShow": 1, "slidesToScroll": 1, "infinite": true, "speed": 800, "dots": false, "autoplay": true, "pauseOnHover":'. esc_attr( $slider_pause ).', "arrows": '. esc_attr( $slider_control ).', "draggable":'.esc_attr( $slider_dragable ).', "fade": false }';
            }
     
            if ( empty( $content_details ) ) {
                return;
            } ?>
            <section id="main-slider">
                <div class="regular" data-effect="<?php echo esc_attr( $slider_effect ); ?>" data-slick=<?php echo "'" . $data_slick_value . "'"; ?>>
     
                    <?php foreach ($content_details as $content_detail ) : ?>
                    <div class="slider-item" style="background-image: url('<?php echo esc_url( $content_detail['img_array'][0] ); ?>')">
                        <a href="<?php echo esc_url( $content_detail['url'] ); ?>">
                        <div class="black-overlay"></div></a>
                        <div class="main-slider-contents">
                            <?php if( !empty( $content_detail['title'] ) ){ ?>
                                <h2 class="title"><a href="<?php echo esc_url( $content_detail['url'] ); ?>"><?php echo esc_html( $content_detail['title'] );?></a></h2>
                            <?php }
                            if( !empty( $content_detail['content'] ) ){ ?>
                                <p><?php echo esc_html( $content_detail['content'] );?></p>
                            <?php }
                                $learn_more_link = ( 'demo' == $content_type ) ? '#' : $content_detail['url'];
     
                            if( !empty( $read_more_button ) ) :
                            ?>
                            <a href="<?php echo esc_url( $learn_more_link ); ?>" class="btn btn-default"><?php echo esc_html( $read_more_button );?></a>
                            <?php endif; ?>
                        </div><!-- .main-slider-contents -->
                    </div><!-- .slider-item -->
                    <?php endforeach; ?>
     
                </div><!-- .regular -->
                <?php if( $slider_divider_enable ) : ?>
                <div class="divider">
                    <img src="<?php echo get_template_directory_uri() .'/assets/uploads/slider-divider.png'; ?>" alt="<?php esc_attr_e( 'Slider divider', 'kids-education-pro' ); ?>">
                </div><!-- .divider -->
                <?php endif; ?>
            </section><!-- #main-slider -->      
    <?php
        }

    Hope this helps.

    Regards!!

    wensolutions
    Keymaster

    Hello @erniepope,

    It is because you have added menu items in the header. So now to fix the issue please add below given CSS by going to Admin Panel > Appearance > Customize > Additional CSS.

    .site-header.align-right .main-navigation ul.menu > li > a {
        padding: 31px 10px;
    }
    
    #masthead.align-right .main-navigation ul li a {
        font-size: 14px;
    }

    Hope this helps.

    Regards!!

    in reply to: I get the letter "amit" in from of the text in the footer #90389
    wensolutions
    Keymaster

    Hello @erniepope,

    It is because you have added the letter “amit” inside the copyright section field.

    Please provide the screen set of the copyright section in the customizer as provided in the screenshot below:

    Screenshot:
    http://prntscr.com/mgtn05

    http://prntscr.com/mgu32a
    http://prntscr.com/mgu3my

    Thank you.

    Regards!!

    in reply to: I get the letter "amit" in from of the text in the footer #90264
    wensolutions
    Keymaster

    Hello @erniepope,

    Since you want to remove the copyright section, please add below given CSS by going to Admin Panel > Appearance > Customize < Additional CSS.

    div#footer-content {
        display: none;
    }

    This will remove the entire copyright section.

    Hope this works.

    Thank you.

    Regards!!

    in reply to: How to add footer widgets in Easy commerce free theme #90263
    wensolutions
    Keymaster

    Hello @max,

    Glad we could help you.

    If you have any issues further then please let us know.

    Also, we would really appreciate if you could help us by rating our theme by following the link given below:

    https://wordpress.org/support/theme/easy-commerce/reviews

    Thank you.

    Regards!!

    in reply to: I get the letter "amit" in from of the text in the footer #90241
    wensolutions
    Keymaster

    Hello,

    When we inspected your site URL, we found that the content on the footer is exactly same as the content which is appearing in the website footer section.

    Please once verify the content of the footer section to ensure that there is no word ‘amit’ in the content section by going to Admin Panel > Appearence > Customizer > Theme Options > Footer Editor Option

    If the issue still persist, please provide us with your login credentials in the email given below :

    wensolution[at]gmail.com

    Hoping for your kind co-operation,

    Regards!!

Viewing 15 posts - 2,896 through 2,910 (of 8,657 total)