Forum Replies Created

Viewing 15 posts - 3,346 through 3,360 (of 8,657 total)
  • Author
    Posts
  • in reply to: Remove 'Select options' button on mobile site #82829
    wensolutions
    Keymaster

    Hello @adamharrisuk,

    To remove the button you have to go through the child theme.

    To know how to create and activate the child theme please go through below given link:

    https://wptravel.io/how-to-create-a-child-theme/

    After activating the child theme in your child theme functions.php add below given code.

    remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart' );
    remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 );

    Hope this helps.

    Regards!!

    in reply to: Featured slider bug? Empty slides #82789
    wensolutions
    Keymaster

    Hello @anna,

    We still did not receive your email, so can you please resend in the email mention below:

    wensolution@gmail.com

    Thank you.

    Regards!!

    in reply to: Remove 'Select options' button on mobile site #82787
    wensolutions
    Keymaster

    Hello @adamharrisuk,

    Can you please provide your site URL, so that we can provide a precise fix on the issue?

    Thank you.

    Regards!!

    wensolutions
    Keymaster

    Hello,

    Glad that your issue is finally resolved.

    Also, when we checked from our side, the latest version has already been released so the issue may be related your host.

    Anyway, if you have any issues further then please let us know.

    Thank you.

    Regards!!

    in reply to: Show product images in cart on mobile devices #82735
    wensolutions
    Keymaster

    Hello @adamharrisuk,

    Glad we could help you.

    Let us know if you have any confusion further.

    Thank you.

    Regards!!

    wensolutions
    Keymaster

    Hello,

    The update for the pro version has also already been released. The newest version is 1.0.1. Please check your theme version. The issue has been fixed in the version 1.0.1.

    Regards!!

    in reply to: Licence key expiration #82729
    wensolutions
    Keymaster

    Hello @manishka81,

    let us know if you have any confusion further.

    Thank you.

    Regards!!

    wensolutions
    Keymaster

    Hello @orange-raven,

    You have to go through the child theme for this as the original layout needs to be changed through the code customization.

    As for the footer widget area, we would like to apologize for the trouble. The feature is noted as the requested feature and will be available soon in the future updates.

    Thank you.

    Regards!!

    in reply to: social media icons #82724
    wensolutions
    Keymaster

    Hello @shawn2018,

    Yes, you should create the posts as much as you require and display in that section.

    Also, glad that you figured out the issue.

    Let us know if you have any confusion further.

    Thank you.

    Regards!!

    wensolutions
    Keymaster

    Hello,

    We would like to apologize for the delay.

    Actually, we are not quite clear whether you want to activate the pro version or the free version?

    The issue that you have mentioned about the service section is already fixed in the recent version. So please activate the pro version or the free version as per your requirement. The update of the recent version will be available in the dashboard as given in the screenshot below:

    https://prnt.sc/lbqebd

    You can update the theme using the FTP as well.

    Regards!!

    in reply to: social media icons #82720
    wensolutions
    Keymaster

    Hello @shawn2018,

    The images in the section come from the featured image section of the individual post.

    So just go to individual post edit screen and upload the image in featured image section as mentioned in the below give screenshots:

    http://prntscr.com/lbq669

    Hope this helps.

    Regards!!

    in reply to: social media icons #82713
    wensolutions
    Keymaster

    Hello @shawn2018,

    All the category that you have created from the Admin Panel > Posts > category will be displayed in the option “Select Category” of popular destination section.

    So just create the category from there and then create the posts and assign to the category that you have created. Then finally go to Admin Panel > Appearance > Customize > Homepage Sections > Popular Destination and select that particular category.

    Hope this helps.

    Regards!!

    wensolutions
    Keymaster

    Hello @orange_raven,

    Please find answer to your query below:

    Query #1:

    Response: To display other page like in the free version you need to additional custom code in your child theme.

    To know how to create and activate the child theme, please refer to below given link:

    https://wptravel.io/how-to-create-a-child-theme/

    After activating the child theme in your child theme functions.php add below given code:

    function biography_header() {
        global $biography_customizer_all_values;
    
        if ( function_exists( 'has_custom_logo' ) ) {
            $biography_logo = get_custom_logo(); 
        }
         elseif ( !function_exists( 'has_custom_logo' ) ) {
        $biography_logo = esc_url($biography_customizer_all_values['biography-logo']);
        }
        $biography_header_bg_img = biography_banner_image( get_the_ID() );
        $biography_enable_social_icons = esc_attr( $biography_customizer_all_values['biography-enable-social-icons'] );
        $nav_col_fixed = 'col-md-12 col-sm-12';
    
        if( 1 == $biography_enable_social_icons ){
            if( has_nav_menu( 'social' ) ) {
               $nav_col_fixed = 'col-md-6 col-sm-8';
            }
        }
        if(is_front_page() || is_singular() ){
        ?>
    
        <header id="masthead" class="site-header block-section biography-nav-left" role="banner" style="background-image: url('<?php echo  $biography_header_bg_img;?>');">
            <div class="block-overlay-content">
            <div class="head-top">
                <div class="container">
                    <div class="<?php echo esc_attr( $nav_col_fixed);?> col-xs-12">
                        <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><!-- #site-navigation -->
                    </div>
                    <?php
                    if( 1 == $biography_enable_social_icons ){
                        if( has_nav_menu('social')){
                        ?>
                        <div class="col-md-6 col-sm-4 col-xs-12">
                            <div class="social-icon-only">
                            <?php
                            $social_nav_args = array(
                                'theme_location'  => 'social',
                                'container'       => 'div',
                                'container_class' => 'biography-social-section',
                                'depth' => 1
                            );
                            wp_nav_menu( $social_nav_args );
                            ?>
                            </div>
                         </div>
                            <?php
                        }
                    }
                    ?>
                </div>
            </div>
            <?php
              global $biography_customizer_all_values;
    
              if( !FALSE == $biography_customizer_all_values['biography-home-sortable-enable']  ){
    
            ?>
            
                <div class="banner-section-sortable">
            <?php 
                }
                else {
            ?>
            <div class="banner-section">
            <?php } ?>
                <div class="container">
                    <div class="row">
                        <div class="col-md-12 col-lg-10 col-lg-offset-1">
                            <div class="banner-inner biography-animate fadeInDown overhidden">
                                <div class="author-content">
                                    <div class="site-branding">
                                        <?php if ( is_front_page() && is_home() ) : ?>
                                            <h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
                                        <?php else : ?>
                                            <p class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></p>
                                        <?php endif; ?>
                                        <p class="site-description"><?php bloginfo( 'description' ); ?></p>
                                    </div><!-- .site-branding -->
                                    <?php
                                    /**
                                     * biography_action_text_slider hook
                                     * @since Biography 1.0.0
                                     *
                                     * @hooked biography_text_slider -10
                                     * @hooked biography_after_text_slider -20
                                     */
                                    do_action( 'biography_action_text_slider' );
                                    ?>
                                </div><!-- .author-content -->
                                <?php
                                if( !empty( $biography_logo)){
                                ?>
                                <div class="photo-section">
                                    <span>
                                        <?php  if ( !function_exists( 'has_custom_logo' ) ) { ?>
                                <img src="<?php echo $biography_logo;?>" alt="<?php esc_attr( get_bloginfo( 'name' ) ); ?>">
                                    <?php } else { ?>
                                      <?php echo $biography_logo;?>
                                    <?php } ?> 
                                    </span>
                                </div><!-- .photo-section -->
                                <?php
                                }
                                ?>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
            </div>
        </header><!-- #masthead -->
        <?php }else{?>
    
         <header id="masthead" class="child-site-header biography-nav-right navbar-static-top" role="banner">
            <div class="container">
                    <div class="row">
    
                        <div class=" col-lg-2 col-xs-12 col-sm-12 col-md-2 text-center">
                            <?php
                                    if( !empty( $biography_logo)){ ?>
                                    <div class= "photo-section-child">
                                    <span>
                                    <?php 
                                    if ( !function_exists( 'has_custom_logo' ) ) { ?>
                                    <a href="<?php echo esc_url( home_url( '/' ) ); ?>"><img src="<?php echo $biography_logo;?>" alt="<?php esc_attr( get_bloginfo( 'name' ) ); ?>"></a>
                                     <?php } else { 
                                         echo $biography_logo;
                                         }
                                    ?>
                                         </span>
                                     </div>
                                     
                                     
                            <?php
                                    }else{ 
                            ?> 
                                 <p class="child-site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>"> <?php bloginfo( 'name' ); ?></a> </p>
                                 <p class="child-site-description"><?php bloginfo( 'description' ); ?></p>
                            <?php } ?>
                                    
                        </div>
    
                        <div class="col-xs-12 col-sm-12 col-md-7 col-lg-7 text-center ">   
       
                           <div class="child-margin">
                                        <nav id="site-navigation" class="main-navigation child-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><!-- #site-navigation -->
                            </div>
                       
                        </div>
                        <?php
                                if( 1 == $biography_enable_social_icons ){
                                if( has_nav_menu('social')){
                        ?>
                        <div class="col-md-3 col-lg-3 col-sm-12 col-xs-12 text-center">
                            <div class="social-icon-only social">
                                    <?php
                                         $social_nav_args = array(
                                             'theme_location'  => 'social',
                                             'container'       => 'div',
                                               'container_class' => 'biography-social-section',
                                               'depth' => 1
                                         ); 
                                    wp_nav_menu( $social_nav_args );
                                    ?>
                            </div>
                         </div>
                            <?php
                        }
                    }
                    ?>
                </div>
        </header>
        <div class="clearfix"></div>
        <section id="biography_child_page" class="biography_child_page" style="background-image:url('<?php echo $biography_header_bg_img;?>');">
        <h1 class="child-title"><?php wp_title($sep = '');?></h1>
        </section>  
    <?php
    }
    
    }

    Query #2:

    Response: To change the color of the breadcrumb, add below given CSS by going to Admin Panel > Appearance > Customize > Additional CSS.

    #breadcrumb a {
        color: #fff !important;
    }

    Query #3:

    Response: To display the footer widget area in the customizer, make sure you have atleast added one widget in one of the footer widget are by goin to Admin Panel > Appearance > Widget > footer widget.

    Hope this helps.

    Let us know if you have any confusion further.

    Thank you.

    Regards!!

    in reply to: Show product images in cart on mobile devices #82708
    wensolutions
    Keymaster

    Hello @adamharrisuk,

    To display the product image in the table even in the mobile version please add below given CSS by going to Admin Panel > Appearance > Customize > Additional CSS.

    @media only screen and (max-width: 767px){
    .woocommerce #content table.cart .product-thumbnail, .woocommerce table.cart .product-thumbnail, .woocommerce-page #content table.cart .product-thumbnail, .woocommerce-page table.cart .product-thumbnail {
        display: block;
    }
    }

    Hope this helps.

    let us know if you have any confusion further.

    Thank you.

    Regards!!

    in reply to: Could I get the demo setup? #82706
    wensolutions
    Keymaster

    Hello @admitcard,

    Thank you very much for your interest in the Edufication Pro theme.

    For your information, if you used the theme you can easily set up your site as in the demo since you can import the demo easily by your self using the plugin ” One Clik demo import” which is recommended by the theme itelf.

    You just need to activate the theme and then activate the plugin “One Clik demo import”. Now just go to Admi Panel > Appearance > Import Demo data and import the demo.

    You can also refer to our theme’s official documentation which will guide you to set up your site.

    Let us know if you have any query/confusion further.

    Thank you.

    Regards!!

Viewing 15 posts - 3,346 through 3,360 (of 8,657 total)