Forum Replies Created

Viewing 30 posts - 1 through 30 (of 75 total)
  • Avatar: Chris0483
    Chris0483
    Participant
    November 28, 2025 at 14:37

    Hello

    All YITH plugin not works with the emmail builder.

    Greatings

    Avatar: Chris0483
    Chris0483
    Participant
    November 26, 2025 at 17:20

    Hello

    Sorry for my late reply. So we added this code : ` __(‘YITH Advanced Refund System: New request – email for admin’, ‘xstore-core’),
    ];
    $emails[‘yith_ars_new_message_admin_email’] = [
    ‘name’ => __(‘YITH Advanced Refund System: New message – email for admin’, ‘xstore-core’),
    ];
    $emails[‘yith_ars_new_request_user_email’] = [
    ‘name’ => __(‘YITH Advanced Refund System: New request – email for user’, ‘xstore-core’),
    ];
    $emails[‘yith_ars_new_message_user_email’] = [
    ‘name’ => __(‘YITH Advanced Refund System: New message – email for user’, ‘xstore-core’),
    ];
    $emails[‘yith_ars_processing_user_email’] = [
    ‘name’ => __(‘YITH Advanced Refund System: Request Processing – email for user’, ‘xstore-core’),
    ];
    $emails[‘yith_ars_on_hold_user_email’] = [
    ‘name’ => __(‘YITH Advanced Refund System: On hold request – email for user’, ‘xstore-core’),
    ];
    $emails[‘yith_ars_approved_user_email’] = [
    ‘name’ => __(‘YITH Advanced Refund System: E-mail de demande de remboursement Accepté – email for user’, ‘xstore-core’),
    ];
    $emails[‘yith_ars_rejected_user_email’] = [
    ‘name’ => __(‘YITH Advanced Refund System: E-mail de demande de remboursement Refusé – email for user’, ‘xstore-core’),
    ];
    $emails[‘yith_ars_coupon_user_email’] = [
    ‘name’ => __(‘YITH Advanced Refund System: E-mail envoi code promotionnel – email for user’, ‘xstore-core’),
    ];
    return $emails;
    }

    add_filter(‘viwec_accept_email_type’, function($emails) {
    $emails[] = ‘yith_ars_new_request_admin_email’;
    $emails[] = ‘yith_ars_new_message_admin_email’;
    $emails[] = ‘yith_ars_new_request_user_email’;
    $emails[] = ‘yith_ars_new_message_user_email’;
    $emails[] = ‘yith_ars_processing_user_email’;
    $emails[] = ‘yith_ars_on_hold_user_email’;
    $emails[] = ‘yith_ars_approved_user_email’;
    $emails[] = ‘yith_ars_rejected_user_email’;
    $emails[] = ‘yith_ars_coupon_user_email’;
    return $emails;
    }, 100);

    add_filter(‘viwec_admin_email_types’, function($emails) {
    $emails[] = ‘yith_ars_new_request_admin_email’;
    $emails[] = ‘yith_ars_new_message_admin_email’;
    return $emails;
    }, 100);

    add_filter(‘viwec_user_email_types’, function($emails) {
    $emails[] = ‘yith_ars_new_request_user_email’;
    $emails[] = ‘yith_ars_new_message_user_email’;
    $emails[] = ‘yith_ars_processing_user_email’;
    $emails[] = ‘yith_ars_on_hold_user_email’;
    $emails[] = ‘yith_ars_approved_user_email’;
    $emails[] = ‘yith_ars_rejected_user_email’;
    $emails[] = ‘yith_ars_coupon_user_email’;
    return $emails;
    }, 100);`

    But all admin emails are not assigned to the admin in your email builder, and every email sent does not use its template but uses the default template. If I go to /wp-admin/admin.php?page=wc-settings&tab=email and click on the button “Edit with XStore Email Maker”, a new empty template is opened instead of the template that was already created.

    Can help us please ?

    Best regards

    Chris

    Please contact administrator
    for this information.
    Avatar: Chris0483
    Chris0483
    Participant
    November 26, 2025 at 16:58

    Thanks for the support! My topic “Some of the filter-based search functions take a huge amount of time to load.” has been successfully resolved.

    Avatar: Chris0483
    Chris0483
    Participant
    November 25, 2025 at 17:48

    Hello

    Thanks to your reply.
    Here the FTP access.
    Best regards
    Chris

    Please contact administrator
    for this information.
    Avatar: Chris0483
    Chris0483
    Participant
    October 21, 2025 at 13:58

    Hello Sir

    It works fine thanks you.
    Do you know or understand why there is this issue please ?
    Greatings
    Chris

    Avatar: Chris0483
    Chris0483
    Participant
    September 30, 2025 at 14:56

    Hello

    I don’t understan, now it’s works fine…
    But we haven’t again order today… and I see no issue, do you see an issue in the order process please ?

    Best regards

    Chirs

    Avatar: Chris0483
    Chris0483
    Participant
    September 26, 2025 at 14:57

    Thanks to your reply.
    Can you send me the files please its all your files used (shipping, gift, card, box) or where I can dowload that ?

    Best regards

    Chris

    Avatar: Chris0483
    Chris0483
    Participant
    September 25, 2025 at 18:29

    Not good Luca

    We. can apply price “From to :” on the products that have the quantity discount option enabled at the product level, in order to display the discounted unit price.

    Files is visible for topic creator and
    support staff only.
    Avatar: Chris0483
    Chris0483
    Participant
    September 25, 2025 at 10:32

    Hi Luca

    I tried it, but there no change. An idea maybe ?

    Best regards

    Chris

    Avatar: Chris0483
    Chris0483
    Participant
    September 8, 2025 at 11:17

    Hello

    Sorry for my late reply. Your code works fine but if I try to add the other YITH email, they don’t appear in the manufacturer: this is the code I added : `add_filter(‘viwec_register_email_type’, ‘n2t_viwec_register_email_type’);
    function n2t_viwec_register_email_type($emails){
    $emails[‘yith_ars_new_request_admin_email’] = [
    ‘name’ => __( ‘YITH Advanced Refund System: New request – email for admin’, ‘xstore-core’ ),
    ];
    $emails[‘yith_ars_new_message_admin_email’] = [
    ‘name’ => __( ‘YITH Advanced Refund System: New message – email for admin’, ‘xstore-core’ ),
    ];
    $emails[‘yith_ars_new_request_user_email’] = [
    ‘name’ => __( ‘YITH Advanced Refund System: New request – email for user’, ‘xstore-core’ ),
    ];
    $emails[‘yith_ars_new_message_user_email’] = [
    ‘name’ => __( ‘YITH Advanced Refund System: New message – email for user’, ‘xstore-core’ ),
    ];
    $emails[‘yith_ars_processing_user_email’] = [
    ‘name’ => __( ‘YITH Advanced Refund System: Request Processing – email for user’, ‘xstore-core’ ),
    ];
    $emails[‘yith_ars_processing_user_email’] = [
    ‘name’ => __( ‘YITH Advanced Refund System: Request Processing – email for user’, ‘xstore-core’ ),
    ];
    $emails[‘yith_ars_on_hold_user_email’] = [
    ‘name’ => __( ‘YITH Advanced Refund System: On hold request – email for user’, ‘xstore-core’ ),
    ];
    return $emails;
    }

    add_filter(‘viwec_accept_email_type’, function($emails) {
    $emails[] = ‘yith_ars_new_request_admin_email’;
    $emails[] = ‘yith_ars_new_message_admin_email’;
    $emails[] = ‘yith_ars_new_request_user_email’;
    $emails[] = ‘yith_ars_new_message_user_email’;
    $emails[] = ‘yith_ars_processing_user_email’;
    $emails[] = ‘yith_ars_on_hold_user_email’;
    return $emails;
    }, 100);

    add_filter(‘viwec_admin_email_types’, function($emails) {
    $emails[] = ‘yith_ars_new_request_admin_email’;
    $emails[] = ‘yith_ars_new_message_admin_email’;
    $emails[] = ‘yith_ars_new_request_user_email’;
    $emails[] = ‘yith_ars_new_message_user_email’;
    $emails[] = ‘yith_ars_processing_user_email’;
    $emails[] = ‘yith_ars_on_hold_user_email’;
    return $emails;
    }, 100);`

    I need to add other YITH email, and all email for your function back in stock notifiy.

    Thanks to your helps
    Best regards
    Chris

    Avatar: Chris0483
    Chris0483
    Participant
    July 17, 2025 at 15:45

    Here informations ftp
    greatings
    chris

    Please contact administrator
    for this information.
    Avatar: Chris0483
    Chris0483
    Participant
    July 17, 2025 at 14:33

    here the template
    best regards
    chris

    Please contact administrator
    for this information.
    Avatar: Chris0483
    Chris0483
    Participant
    July 17, 2025 at 11:17

    Hello

    Sorry, in private content area you’ll find the corrected logins.
    For information I havan’t brands transients

    Best regards

    Please contact administrator
    for this information.
    Avatar: Chris0483
    Chris0483
    Participant
    July 10, 2025 at 09:12

    Hello
    Thanks to your reply.
    I try it : add_filter(‘viwec_accept_email_type’, function($emails) {
    $emails[] = ‘yith_ars_new_request_admin_email’;
    $emails[] = ‘yith_ars_new_message_admin_email’;
    return $emails;
    });

    But there is no change in builder emails.
    I give you the ftp access to check to that.
    Thanks a lot
    Chris

    Please contact administrator
    for this information.
    Avatar: Chris0483
    Chris0483
    Participant
    May 23, 2025 at 15:54

    Hello

    We want to show the label Out of Stock like that :

    Out of Stock Label: If you enable this option a label of “Out of Stock” will appear on the out of stock products.

    Currently there is not label to show. I give you 2 URL in private content area.

    greatings

    Please contact administrator
    for this information.
    Avatar: Chris0483
    Chris0483
    Participant
    May 20, 2025 at 15:12

    Hello sir

    Here the video in private content.

    Best regards

    Please contact administrator
    for this information.
    Avatar: Chris0483
    Chris0483
    Participant
    November 19, 2024 at 11:21

    Ok sir thanks to your reply, but I paid for your service more than 2 weeks ago, but I have no feedback on whether the work was done?

    Greatings

    Avatar: Chris0483
    Chris0483
    Participant
    November 5, 2024 at 16:08

    Hello

    Ok I purchased your option I am waiting for your return now.

    Best regards

    Chris

    Avatar: Chris0483
    Chris0483
    Participant
    October 14, 2024 at 16:36

    Hello Sir

    Have checked but I want your Cart Element because it is more complete but woocommerce is missing an essential element, it does not have the woocommmerce notification alerts “error alert, info alert…” I think you should integrate this because it is an important point for the e-commerce
    Can you tell me how to add compatibility please? I will manually integrate it into the child theme.

    Best regards
    Chris

    Avatar: Chris0483
    Chris0483
    Participant
    October 7, 2024 at 15:01

    Hello Sir

    Ok I do that next time.
    You can see on this link many shoes with size out of stock with cross in archive page, but no cross on product page when zise is out of stock
    Best regards
    Chris

    Please contact administrator
    for this information.
    Avatar: Chris0483
    Chris0483
    Participant
    October 7, 2024 at 14:05

    Hello Sir

    Is good for translation. But for out stock product can you tell me please ?
    Besr regards
    Chris

    Avatar: Chris0483
    Chris0483
    Participant
    September 24, 2024 at 16:19

    Hello Sir
    Sorry for my late reply. I want to customize this progresss bar in reviews : https://www.awesomescreenshot.com/image/50625306?key=5726d22a78f2b482408080c7d5c2dbe0

    Best regards

    Avatar: Chris0483
    Chris0483
    Participant
    September 6, 2024 at 10:22

    Hello again,

    I do that but is the same issue. https://prnt.sc/FVT8MBuVJYbA
    Best regards
    Chris

    Avatar: Chris0483
    Chris0483
    Participant
    September 6, 2024 at 07:56

    Hello Sir

    Thanks to your helps. So unfortunately, I need you again, on our store the section et-product-rating-summary is on fullwidth.
    Can you tell me how to do the same on our demo page https://xstore.8theme.com/elementor3/electronic-mega-market/product/fujifilm-instax-link-wide/ please ?

    Best regards
    Chris

    Please contact administrator
    for this information.
    Avatar: Chris0483
    Chris0483
    Participant
    September 4, 2024 at 12:40

    Hello Sir
    Here access cpanel.
    Best regards
    Chris

    Please contact administrator
    for this information.
    Avatar: Chris0483
    Chris0483
    Participant
    September 3, 2024 at 15:26

    Hello Sir

    I tried everything but reviews customers not works.
    Can you help us to fix that please ?
    Best regards
    Chris

    Avatar: Chris0483
    Chris0483
    Participant
    April 6, 2024 at 16:06

    Hello Sir

    Ok thanks, it’s works fine. But, can you tell me to enable rankmat on this type of page please, because not found to do that.

    Best regards
    chris

    Avatar: Chris0483
    Chris0483
    Participant
    December 13, 2023 at 14:14

    Hello Sir

    I gave you the link in private content, I give you again the link.

    best regards

    Chris

    Please contact administrator
    for this information.
    Avatar: Chris0483
    Chris0483
    Participant
    October 27, 2023 at 10:07

    Hello Sir

    I have contacted Elementor but no problem on their side.
    I give you access to cpanel and FTP you can check all.

    Best regards

    Chris

    Please contact administrator
    for this information.
    Avatar: Chris0483
    Chris0483
    Participant
    October 26, 2023 at 19:02

    Hello
    I’m back to you and issue seems to come from your template. I disabled it and everything works again. If I reactivate it the site crashes intermittently depending on the pages that we open in front and in admin.

    Can you check that please ?

    Best regards

    Chris

  • 1 2 3
    Viewing 30 results - 1 through 30 (of 75 total)
Viewing 30 posts - 1 through 30 (of 75 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.