max9003
Forum Replies Created
-
@jadealombro thank you for your help
I will try to contact the theme developers, but I think that this is not the theme itself and there is one plugin that is fundamentally related to the theme and that uses contact forms with mask function. The name of this plugin is Unyson.
Is there any way to find out which plugin on the website may have a conflict with WPForms? For example, if I will disable them one by one and look at the reaction of the WP contact form?
Hmmm, I suspect that this is due to some kind of plugin conflict or the theme itself, because I have now install WPForms on another website, the mask works fine there..
On the website where the mask doesn’t work, I have the theme The Core Child from ThemeFuse
Forum: Plugins
In reply to: [VDZ CallBack Plugin] Использование сторонних формВадим, я думаю, что вы правы и я воспользуюсь вашим советом ??
Forum: Plugins
In reply to: [VDZ CallBack Plugin] Использование сторонних формВадим, я недостаточно силён в PHP, подскажите пожалуйста данный код также вставляется в файл vdz_call_back_view.php и вместо #your_form указывается id формы?
(function ($) { $(document).ready(function () { $(document).on('click', 'button#your_form_btn', function(e){ //your_code }) }); })(jQuery); //Или (function ($) { $(document).ready(function () { $(document).on('submit', 'form#your_form', function(e){ //your_code }) }); })(jQuery);
Forum: Plugins
In reply to: [VDZ CallBack Plugin] Использование сторонних формВадим благодарю за ответ, то есть в новой версии (1.15.3) можно выводить в модальном окне через шорткоды сторонние формы?
Thank you for your help. I’ve already basically figured it out. It’s really necessary to use the shortcode output function via PHP <? php echo do_shortcode(‘[wpforms id= “2810”]’); ?>
But there’s another problem: I inserted this PHP code <? php echo do_shortcode(‘[wpforms id= “2810”]’); ?> into the file responsible for displaying the modal window, but when the window opens, the WP form is displayed in it, but for some reason, it doesn’t work as it should.
What do I mean by that:
1) The message isn’t sent, the invisible Google ReCaptcha doesn’t work;
2) For some reason, the submit-spin.svg icon is constantly spinning next to the form, which is located in the plugin folder /wpforms-lite/assets/images/submit-spin.svg
At the same time, if I insert the php code <? php echo do_shortcode(‘[wpforms id= “2810”]’); ?> to any other place on the website, the form works fine – the message is sent, the invisible Google ReCaptcha works, there is no rotating submit-spin.svg icon next to the form.
What could be the problem? Why does the form not work correctly only in the modal window?
Forum: Plugins
In reply to: [VDZ CallBack Plugin] Использование сторонних формРазобрался в вопросе. Добавил в файл vdz_callback_view.php код <?php echo do_shortcode(‘[wpforms id=”2810″ title=”Контактная форма”]’); ?> – то есть чтобы вызывалась нужная форма по нужному шорткоду в модальном окне.
Но почему то форма хоть и отображается в модальном окне, но оказывается неработоспособна, то есть сообщение не отправляется и Гугл рекапча не работает. Хотя когда вставляю её через php код в любом другом месте сайта, то она отлично работает. Не работает именно в модальном окне VDZ Callback.
В чём может быть проблема?