Forum Replies Created

Viewing 30 posts - 16,051 through 16,080 (of 68,227 total)
  • Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 21, 2023 at 08:34

    Hello, Charles Siritho,

    Thank you for your response.
    In case the situation is independent of our theme, we would recommend you contact the support of WooCommerce – https://wordpress.org/support/plugin/woocommerce/

    Kind Regards,
    8theme team

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

    Hello, Williambondsjr,

    The mentioned custom CSS code should solve your question.
    I will let you know once get a reply from the dev team, but it will take some time because of a large amount of requests.
    We hope for your understanding and patience.

    Kind Regards,
    8theme team

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

    Hello, Tushant Kumar,

    Thank you for contacting us and for using XStore.

    We’ve checked your site and do not see problems. Please clear cache and check one more time.
    Please describe in more detail what exactly is incorrect right now.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 21, 2023 at 05:36

    Hello, Charles Siritho,

    Thank you for contacting us and for using XStore.

    Please check how it works when the default WooCommerce theme – Storefront is activated on the site.
    If you get the same behavior, you need to contact WooCommerce support, because the situation is independent of our theme.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 21, 2023 at 05:34

    Hello, Zeal Evince,

    Thank you for letting us know.
    If you have any additional 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 21, 2023 at 05:33

    Hello, David,

    Thank you for choosing XStore as your WooCommerce WordPress theme.

    Please go to Theme Options > WooCommerce (Shop) > Shop > Products style > Show Excerpt In Content Product > Off.
    It is because your excerpt contains tags, and when a part of the excerpt is taken to show on the Shop page, some unclosed tags cause the problem. Keep the option disabled or edit the description of products. You can add a few words in the Short description area, without tags, then the content will be displayed just fine.
    We hope this information is helpful.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 21, 2023 at 05:31

    Hello, Atahan,

    Thank you for contacting us and for using XStore.

    Theme Options > WooCommerce > Shop > Design Products > Elements > disable Categories.

    We hope this information is helpful.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 21, 2023 at 05:30

    Hello, Cheyingtan,

    Thank you for choosing XStore as your WooCommerce WordPress theme.

    Theme Options > Typography > line height > add “px” – https://prnt.sc/d1j_ULkmt3Ae

    We hope this information is helpful.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 21, 2023 at 05:27
    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 21, 2023 at 05:27

    Hello, Chia,

    Thank you for contacting us and for using XStore.

    This situation should not be related to our theme, because we did not get such a report from our customers before.
    Please read this article – https://www.cloudways.com/blog/wordpress-404-error/ and contact your hosting provider to get assistance.

    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 21, 2023 at 05:20

    Hello, Riccardo,

    When mentioned 3rd party plugins are disabled all work fine? Have you tried to contact the support of plugins?

    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.

    Please let us know the answer you get from the plugin authors, we mean plugin after disabling which the logging in works fine.
    After that, provide temporary wp-admin and FTP access, so we can check what can be done to help you from our side.

    Kind Regards,
    8theme team

    Please contact administrator
    for this information.
    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 21, 2023 at 05:16

    Hello, Vsonacci,

    Thank you for contacting us and for using XStore.

    1/ Please check how it works with the default WooCommerce theme – Storefront.

    2/ Please try to disable all the third-party plugins (including cache plugins), that do not come bundled with XStore https://www.8theme.com/documentation/xstore/plugins/included-plugins/ , clear the cache of the browser, and check then. Maybe one of the additional plugins is the reason for the problem.

    We would appreciate it if you could provide us with the URL of your site and the results of the tests mentioned.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 20, 2023 at 17:10

    Hello @amiseo,

    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 20, 2023 at 16:56

    Hello, Nathan,

    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/ . Additionally, please clear the cache of your browser and check again. It is possible that one of the additional plugins is causing problems.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 20, 2023 at 16:50

    Hello, Dominus,

    Thank you for contacting us and for using XStore.

    Please note that additional customization in files is out of our basic support scope.

    We have developed the following functions for you, simply add them to the functions.php of the child theme.
    Note: if you are using additional plugins for user registration, the sent functions may not work.

    if (! function_exists('et_validate_registration_by_email_domain')){
        // Hook into the registration_errors action (To prevent default WordPress registration)
        add_action('registration_errors', 'et_validate_registration_by_email_domain', 10, 3);
    
        function et_validate_registration_by_email_domain($errors, $sanitized_user_login, $user_email) {
            // Define the list of allowed email domains
            $allowed_domains = array('gmail.com', 'yahoo.com');
    
            // Extract the domain part of the email address
            $user_email_parts = explode('@', $user_email);
            $user_domain = strtolower(end($user_email_parts));
    
            // Check if the user's email domain is in the allowed list
            if (!in_array($user_domain, $allowed_domains)) {
                $errors->add('email_domain_not_allowed', __('Registration is allowed only with specific email domains.', 'xstore-child'));
            }
    
            // Return the modified errors object
            return $errors;
        }
    }
    
    if (! function_exists('et_wc_validate_registration_by_email_domain')){
        // Hook into the woocommerce_new_customer_data filter (To prevent WooCommerce registration)
        add_filter('woocommerce_new_customer_data', 'et_wc_validate_registration_by_email_domain', 10, 1);
    
        function et_wc_validate_registration_by_email_domain($customer_data) {
            // Define the list of allowed email domains
            $allowed_domains = array('gmail.com', 'yahoo.com');
    
            // Get the email address from the customer data
            $user_email = $customer_data['user_email'];
    
            // Extract the domain part of the email address
            $user_email_parts = explode('@', $user_email);
            $user_domain = strtolower(end($user_email_parts));
    
            // Check if the user's email domain is in the allowed list
            if (!in_array($user_domain, $allowed_domains)) {
                throw new Exception(__('Registration is allowed only with specific email domains.', 'xstore-child'));
            }
    
            // Return the modified customer data
            return $customer_data;
        }
    }

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 20, 2023 at 16:40

    Hello, Nathan,

    We can’t log in – https://prnt.sc/AMUa7MCEesGH Please check the credentials.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 20, 2023 at 16:39

    Hello, Aasem,

    We have resolved your issue, the bug was caused by a conflict between the following options:
    Customizer -> WooCommerce (Shop) -> Shop -> Shop Page Layout -> Hide Sidebar On Mobile Devices -> ON
    and
    Customizer ->
    WooCommerce (Shop) -> Shop -> Shop Page Layout -> Sidebar Position -> Off-Canvas.

    We have made changes to the following files:
    wp-content/themes/js/modules/sidebarCanvas.min.js
    wp-content/themes/js/theme/sidebarCanvas.js
    wp-content/themes/theme/functions.php

    These changes will also be included in the next update (not in the v.9.1.11).

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 20, 2023 at 16:10

    Hello, Vaporizer,

    To confirm that the issue is specific to the theme, please test how it works when the default WooCommerce theme – Storefront is activated on the site.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 20, 2023 at 16:09

    Hello, Nathan,

    Thank you for choosing XStore as your WooCommerce WordPress theme.

    Your site is under maintenance mode, so we can’t check it without access.
    Could you provide temporary wp-admin access?

    Kind Regards,
    8theme team

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

    Hello, Montse,

    Thank you for your response.

    We can’t log in. Please provide the correct wp-admin access.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 20, 2023 at 16:06

    Hello, Erksoft,

    Thank you for your response.
    Of course, it is – XStore > Theme Options Header Builder > Logo settings on WordPress.
    Here you can find videos about header Builder – https://www.youtube.com/c/8theme/videos

    Kind Regards,
    8theme team

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

    Hello, Vaporizer,

    Thank you for contacting us and for using XStore.

    1/ You are using an additional plugin to add mentioned filters. Have you tried to contact support of that plugin?

    2/ Please check how it works when the default WooCommerce theme – Storefront is activated on the site.
    Let us know the result.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 20, 2023 at 15:46

    Hello, Montse,

    Thank you for contacting us and for using XStore.

    Sale Label Text can be changed via Theme Options > WooCommerce > Shop Elements> Product Badges.

    To translate “up to”, please check the translation of XStore Core plugin.
    Provide temporary wp-admin access, so we can check your settings.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 20, 2023 at 14:51

    Hello, Zio43,

    We have resolved your issue, which was related to the file_get_contents function.

    On the server, code may be running that changes the response based on the request method (e.g. POST, GET). This can lead to different responses. We have added fixes to prevent this.

    The changes were made to the following files:
    et-core-plugin/app/traits/base.php
    et-core-plugin/packages/vendor/opauth/facebook/FacebookStrategy.php
    et-core-plugin/packages/vendor/opauth/google/GoogleStrategy.php

    The fix will also be included in the next update.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 20, 2023 at 14:50

    Hello, Zeal Evince,

    Please record a video of the problem, upload it on a filesharing service, for example – https://wetransfer.com/ , and provide us with URL.

    Best Regards,
    8Theme’s Team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 20, 2023 at 14:20

    Hello, Zeal Evince,

    Please record a video of the problem.

    We do not see the problem on – https://zealevince.com/shop/football-merchandise/clubs-and-country-football-jersey/club-football-jerseys/23-24-season-football-jerseys/arsenal-home-jersey-23-24-season-premium/

    Best Regards,
    8Theme’s Team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 20, 2023 at 14:05

    Hello, Williambondsjr,

    Thank you for your response.

    Currently, your theme settings have the highest priority.

    I will send your request to our dev team.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 20, 2023 at 14:04

    Hello, Subham Jain,

    Thank you for your response.

    Please provide screenshots of mentioned circles.
    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.

    In the private content, you can find a video of what we can see on your site.

    Kind Regards,
    8theme team

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

    Hello, Shngz,

    Thank you for getting in touch with us.

    It requests additional customization in files, which is out of our basic support scope.
    You can contact our partners with a request about additional customization service, the Codeable team, who will perform your task quickly and with high quality – https://codeable.io/?ref=qGTdX

    Kind Regards,
    8theme team

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

    Hello, Subham Jain,

    The mentioned plugin will remove ALL content from the site, read more in documentation for the plugin.
    If this is not what you are looking for, describe your request in more detail, please.

    Kind Regards,
    8theme team

  • 1 2 3 535 536 537 2,273 2,274 2,275
    Viewing 16,080 results - 16,051 through 16,080 (of 68,227 total)
Viewing 30 posts - 16,051 through 16,080 (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.