Forum Replies Created

Viewing 30 posts - 18,541 through 18,570 (of 68,231 total)
  • Avatar: Rose Tyler
    Rose Tyler
    Support staff
    April 28, 2023 at 06:07

    Hello, Salmi,

    Thank you for your response.

    We’ve uploaded re-created translation files. You can edit translations now – https://prnt.sc/NJaAwN16RplZ https://prnt.sc/uB5kJ1yw47Uy

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    April 28, 2023 at 06:02

    Hello, Rajeshsangwan,

    We did not rename the folders.

    “In case you can reproduce the steps to have such fatal error, please, share in details.

    We are waiting for your detailed reply.”

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    April 28, 2023 at 05:58

    Hello, Link&Grow,

    You’re welcome!

    Please try to test how it works with the default WooCommerce theme – Storefront activated on your site.

    If this situation is independent of the theme, we would recommend you contact the support of WPML and WooCommerce plugins.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    April 27, 2023 at 15:54

    Hello, Webpat,

    Thank you for your response.

    Section Setting > Advanced > Responsive, please read more in the documentation of the Elementor plugin – https://elementor.com/help/mobile-editing/

    We hope this information is helpful.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    April 27, 2023 at 15:00

    Hello, @HideIDK,

    Thank you for your response.

    At the moment, certain query templates are being used. Therefore, if you use the assistant, for example on a product, the result will be a description of the product. We plan to release an update in the near future that will allow you to enter queries that will work without using templates.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    April 27, 2023 at 14:47

    Hello, Fantasy Prints,

    Thank you for contacting us and for using XStore.

    Try to disable “Ajax Menu Dropdown” in Theme options > Speed optimization.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    April 27, 2023 at 14:12

    Hello, Catholicans,

    Thank you for your response.

    We would recommend you set the options according to the values which will suit your expectations best on different devices.
    In case you want to make static width of your website for all you may try to use the next custom CSS (but it is not perfect and should be improved). Example:

    @media only screen and (min-width: 992px) {
        .template-content,
        .page-wrapper,
        .et-container, .container{
            min-width: 1320px;
        }
        .template-content,
        .page-wrapper {
            width: 100%;
        }
    
        .template-container {
            overflow: auto;
            width: 100%;
        }
    }

    I would be glad to help you with new questions, however, please note that additional customization is out of the scope of our basic support.
    If you are interested in paid customization services, please submit a customization request to the WPKraken team at the following link: https://wpkraken.io/?ref=8theme.

    Best Regards,
    8Theme’s Team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    April 27, 2023 at 14:08

    Hello, Ravi,

    Thank you for contacting us and for using XStore.

    Could you provide temporary wp-admin access?
    To provide wp-admin access, you can create a new user account with administrator role via the Dashboard, and provide us with the username and password via the Private Content area.

    Thank you for your cooperation and we look forward to hearing from you soon.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    April 27, 2023 at 13:35

    Hello, Peter,

    As you can see from the code – etheme_widget_post_tabs_thumbnail_size will be changed only, so changes will affect only the mentioned widget in the sidebar.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    April 27, 2023 at 13:24

    Hello, Marie,

    Thank you for contacting us and for using XStore.

    Please provide URLs of pages from your screenshots.

    Thank you for your cooperation and we look forward to hearing from you soon.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    April 27, 2023 at 13:22
    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    April 27, 2023 at 13:17

    Hello, Creativesite,

    Thank you for getting in touch with us.

    Please try to use the next custom CSS code – https://www.8theme.com/topic/woocommerce-product-widget-line-height-limitation/

    We hope this information is helpful.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    April 27, 2023 at 13:13

    Hello, Peter,

    In this case, you can try to add the next code in functions.php file of your child theme:

    add_filter('etheme_widget_post_tabs_thumbnail_size', function (){
    return array(105,68);
    });

    After this, you need to Regenerate Thumbnails to apply changes for images. You can use the Regenerate thumbnails plugin to do this https://wordpress.org/plugins/regenerate-thumbnails/

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    April 27, 2023 at 13:09

    Hello, @HideIDK,

    Thank you for your response.

    We would like to inform you that ChatGPT is an embedded API from OPEN IA and some restrictions that apply to external APIs (like our one) do not apply to it.
    Please provide us with an example of a request that it sends through our API and through ChatGPT in a private message.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    April 27, 2023 at 13:07

    Hello, Anton,

    Thank you for your response.

    This situation is independent of the theme, you will face the same behavior even with the default WooCommerce theme – Storefront activated.
    There is srcset technology is used, you can read more here – https://imagekit.io/responsive-images/#chapter-5—srcset-with-sizes
    This is not a problem, but in case you want to get detailed consultation, you may contact the support of WooCommerce – https://wordpress.org/support/plugin/woocommerce/

    If you have any other questions or concerns, please do not hesitate to reach out to us.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    April 27, 2023 at 12:44

    Hello, Catholicans,

    There is no other solution for you.
    For this time we provided you few possible solutions but no one is perfect for you, unfortunately.
    1/ With only next custom CSS

    .content-product:not(:hover) .product-title a {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    2/ With setting option of Product title limit type → lines and choosing the amount of lines you would like to see at once. And adding the next custom CSS then:

    .content-product:hover {
    –product-title-lines: ”;
    }

    As you know additional customization is out of our scope, according to our support policy → https://prnt.sc/_bGbLLhiz5iv . We really tried to help you but it seems you need to contact the company that provides additional customization service such as https://wpkraken.io/?ref=8theme
    Thanks for understanding our position!

    Best Regards,
    8Theme’s Team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    April 27, 2023 at 12:38

    Hello, Kevin,

    We’ve clicked on “Refresh patches” button and it helped.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    April 27, 2023 at 12:37

    Hello, Can Ozgel,

    Thank you for your response.

    Please clear cache and check now.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    April 27, 2023 at 12:30

    Hello, Catholicans,

    Thank you for getting in touch with us.

    Mentioned settings work for all devices.

    You can use the next custom CSS code in Theme options > Theme Custom CSS > Desktop:

    .header-top .et-container {
        margin-top: -25px;
    }

    We hope this information is helpful.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    April 27, 2023 at 12:28

    Hello, Kevin,

    Please check now.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    April 27, 2023 at 12:25

    Hello, Octavio,

    Thank you for getting in touch with us.

    To remove the filter bar, you can add the next code in Theme options > Theme custom CSS:

    .woocommerce-ordering, .view-switcher, .products-per-page {
        display: none;
    }

    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.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    April 27, 2023 at 12:20

    Hello, Sahnoor Alam,

    Thank you for your response.

    Please check this topic https://www.8theme.com/topic/how-to-insert-javascript-code-just-before-the-closing-tag/
    or contact the support of facebook pixel to get advice.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    April 27, 2023 at 12:04

    Hello, Vaporizer,

    Thank you for your response.

    1/ We’ve enabled Lazy loading for Product elements.
    2/ Please do not select to show all products https://prnt.sc/40C_Ib2gaW3q https://prnt.sc/Gc2NmlSNHSKa WordPress is unable to process this request and is unable to fulfill it. We’ve set 20 https://prnt.sc/X8KUiJp4aEc5 and all is fine now.

    Please check now and be more careful with products limit next time.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    April 27, 2023 at 12:01

    Hello, Link&Grow,

    Changes were done in your child theme. Please check now.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    April 27, 2023 at 10:52

    Hello, PEYO,

    Thank you for contacting us and for using XStore.

    By default, there is no such option. You can also contact the support of the WooCommerce plugin to get detailed consultation – https://wordpress.org/support/plugin/woocommerce/
    You can only create separate categories for MEN and WOMEN (the category page inherits the layout of the Shop page).

    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
    April 27, 2023 at 10:41

    Hello, Peter,

    Thank you for choosing XStore as your WooCommerce WordPress theme.

    Please add the next custom CSS code

    .recent-posts-widget .post-widget-item h4 {
        margin-top: 25px;
    }

    and delete this line of custom CSS code – https://prnt.sc/vJVXQGFfE5n1

    We hope this information is helpful.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    April 27, 2023 at 10:37

    Hello, Can Ozgel,

    Thank you for your response.

    Please check now – https://prnt.sc/8QQ1nMDLJQtb

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    April 27, 2023 at 10:14

    Hello, Abbdul Rahman,

    Thank you for contacting us and for using XStore.

    Private Content

    Kind Regards,
    8theme team

    Please contact administrator
    for this information.
    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    April 27, 2023 at 10:09

    Hello, Sahnoor Alam,

    Thank you for your response.

    You can add [woocommerce_order_tracking] shortocde on a page, that shows the order tracking form
    https://woocommerce.com/document/woocommerce-shortcodes/

    We hope this information is helpful.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    April 27, 2023 at 10:07

    Hello, Dimitris,

    Thank you for contacting us and for using XStore.

    Please try a solution from this topic – https://www.8theme.com/topic/translating-promo-text-and-search-account-links-in-the-header/

    We hope this information is helpful.

    Kind Regards,
    8theme team

  • 1 2 3 618 619 620 2,273 2,274 2,275
    Viewing 18,570 results - 18,541 through 18,570 (of 68,231 total)
Viewing 30 posts - 18,541 through 18,570 (of 68,231 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.