This topic contains a post which is marked as Best Answer. Press here if you would like to see it.
*

yvelef

  • **
  • 14 posts
Bugs if im send 2 or more messages in same page
« on: January 25, 2022, 08:44:52 PM »
for Delta theme

Bugs if im send 2 or more messages in same page if (Form submit without reload (Ajax) is ON)

After send 2 or more messages, the left down box is empty not have message inside block (We've just sent an e-mail to the seller) the bos is empty

thanks

*

MB Themes

Re: Bugs if im send 2 or more messages in same page
« Reply #1 on: January 25, 2022, 09:37:29 PM »
Isnt form closed after message sending?
Something in browser console?
Have you tried with ajax disabled if it works ok?
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

yvelef

  • **
  • 14 posts
Re: Bugs if im send 2 or more messages in same page
« Reply #2 on: January 25, 2022, 10:14:57 PM »
yes is ok (if ajax disabled)

just in send message not ok

theme delta 1.2.0 and osclass 8.0.1

im try with different browser and same bugs and im try in your demo and try in another web site user and i have same bugs

Marked as best answer by yvelef on January 29, 2022, 12:36:00 AM
*

MB Themes

Re: Bugs if im send 2 or more messages in same page
« Reply #3 on: January 28, 2022, 07:30:14 AM »
@yvelef
Problem is with code in global.js:
Code: [Select]
inputs.val("").removeClass('valid');
Should be replaced with:
Code: [Select]
form.find('input[type="text"], textarea').val("").removeClass('valid');
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots