Forum Replies Created

Viewing 30 posts - 661 through 690 (of 30,391 total)
  • Avatar: Olga Barlow
    Olga Barlow
    Participant
    May 16, 2022 at 18:09

    Hello,

    What exactly does not work? Provide us with link to the page with the issue, please. Because it works for me https://prnt.sc/nCSYovHiR8T7

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    May 16, 2022 at 17:53

    Hello,

    What Elementor slider was not updated? Could you, please, provide us with the screenshot or video for better understanding?

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    May 16, 2022 at 17:50

    Hello,

    Our icons use the xstore-icon font. If you want to use icon of any other font you can call the font using font-face https://www.w3schools.com/cssref/css3_pr_font-face_rule.asp and then change the stars to what you need using below custom CSS

    .star-rating span:before, .star-rating:before {
        font-family: xstore-icons; /* Replace by your font-family here */
        content: '\e930d \e930d \e930d \e930d \e930d'; /* Replace by your icon code here */
    }

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    May 16, 2022 at 17:43

    Hello,

    Could you, please, clarify where you want to add the Static block for the product? In the short description? In the full description? Like the Additional information block? Or do you just want to add that to the single product sidebar?

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    May 16, 2022 at 17:40

    Hello,

    Could you, please, provide us with the server error logs and with the FTP access to your site? We need to check if you get any errors related to our theme in the error log and then fix them in case you have something.

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    May 16, 2022 at 17:28

    Hello,

    Glad to hear that it helped.
    Sorry for this inconvenience.

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    May 16, 2022 at 17:28

    Hello,

    Thank you for contacting us.
    Point is that we can’t include the third-party plugin without the permission of the plugin author. We don’t have such permission from the plugin that you mentioned. So, you can use it only by buying a personal plugin license.

    About Subscriptio plugin emails. Unfortunately, this plugin does not support email builder, issue discussed with other customer here https://www.8theme.com/topic/subscriptio-custom-email-builder-emails-are-missing-from-options/#post-323088
    So, don’t create email templates for the Subscriptio plugin emails using email builder, use the default emails of that plugin.

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    May 16, 2022 at 17:27

    Hello,

    We got reply from the plugin author but without any good news unfortunately https://prnt.sc/jHh4nu1y6kBC

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    May 16, 2022 at 17:17

    Hello,

    Provide us with WP Dashboard and FTP access to your staging version where we could test the sticky add to cart issue, please. We’ll take a closer look at this.

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    May 16, 2022 at 14:44

    Hello,

    That translation came from the TranslatePress plugin, not from our theme https://prnt.sc/6am334UDNpVY

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    May 16, 2022 at 14:06

    Hello,

    What version do you want to use on your site? Tell me and I’ll try to help you with removing unnecessary demo content and blocks and importing of the required version manually for you.

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    May 16, 2022 at 13:30

    Hello,

    1) There is no option to make only the add to cart form sticky in our theme.
    You can try to implement it by additional customization if you have some JS and CSS skills (because additional customization is not included in our support). For example, you can add a custom script

    $(window).scroll(function(){
          if ($(this).scrollTop() > 135) {
              $('.single-product .cart').addClass('cart-fixed');
          } else {
              $('.single-product .cart').removeClass('cart-fixed');
          }
      });

    and custom styles in addition

    .cart-fixed {
        position: fixed;
        background: #fff;
        z-index: 1;
        top: 120px;
        padding: 20px !important;
        border: 1px solid #f0f0f0 !important;
    }

    2) We have added custom code to child theme functions.php to disable the gallery slider for the mobile. Check now, please.

    add_action ('wp', function(){
    	add_filter ('theme_mod_product_gallery_type_et-desktop', function ($value){return 'one_image';}, 50);
    
    }, 70);

    3) We enabled you the Move Product Name in Breadcrumbs option -> https://prnt.sc/IR2fBp1NPBCv and rewrote woocommerce/single-product/title.php in your child-theme with the next changes -> https://prnt.sc/BMIVUep2DDpx
    Check the breadcrumbs now.

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    May 16, 2022 at 12:39

    Hello,

    Add the below function to your child theme functions.php

    function et_woocommerce_pagination() {
    		
    	$args = array(
    		'total'   => wc_get_loop_prop( 'total_pages' ),
    		'current' => wc_get_loop_prop( 'current_page' ),
    		'base'    => esc_url_raw( add_query_arg( 'product-page', '%#%', false ) ),
    		'format'  => '?product-page=%#%',
    	);
    	
    	// @todo make push ajax loaded styles/scripts in footer and prevent load next times
    	etheme_enqueue_style( 'pagination', isset($_GET['et_ajax']));
    	
    	$format = isset( $format ) ? $format : '';
    	$base   = esc_url_raw( add_query_arg( 'product-page', '%#%', false ) );
    	
    	if ( ! wc_get_loop_prop( 'is_shortcode' ) ) {
    		$format = '';
    		$base   = esc_url_raw( str_replace( 999999999, '%#%', remove_query_arg( 'add-to-cart', wp_specialchars_decode( get_pagenum_link( 999999999 ) ) ) ) );
    	}
    	
    	$total   = isset( $total ) ? $total : wc_get_loop_prop( 'total_pages' );
    	$current = isset( $current ) ? $current : wc_get_loop_prop( 'current_page' );
    
    //		$et_per_page  = ( isset( $_REQUEST['et_per_page'] ) ) ? $_REQUEST['et_per_page'] : etheme_get_option( 'products_per_page', 12 );
    	$selected_val = ( isset( $_GET['et_per_page'] ) ) ? $_GET['et_per_page'] : false;
    	
    	return array(
    		'base'      => $base,
    		'format'    => $format,
    		'add_args'  => ( ( ! wc_get_loop_prop( 'is_shortcode' ) && $selected_val ) ? array( 'et_per_page' => $selected_val ) : false ),
    		'current'   => max( 1, $current ),
    		'total'     => $total,
    		'prev_text' => '<i class="et-icon et-'.(is_rtl() ? 'right' : 'left').'-arrow"><span class="screen-reader-text hidden">'.esc_html__('prev', 'xstore').'</span></i>',
    		'next_text' => '<i class="et-icon et-'.(is_rtl() ? 'left' : 'right').'-arrow"><span class="screen-reader-text hidden">'.esc_html__('next', 'xstore').'</span></i>',
    		'type'      => 'list',
    		'end_size'  => 1,
    		'mid_size'  => 1,
    	);
    }

    and change the

    'end_size'  => 1,
    'mid_size'  => 1,

    according to your needs.

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    May 16, 2022 at 11:53

    Hello,

    2) Add the below code to Theme Options > Custom CSS

    .single-product .et-footers-wrapper {
        margin-bottom: 70px;
    }

    4) Sticky header means that the header displays over the page content always when you scroll down (Fixed type) or only if you scroll down and then to the top (Smart type). If you don’t want to have that overlay of the header you can only disable the Sticky header option.

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    May 16, 2022 at 11:46

    Hello,

    Ok, thank you. Let us know about the results.

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    May 16, 2022 at 11:45

    Hello, @HDTeam

    Did you try to edit et-core-plugin/packages/woocommerce-email-template-customizer/includes/email-render.php file and then find

    public function remove_wc_style() {
    		__return_empty_string();
    	}

    replace by

    public function remove_wc_style() {
    		return '';
    	}

    Do you have the error with the emails after that?

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    May 16, 2022 at 11:42

    Hello,

    I see that you repaced the code. So, does everything work ok for you?

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    May 16, 2022 at 11:36

    Hello,

    Point is that solution that we provided helped other clients. If that does not work for you then we need access to your site (WP Dashboard and FTP) to test and find out why that code fix does not work for you and find the other solution that would help.

    So, please, provide us with the necessary access. Or create a staging site (full copy of the production site) and provide us with access to staging to allow us to test and help you.

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    May 16, 2022 at 11:17

    Hello,

    We are trying to reproduce the error on the staging site but never get that. Any chance that we could get a video from you where you face the error? Or at least what product do you add to the cart that gives the error?

    Function that we use and that gives the error in your log is the default WooCommerce function https://woocommerce.wp-a2z.org/oik_api/wc_productis_visible/
    We found a similar report about such an issue here https://wordpress.org/support/topic/ajax-call-error500/ and as we can see it was caused by the cache.

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    May 16, 2022 at 11:00

    Hello,

    Our theme is optimized but it does not have extended settings to manage the OG images and meta description because it’s SEO plugin territory.
    In case you want to manage the SEO settings of the site, it’s recommended to use the SEO plugin and it should not slow down the workflow.

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    May 16, 2022 at 10:53

    Hello,

    Take my apologies for the delay in answering.

    When they plan to release a new theme update, they don’t stop updating the plugins

    Could you, please, explain in more detail? Because I’m not sure that understand what you meant. We do not stop theme support and also do not stop updating of the bundled plugins. So, what was the issue for you with this?

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    May 13, 2022 at 17:04

    Hello,

    1) Go to Theme Options > WooCommerce > Shop > Shop page Layout > Sidebar Position > choose without.
    2) Go to Theme Options > WooCommerce > Shop > Shop page Layout > disable Show Products Toolbar On The Shop Page option.

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    May 13, 2022 at 17:01

    Hello,

    Add the below code to Theme Options > Custom CSS

    .yith-wcwl-add-to-wishlist.wishlist-fragment .separator {
        width: auto;
    }

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    May 13, 2022 at 16:58

    Hello,

    1) Create video of the issue using Recodit tool to allow us to understand all the steps that you do to reproduce the issue from our side.

    2) Go to Appearance > Themes > install and temporarily activate the Storefront theme (default WooCommerce theme). Do you have the same issue when you proceed to checkout with the default theme?

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    May 13, 2022 at 16:52

    Hello,

    If it’s not allowed to disable plugins on the production site then could you, please, create a staging site (full copy of the production)? Because we will need to make tests and code changes to fix the issue, so then better if do this on the staging site than on production.

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    May 13, 2022 at 16:48

    Hello,

    There is no option for this but you can hide that using custom CSS (Theme Options > Custom CSS)

    .sidebar .st-swatch-preview .type-select a[href="https://member.cupidonginza.jp?filter_class=vip"] {
        display: none;
    }

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    May 13, 2022 at 16:39

    Hello,

    Nope, there are no such settings, unfortunately. You can submit customization request here https://www.8theme.com/taskboard/ If other users give their votes for such options then our developers will be able to implement them.

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    May 13, 2022 at 16:37

    Hello,

    That’s strange because we don’t see the mentioned issue https://gyazo.com/e73fd074b554e2fc52b41a98290e99c9

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    May 13, 2022 at 16:34

    Hello,

    Check the screenshot https://prnt.sc/3si03YEzHAtL

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    May 13, 2022 at 16:31

    Hello,

    There is no such option, unfortunately.

    Regards

  • 1 2 3 22 23 24 1,012 1,013 1,014
    Viewing 690 results - 661 through 690 (of 30,391 total)
Viewing 30 posts - 661 through 690 (of 30,391 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.