Forum Replies Created

Viewing 30 posts - 21,181 through 21,210 (of 68,231 total)
  • Avatar: Rose Tyler
    Rose Tyler
    Support staff
    February 3, 2023 at 16:58

    You’re welcome!

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    February 3, 2023 at 16:48

    Hello, Kestutis

    Those areas are for html code but not for PHP language. You may create shortcodes for showing your site info and put those shortcodes in html areas then.
    Example of content of your html area :
    [site_title_shortcode]

    But firstly you should create such shortcode in your child theme/functions.php

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    February 3, 2023 at 16:47

    Hello, Jay545452

    Thanks for the reply.

    Images of categories can’t be imported with the same id’s to the demo, so, you need to select categories, in the settings of the element of the page, that you want to show, or even upload your own images for categories via Dashboard > Products > Categories.

    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
    February 3, 2023 at 16:43

    Hello,

    Please try to use our Built-in Wishlist, you can find it in Theme Options > WooCommerce.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    February 3, 2023 at 15:26

    Hello, Jay545452

    It is recommended to run import on a fresh WordPress installation. If you just do a new import over the old one, a mess in menus, media, and theme options will appear.
    You can use the WordPress Database Reset plugin https://wordpress.org/plugins/wordpress-database-reset/ The plugin can be used to remove all the existing content, then you will be able to install the demo version from scratch.

    Thanks for notices about the demo, in both cases, this option should be disabled – https://prnt.sc/82Qyl4qDfGlg

    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
    February 3, 2023 at 15:16

    Hello, Farcela

    All these “snippets” are generated by Woocommerce so it is better to contact them with such questions.
    Also, if you have some PHP skills you may analyze by your own next file of WooCommerce -> plugins/woocommerce/includes/class-wc-structured-data.php
    It contains all schema org elements for different cases. There you may also find actions and filters which could be used/modified from child-theme/functions.php

    Best Regards,
    8Themes Team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    February 3, 2023 at 14:56

    Hello, Shicka

    Please open up a separate topic https://www.8theme.com/forums/xstore-wordpress-support-forum/ for your problem, describe it in more detail, and provide temporary wp-admin access, via the Private Content area.

    Best Regards,
    8Themes Team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    February 3, 2023 at 14:55

    Hello, Aryanna_p

    Provide us with more detail, please, and screenshots.

    Have you tried to disable 3rd party plugins and check then?

    Provide temporary wp-admin access also.

    Best Regards,
    8Themes Team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    February 3, 2023 at 13:47

    Hello,

    We’ve uploaded translation files for the theme and Core plugin.

    Please check.

    Now you should be able to continue translation via Loco Translate > Themes > XStore and Loco Translate > Plugins > XStore Core.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    February 3, 2023 at 13:40

    Hello, Yousaf

    We’ve checked your Home page and do not see problems.
    What browser do you use? Have you cleared cache of browser?
    What actions should we do to be able to see the problem?

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    February 3, 2023 at 13:30

    Hello, LambdaSP

    Fixed.
    We renamed slugs – https://prnt.sc/t0nVHprH7ND3 https://prnt.sc/chF2xyLZsmZO
    , because only Latin characters can be used for slugs, and any characters for names.

    Best Regards,
    8Themes Team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    February 3, 2023 at 13:19

    Hello, Peter

    Please go to Theme Settings > use search to find “Redirect To Wishlist On Remove” option and switch it On.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    February 3, 2023 at 13:18

    Hello, Enjin

    Thanks for details!
    As we found in next article -> https://support.advancedcustomfields.com/forums/topic/get-custom-taxonomy-field-value/
    Support it may be needed sometimes to change get_field('field_name') with next structure get_field('titre', $taxonomy . '_' .$term_id)
    We changed the code in your functions.php and here it is ->

    if ( ! function_exists( 'etheme_second_cat_desc' ) ) {
        function etheme_second_cat_desc() {
          global $wp_query;
          $cat = $wp_query->get_queried_object();
    
          $desc = '';
          if ( property_exists( $cat, 'term_id' ) && ! is_search() ) {
            /* My ACF */
            $titre_bas = get_field('titre', $cat->taxonomy . '_' .$cat->term_id);
            $sous_titre = get_field('sous-titre', $cat->taxonomy . '_' .$cat->term_id);
            $img_bas = get_field('image_sous_produits', $cat->taxonomy . '_' .$cat->term_id);
            $desc = get_term_meta( $cat->term_id, '_et_second_description', true );
          } else {
            return;
          }
    
          if ( ! empty( $desc ) ) {
            echo '<div class="bloc_bas"><div class="term-description et_second-description test">' . $titre_bas . $sous_titre . do_shortcode( $desc ) . '</div><div class="banner-bas" style="background-image: url('.$img_bas.');"></div></div>';
          }
        }
      }

    Code file -> https://prnt.sc/kDdiLW8fobWs
    Backend -> https://prnt.sc/9djdbpMNz542
    Frontend -> https://prnt.sc/Kcn2yBy0CYsh
    We hope you find the code snippet above useful and you are satisfied with the result!

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    February 3, 2023 at 13:08

    Hello,

    Okay, let’s do as you say.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    February 3, 2023 at 10:58

    Hello, Claudio

    1/ We have set up the Customizer -> Speed Optimization for improved speed. We recommend the following settings for it:
    https://prnt.sc/uKauGbEi41o0
    https://prnt.sc/COHlbIbyPZQk
    https://prnt.sc/C_DumlXg95Tr
    https://prnt.sc/_Ppadug33eBN

    2/ We’ve activated and configured W3 Total Cache plugin. We recommend the following settings for it:
    https://prnt.sc/lfuL_J2Xup6r
    https://prnt.sc/aZZ_dR6u5eZh
    https://prnt.sc/O_sbJmiudZ4f
    https://prnt.sc/Z-TrVY_FdPIf
    https://prnt.sc/8XwIByHPgG9j

    You can activate other settings also and test them to achieve better results, but do not activate – https://prnt.sc/UOIoz6YHIze2 , to prevent the problem.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    February 3, 2023 at 09:34

    Hello,

    We asked you to contact the plugin support because there is no a hook (means a quick) solution from the theme side. If you want to know the hook/action we “touch” to show popup added to cart then it is located in JS. Woocommerce on ajax add to cart action makes next document trigger ->
    $( document.body ).trigger( 'adding_to_cart', [ $thisbutton, data ] ); ( https://prnt.sc/ya_4D4LaIB_d ) and after successful adding product to cart WooCommerce makes next trigger -> $( document.body ).trigger( 'added_to_cart', [ response.fragments, response.cart_hash, $thisbutton ] );
    https://prnt.sc/lOwiHyh2VWNf . In our theme’s scripts we have part of the code which starts on such triggers and one of them is called on success ‘added_to_cart’ trigger -> https://prnt.sc/M_qqUCouAsNh and below we call our popup after added to cart with ajax -> https://prnt.sc/quAVrr-inPss

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    February 3, 2023 at 09:20

    Hello,

    We suggest that you try disabling the XStore AMP plugin and then checking the results.

    The wp-admin access credentials that you previously provided are no longer valid, so we are unable to log in.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    February 3, 2023 at 09:07

    Hello, Yodo

    Unfortunately, we are unable to log in – https://prnt.sc/8cOTZS_3ekpX . Please provide us with the correct wp-admin access.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    February 3, 2023 at 08:55

    Hello, Paivi

    Translation files of the theme should be placed in /wp-content/languages/themes/ folder,
    plugins, like Core plugin, in /wp-content/languages/plugins folder
    with correct names, for example, xstore-ar.po for the theme and xstore-core-ar.po for XStore Core plugin, then you will not lose translation after the update – https://www.8theme.com/documentation/xstore/theme-translation/base-theme-translation/
    We would recommend doing a backup of all the files before any update.

    Also, after every update, you need to synchronize translation – https://www.8theme.com/documentation/xstore/theme-translation/translation-files-update/ Sometimes new strings are added, and only after synchronization, you’ll be able to translate new strings or strings that were changed. Not always, but some strings can be missing after the sync and you need to find and translate them one more time, this is independent of us and relates to WP functionality.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    February 3, 2023 at 08:53

    Hello, Vladis

    We need FTP access to be able to connect to your files using FileZilla file manager. Please ask your hosting provider support to create FTP account to your site files and give us the credentials (hostname, username, password, port).

    As we can see it is not our theme activated and there is no Core plugin.
    After getting FTP access, activate XStore theme, disable all 3rd party plugins, and activate XStore Core plugin then.
    Let us know in case you face a problem or record a video of the problem, please.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    February 3, 2023 at 08:46

    Hello, Paulkeys

    The problem was independent of the theme, and it seems to be solved now.
    If this problem happens again, I am still not sure why it occurred, you will need to contact the support of the WooCommerce plugin.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    February 3, 2023 at 08:37

    Hello, Enjin

    1/ We added one more filter in your child-theme/functions.php
    https://prnt.sc/NOgqn7DCzRi8

    add_filter('sten_wc_filter_image_swatch_size', function() {
        return 'woocommerce_thumbnail';
      });

    now your filter widget looks much better -> https://prnt.sc/pmHMaEtId-nK
    2/ Could you provide us more information with screenshots about your idea to output acf fields. Also, as I see you have modifications in your child-theme/functions.php -> https://prnt.sc/PFUmNnaFYyS8, so, please check if works without your customizations of removing hooks. By default we output
    woocommerce_archive_description
    hook in place according to this option https://prnt.sc/6qBooH7j0lmp which you may find in archive-product.php -> https://prnt.sc/06BHXTiTWSs5 (and below)

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    February 3, 2023 at 08:33

    Hello, Jay545452

    Thank you for using XStore.

    You can find examples of our elements here – https://xstore.8theme.com/elementor/demos/minimal-fashion02/design-elements/

    Request about vertical filters, you can post here – https://www.8theme.com/taskboard/ , then our dev team will read it.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    February 3, 2023 at 08:18

    Thanks for the reply.
    Could you, please try to disable all plugins, including Elementor, but except WooCommerce, WPBakery, and XStore Core and check how the Lightbox works then?

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    February 3, 2023 at 08:00

    Hello, LambdaSP

    Thank you for your response.

    We will have another specialist review your inquiry in greater detail and will be in touch with you shortly. We kindly ask for your patience and request that you do not alter any access settings.

    Best Regards,
    8Themes Team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    February 2, 2023 at 18:39

    Hello,

    Please unregister and delete XStore from the old site https://prnt.sc/3aY8QDGNF_lh in order to activate it on the new site.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    February 2, 2023 at 18:35

    Hello, Claudio

    We would like to inquire about the cache plugin that was used and the settings that caused the issue.
    If possible, please provide us with temporary WordPress admin access.
    Thank you for your cooperation.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    February 2, 2023 at 16:56

    Hello, Cr3atorf1lm

    We suppose that the situation on your site is independent of our theme and you need to contact the support of WooCommerce plugin to get advice. To confirm it, you need to check how categories are displayed when not our theme is activated on the site.

    Go to Appearance > Themes > install and activate the Storefront theme. Then test and let us know the result.
    Widgets could change positions after theme switching, so open the Appearance > Widgets tab before switching to be able to move the widgets to the correct area after switching back.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    February 2, 2023 at 16:53

    Hello,

    When we tried to install WooCommerce plugin via Dashboard then next error message appeared –
    Instalação falhou: <!DOCTYPE html> <!--[if lt IE 7]> <![endif]--> <!--[if IE 7]> <![endif]--> <!--[if IE 8]> <![endif]--> <!--[if gt IE 8]><!--> <!--<![endif]--> acessoriosvallentina.com.br | 524: A timeout occurred A timeout occurred Error code 524 Visit cloudflare.com for more information. 2023-02-02 14:47:28 UTC You Browser Working Prague Cloudflare Working acessoriosvallentina.com.br Host Error What happened? The origin web server timed out responding to this request. What can I do? If you're a visitor of this website: Please try again in a few minutes. If you're the owner of this website: The connection to the origin web server was made, but the origin web server timed out before responding. The likely cause is an overloaded background task, database or application, stressing the resources on your web server. To resolve, please work with your hosting provider or web development team to free up resources for your database or overloaded application. Additional troubleshooting information here. Cloudflare Ray ID: 7933b67a8c88b369 &bull; Your IP: Click to reveal 176.98.73.25 &bull; Performance & security by Cloudflare (function(){function d(){var b=a.getElementById("cf-footer-item-ip"),c=a.getElementById("cf-footer-ip-reveal");b&&"classList"in b&&(b.classList.remove("hidden"),c.addEventListener("click",function(){c.classList.add("hidden");a.getElementById("cf-footer-ip").classList.remove("hidden")}))}var a=document;document.addEventListener&&a.addEventListener("DOMContentLoaded",d)})(); <!-- /.error-footer -->
    so we would recommend you to contact your hosting provider about this error.

    We’ve uploaded the WooCommerce plugin via FTP and activated it on your site.
    Please check now.

    Kind Regards,
    8theme team

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    February 2, 2023 at 16:44

    Hello, St7878

    Please clear cache and heck how it works now.

    Kind Regards,
    8theme team

  • 1 2 3 706 707 708 2,273 2,274 2,275
    Viewing 21,210 results - 21,181 through 21,210 (of 68,231 total)
Viewing 30 posts - 21,181 through 21,210 (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.