Forum Replies Created

Viewing 30 posts - 451 through 480 (of 731 total)
  • Avatar: 8theme
    8theme
    Support staff
    November 29, 2016 at 08:49

    Hello,

    Ok, please check now. We have returned back prettyphoto scripts from woocommerce. All changes made in child theme functions.php file.

    Regards

    Avatar: 8theme
    8theme
    Support staff
    November 29, 2016 at 08:42

    Try to replace this function with the following code

        function etheme_get_links($args) {
            extract(shortcode_atts(array(
                'short'  => false,
                'popups'  => true,
            ), $args));
            $links = array();
    
            $reg_id = etheme_tpl2id('et-registration.php');
    
            $login_link = wp_login_url( get_permalink() );
    
            if( class_exists('WooCommerce')) {
                $login_link = get_permalink( get_option('woocommerce_myaccount_page_id') );
            }
    
            if(etheme_get_option('promo_popup')) {
                $links['popup'] = array(
                    'class' => 'popup_link',
                    'link_class' => 'etheme-popup',
                    'href' => '#etheme-popup',
                    'title' => etheme_get_option('promo-link-text'),
                );
                if(!etheme_get_option('promo_link')) {
                    $links['popup']['class'] .= ' hidden';
                }
                if(etheme_get_option('promo_auto_open')) {
                    $links['popup']['link_class'] .= ' open-click';
                }
            }
    
            if( etheme_get_option('top_links') ) {
                if ( is_user_logged_in() ) {
                    $user=wp_get_current_user();
                    $name=$user->display_name; // or user_login , user_firstname, user_lastname
                    if( class_exists('WooCommerce')) {
                        if ( has_nav_menu( 'my-account' ) ) { 
                            $submenu = wp_nav_menu(array(
                                'theme_location' => 'my-account',
                                'before' => '',
                                'container_class' => 'menu-main-container',
                                'after' => '',
                                'link_before' => '',
                                'link_after' => '',
                                'depth' => 100,
                                'fallback_cb' => false,
                                'walker' => new ETheme_Navigation,
                                'echo' => false
                            ));
                        } else {
                            $submenu = '<ul>';
                            $permalink = wc_get_page_permalink( 'myaccount' );
    
                            foreach ( wc_get_account_menu_items() as $endpoint => $label ) {
                                $url = ( $endpoint != 'dashboard' ) ? wc_get_endpoint_url( $endpoint, '', $permalink ) : $permalink ;
                                $submenu .= '<li class="' . wc_get_account_menu_item_classes( $endpoint ) . '"><a href="' . esc_url( $url ) . '">' . esc_html( $label ) . '</a></li>';
                            }
    
                            $submenu .= '</ul>';
                        }
    
                        $links['my-account'] = array(
                            'class' => 'my-account-link',
                            'link_class' => '',
                            'href' => get_permalink( get_option('woocommerce_myaccount_page_id') ),
                            'title' => esc_html__( 'Welcome, ', 'xstore' ) . $name,
                            'submenu' => $submenu
                        );
    
                    }
                    // $links['logout'] = array(
                    //     'class' => 'logout-link',
                    //     'link_class' => '',
                    //     'href' => wp_logout_url(home_url()),
                    //     'title' => esc_html__( 'Logout', 'xstore' )
                    // );
                } else {
    
                    $login_text = ($short) ? esc_html__( 'Sign In', 'xstore' ): esc_html__( 'Sign In or Create an account', 'xstore' );
    
                    $links['login'] = array(
                        'class' => 'login-link',
                        'link_class' => '',
                        'href' => $login_link,
                        'title' => $login_text
                    );
    
                    if(!empty($reg_id)) {
                        $links['register'] = array(
                            'class' => 'register-link',
                            'link_class' => '',
                            'href' => get_permalink($reg_id),
                            'title' => esc_html__( 'Register', 'xstore' )
                        );
                    }
    
                }
            }
    
            return apply_filters('etheme_get_links', $links);
        }

    Regards

    Avatar: 8theme
    8theme
    Support staff
    November 29, 2016 at 08:34

    Great, you are welcome!

    Avatar: 8theme
    8theme
    Support staff
    November 28, 2016 at 16:57

    Hello,

    We see the problem and seems to be a small issue in our theme. We will fix it in the next update.

    Regards

    Avatar: 8theme
    8theme
    Support staff
    November 28, 2016 at 16:01

    Ok, we just checked CSS classes for this image and see that composite_product_image zoom is there (you mentioned it in the first message) http://prntscr.com/dcu6k9
    It means that our theme doesn’t change any markup for this plugin. Does it have any additional requirements that may be missed in Xstore?

    Regards

    Avatar: 8theme
    8theme
    Support staff
    November 28, 2016 at 15:47

    Hello,

    1. Be sure that each product has additional images uploaded to their galleries and they are different from featured ones.

    2. You need to create variable products and then add WooCommerce Layered navigation widget to your sidebar in Appearance -> Widgets. Here is a tutorial that should help you https://docs.woocommerce.com/document/variable-product/

    Regards

    Avatar: 8theme
    8theme
    Support staff
    November 28, 2016 at 15:16

    Hello,

    Thank you for using our Xstore theme.

    You are able to translate our theme texts with Loco Translate or WPML plugin. Find more information in our documentation https://www.8theme.com/documentation/xstore/video-tutotials/xstore-theme-translation/

    Regards

    Avatar: 8theme
    8theme
    Support staff
    November 28, 2016 at 15:03

    Thank you.

    Could you please check two things:

    1. Switch to default wordpress theme and check site loading

    2. Try to remove all sections one by one from your home page with Visual Composer to see which one needs much time to load.

    Regards

    Avatar: 8theme
    8theme
    Support staff
    November 28, 2016 at 14:59

    Hello,

    We will fix this in our next update that will be available tomorrow.

    Regards

    Avatar: 8theme
    8theme
    Support staff
    November 28, 2016 at 14:54

    Yes, you can put the username there as well. Just need to customize the PHP function etheme_get_links

    Avatar: 8theme
    8theme
    Support staff
    November 28, 2016 at 14:51

    Thank you.

    Firstly, you must fix the following JS errors that occur in your JS console and may break some functionality.
    https://gyazo.com/c3447a35226a171e329285fe97fd914c

    Regards

    Avatar: 8theme
    8theme
    Support staff
    November 28, 2016 at 14:45

    Hi,

    But we don’t see our theme installed on your website at all.

    Regards

    Avatar: 8theme
    8theme
    Support staff
    November 28, 2016 at 14:43

    Hello,

    This string can be translated via our POT file using WPML or Loco Translate. Please provide your admin access so we could check if you are not able to translate this string.

    Regards

    Avatar: 8theme
    8theme
    Support staff
    November 28, 2016 at 10:05

    Hello,

    Sorry, but there is no an option to add your custom Visual Composer content to the sticky menu on your website.

    Regards

    Avatar: 8theme
    8theme
    Support staff
    November 28, 2016 at 09:22

    You are welcome.

    Avatar: 8theme
    8theme
    Support staff
    November 28, 2016 at 09:14

    Hello,

    Could you please check how fast your backend will work with a standard WordPress theme? In case it loads to slow with other themes also we suggest you contact your hosting providers and ask for help since it is a server related issue.

    Regards

    Avatar: 8theme
    8theme
    Support staff
    November 28, 2016 at 09:11

    Hello,

    “My account” link text can be changed from the ‘xstore/framework/theme-functions.php’ file. Function name containing this text is etheme_get_links

    Regards

    Avatar: 8theme
    8theme
    Support staff
    November 28, 2016 at 09:08

    Hello,

    From the error log we see that this error comes from child theme functions.php file and it seems that you have added some code to this file that breaks your website. Try to fix it or remove completely to make your website work again.

    Regards

    Avatar: 8theme
    8theme
    Support staff
    November 28, 2016 at 08:58

    Hello,

    Could you please check how this will work with default WordPress theme to see if it caused by our theme or not?

    Regards

    Avatar: 8theme
    8theme
    Support staff
    November 28, 2016 at 08:53

    Hi,

    Could you please check the admin access? We can’t login your website and see the problem at the moment.

    Regards

    Avatar: 8theme
    8theme
    Support staff
    November 28, 2016 at 08:46

    Hi,

    Have you activated the child theme to apply your changes?

    Avatar: 8theme
    8theme
    Support staff
    November 28, 2016 at 08:44

    Hello,

    Here is a code that you can use to add some additional text after the price on your products https://gist.github.com/jameskoster/6875202

    And you can find all the availble options that allow you to customize your product page as on our demo in Theme Options -> ECommerce -> Single product page

    Regards

    Avatar: 8theme
    8theme
    Support staff
    November 28, 2016 at 08:34

    Ok, in this case, try to set “Stretch row” option for the row with border. It should make your border full width.

    Avatar: 8theme
    8theme
    Support staff
    November 28, 2016 at 08:29

    Hello,

    Try to disable Cloudflare to check maybe is the issue caused by it and there is some problem in this CDN.

    Regards

    Avatar: 8theme
    8theme
    Support staff
    November 28, 2016 at 08:24

    Hi,

    We can’t see your website at the moment because of maintenance mode enabled. https://gyazo.com/c42678b5be924cabf5cb57ff54606317

    Regards

    Avatar: 8theme
    8theme
    Support staff
    November 25, 2016 at 13:30

    Hello,

    Thank you for contacting us.

    We just visited your website but don’t see any content there. Did you remove it?

    Regards

    Avatar: 8theme
    8theme
    Support staff
    November 25, 2016 at 13:28

    We can’t know where your additional customization may be located. You would better ask this question your previous developer.

    Regards

    Avatar: 8theme
    8theme
    Support staff
    November 25, 2016 at 08:59

    Try to resave Permalinks in admin panel -> Settings -> Permalinks to fix the wishlist problem.

    Regarding tabs: could you please disable all additional plugins and remove your code customization to check is it our original theme issue or caused by some 3d party code?

    Thank you

    Avatar: 8theme
    8theme
    Support staff
    November 25, 2016 at 08:43

    Do you have some problems increasing this border? We see that it still has 1px width in Visual Composer.

    Avatar: 8theme
    8theme
    Support staff
    November 25, 2016 at 08:41

    Hello,

    Does it happen only with our theme? Try to switch to default WordPress theme and see how it will work then. If it is a plugin issue then you need to contact their support for help.

    Regards

  • 1 2 3 15 16 17 23 24 25
    Viewing 480 results - 451 through 480 (of 731 total)
Viewing 30 posts - 451 through 480 (of 731 total)
We're using our own and third-party cookies to improve your experience and our website. Keep on browsing to accept our cookie policy.