Forum Replies Created

Viewing 30 posts - 16,261 through 16,290 (of 68,227 total)
  • Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 13, 2023 at 07:26

    Hello, Gianluca,

    Thank you for your response.
    Please set the administrator role for the Testeco user in your Dashboard, so we can access the wp-admin panel.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 13, 2023 at 07:22
    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 13, 2023 at 07:21

    Hello, Hmf0160,

    Thank you for contacting us and for using XStore.

    Please provide the URL of the product in the Private Content area.

    Could you provide temporary wp-admin and FTP access? We need to check the situation more deeply.

    Kind Regards,
    8theme team

    Please contact administrator
    for this information.
    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 13, 2023 at 07:19

    Hello, @amd4ever,

    We’ve checked the coffee-tables category page, and we do not see the LOOP LOUNGE product there. Please clear cache and check one more time.
    We added a video in the product content area.

    Kind Regards,
    8theme team

    Please contact administrator
    for this information.
    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 13, 2023 at 07:14

    Hello, Hmf0160,

    Thank you for contacting us and for using XStore.

    Please provide a screenshot for a better understanding of your request.
    Use Lightshot screenshot or Gyazo tool to make screenshots and share the links here, or you can use a file-sharing service such as WeTransfer https://wetransfer.com/ to upload ready photos there and provide us with URLs.

    Could you provide temporary wp-admin access, so we can check your settings?

    Kind Regards,
    8theme team

    Please contact administrator
    for this information.
    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 13, 2023 at 07:08

    Hello, Os0281,

    Thank you for contacting us and for using XStore.

    Please make sure that you translated the theme, WooCommerce and XStore Core plugins https://www.8theme.com/documentation/xstore/theme-translation/base-theme-translation/ https://woocommerce.com/document/woocommerce-localization/

    About “the email address bar at the footer”, check the form content from Mailchimp for WordPress plugin – https://prnt.sc/sNijjOzTg4_6

    Provide temporary wp-admin access, so we can check your settings.

    Kind Regards,
    8theme team

    Please contact administrator
    for this information.
    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 13, 2023 at 07:03

    Hello, Marta,

    Thank you for your response.
    You can do the simple test, temporarily disable the slider revolution plugin and test the speed using https://gtmetrix.com/
    If you want to use the plugin still, please read this article – https://www.sliderrevolution.com/tutorials/optimizing-load-speed-and-performance/

    We hope this information is helpful.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 12, 2023 at 15:58

    Hello, Gianluca,

    Thank you for getting in touch with us.

    Please provide us with FTP access (FTP host, FTP username, FTP password, FTP port, FTP encryption). To create FTP access, please contact your hosting provider for assistance.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 12, 2023 at 15:55

    Hello, Marta,

    The storefront doesn’t have the settings and features that XStore has.

    “Maybe there is a third party plugin that is not compatible with your template and that’s why it slows it down?” – it is possible, please check it by disabling 3rd party plugins.

    Also, please check the Private Content area.

    Kind Regards,
    8theme team

    Please contact administrator
    for this information.
    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 12, 2023 at 15:36

    You’re welcome!

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 12, 2023 at 15:09

    Hello, @George,

    Thank you for getting in touch with us.

    If you want to translate the theme and Core plugin, please follow this article – https://www.8theme.com/documentation/xstore/theme-translation/base-theme-translation/

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 12, 2023 at 14:54

    Hello,

    Please clear cache and check now. We’ve disabled Ajax add to cart via Theme Options.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 12, 2023 at 14:43

    Hello, Uguranlar,

    We have added the next custom snippet to your child-theme/functions.php

    add_filter( 'gettext', 'etheme_child_translate_text', 10, 3 );
    function etheme_child_translate_text( $translated_text, $untranslated_text, $domain ) {
        switch ($translated_text) {
            case 'Username or email':
                return 'Kullanıcı adı veya mail adresi';
                break;
            case 'Password':
                return 'Şifre';
                break;
            case 'Email address':
                return 'Mail adresi';
                break;
            default:
                return $translated_text;
                break;
        }
    }

    Result → https://prnt.sc/9kINnQN5tsYH

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 12, 2023 at 14:08

    Hello, Vlad,

    By default, WordPress removes the <br> and <p> tags from the content.

    To disable this, try to add the following code to the functions.php file of your child theme:

    /**
     * Disable wp_editor() filtering for <br> tags.
     *
     * @param array $settings The array of editor settings.
     * @return array $settings The updated array of editor settings.
     */
    function disable_wp_editor_filtering( $settings ) {
        $settings['wpautop'] = false;
        return $settings;
    }
    add_filter( 'wp_editor_settings', 'disable_wp_editor_filtering' );
    
    /**
     * Disable removal of <br> tags in wp_editor content.
     *
     * @param string $content The editor content.
     * @return string $content The updated editor content.
     */
    function disable_wp_editor_remove_br( $content ) {
        remove_filter( 'content_save_pre', 'wp_filter_post_kses' );
        return $content;
    }
    add_filter( 'content_save_pre', 'disable_wp_editor_remove_br' );

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 12, 2023 at 13:27

    Hello, @amd4ever,

    You need to check your WooCommerce settings https://prnt.sc/IAYSuVdvDDgq https://woocommerce.com/document/configuring-woocommerce-settings/#advanced-settings

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 12, 2023 at 13:23

    Hello, Marius,

    Thank you for getting in touch with us.

    We can’t connect FTP: https://prnt.sc/9fI0c8LFEtmp
    Please try to connect to FTP using FileZilla by yourself, and provide us with the correct credentials.

    Kind Regards,
    8theme team

    Please contact administrator
    for this information.
    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 12, 2023 at 13:14

    Hello, Rc Trends,

    Thank you for contacting us and for using XStore.

    Please read this article – https://www.wpbeginner.com/wp-tutorials/how-to-fix-secure-connection-error-in-wordpress/

    We hope this information is helpful.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 12, 2023 at 12:29

    Hello,

    Please provide FTP access also (FTP host, FTP username, FTP password, FTP port, FTP encryption). To create FTP access, please contact your hosting provider for assistance.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 12, 2023 at 11:11

    Hello, Vlad,

    Do you mean the situation with the Text tab?
    As was explained, it is not our theme bug, but a specific behavior of fields there. There is no quick solution, unfortunately.
    You can create static blocks and use them like in this example – https://prnt.sc/TmzJmWcy3ASm
    We did not get complaints from other users, but you can post a request to our dev team here – https://www.8theme.com/taskboard/, and other customers will be able to vote there.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 12, 2023 at 11:00

    Hello, Uguranlar,

    We will have another specialist review your inquiry in greater detail and will be in touch with you.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 12, 2023 at 08:55

    Hello, Shehzad Ghazi,

    Thank you for contacting us and for using XStore.

    Please note that we do not give a guarantee for full theme compatibility with all existing 3rd party plugins. Sometimes, not always, you need additionally customize the theme or plugin to make them work together. Unfortunately, it’s not possible for the author to make the theme compatible with all the existing plugins and additional customization is outside the scope of our basic support.

    Here is an example of using a shortcode in the Single Product Builder – https://prnt.sc/34WYoGigYLKw

    We hope this information is helpful.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 12, 2023 at 08:43

    Hello, Uguranlar,

    Thank you for contacting us and for using XStore.

    Mentioned strings come from XStore Core plugin. Please translate them for Core plugin, clear all cache (plugin, server, browser), and check the result.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 12, 2023 at 08:17

    Hello,

    We apologize for the delay in responding.

    1/ Thi is a screenshot from your site – https://prnt.sc/3oL5uqNKnyFE You need to update the theme – https://www.8theme.com/documentation/xstore/theme-installation/theme-update/
    Please do not update Core plugin, before the theme update next time.

    2/ About variable products, their functionality comes from WooCommerce plugin – https://woocommerce.com/document/variable-product/ , so we would recommend you contact support of WooCommerce – https://wordpress.org/support/plugin/woocommerce/
    The situation with variations is independent of our theme on your site, you will get the same result even with Storefront (default WC theme) activated.

    If you have any other questions or concerns, please do not hesitate to reach out to us. Our support team is always available to assist you.

    Best Regards,
    8Theme’s Team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 12, 2023 at 08:05

    Hello,

    Thank you for contacting us and for using XStore.

    We’ve checked your Home page – https://l****ropped.com.au/ and we do not see the problem.
    Could you record a video of the problem?

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 12, 2023 at 07:40

    Hello, Marius,

    Thank you for your response.

    1/ We can see a few .js errors on your site from plugins, for example – https://prnt.sc/ottujBuFI-eK

    In order to troubleshoot the issue you are experiencing, we suggest that you first try disabling all third-party plugins (including cache plugins) that are not bundled with XStore. You can refer to the following link for a list of included plugins: https://www.8theme.com/documentation/xstore/plugins/included-plugins/ . After that, please clear the cache of your browser and check again. It is possible that one or a few of the additional plugins are causing problems.

    2/ For this question – https://prnt.sc/-vGyuPKDNe02 , please create a separate topic – https://www.8theme.com/forums/xstore-wordpress-support-forum/ and provide FTP access, then we will check what can be done to help you. To create FTP access, please contact your hosting provider for assistance.

    Please note that we do not give a guaranty for full theme compatibility with all existing 3rd party plugins. Sometimes, not always, you need additionally customize the theme or plugin to make them work together. Unfortunately, it’s not possible for the author to make the theme compatible with all the existing plugins and additional customization is outside the scope of our basic support.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 11, 2023 at 16:33

    Hello, Nightcrawler,

    With the access you provided, we can’t edit child theme files.
    Please try the next code (functions.php):

    add_filter( 'gettext', 'etheme_out_of_stock_translate_text', 10, 3 );
    function etheme_out_of_stock_translate_text( $translated_text, $untranslated_text, $domain ) {
        if ( 'Out of stock' === $translated_text ) {
            return 'Sold out';
        }
        return $translated_text;
    }

    If this doesn’t help, please provide FTP access (FTP host, FTP username, FTP password, FTP port, FTP encryption). To create FTP access, please contact your hosting provider for assistance.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 11, 2023 at 15:50

    Hello, Gianluca,

    Thank you for getting in touch with us.

    Please read this article – https://elementor.com/help/500-error/

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 11, 2023 at 15:49

    Hello, Yuvi,

    Thank you for your response.

    1/ As we can see, variations are loaded fine right now.

    2/ You may use Loco Translate plugin > create a translation for the theme and all plugins from which ‘Basket’ word comes and change it there.

    If you have any other questions or concerns, please do not hesitate to reach out to us. Our support team is always available to assist you.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 11, 2023 at 15:40

    Hello, Larry,

    Thank you for contacting us and for using XStore.

    Registration functionality comes from WooCommerce plugin, so we would recommend you contact their support to get advice – https://wordpress.org/support/plugin/woocommerce/

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 11, 2023 at 15:37

    Hello, David,

    Thank you for contacting us and for using XStore.

    Please check now.

    Kind Regards,
    8theme team

  • 1 2 3 542 543 544 2,273 2,274 2,275
    Viewing 16,290 results - 16,261 through 16,290 (of 68,227 total)
Viewing 30 posts - 16,261 through 16,290 (of 68,227 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.