matroxdp
Forum Replies Created
-
Forum: Plugins
In reply to: [Ultimate Profile Builder] How to switch off captchaThanks for operative changes!
Forum: Plugins
In reply to: [Ultimate Profile Builder] How to switch off captchaThanks for answer!
I’ll wait update of UPB.
Good Luck!
Forum: Plugins
In reply to: [JQuery Vertical Mega Menu Widget] Mega Menu Shows Main Menu not my menus@Xyno1 thanks for your advice.
I solved my problem by this way:
1. Optimized CSS-files of Vertical Mega Menu
2. I added Mega Menu and Main Menu IDs to the field “Menu container class” in “Ajaxify WordPress Site” plugin.Forum: Plugins
In reply to: [Contact Form 7] Appearance of additional fields@buzztone Thanks for your attention to my question
Forum: Plugins
In reply to: [Contact Form 7] Chockbox with rolldown selectionHa! I asked nearly question not seeing your variant
My question is – https://www.ads-software.com/support/topic/appearance-of-additional-fields?replies=1#post-6048242
Forum: Plugins
In reply to: [Contact Form 7] Different pop-up contact forms on one pageHow it works
Forum: Plugins
In reply to: [Contact Form 7] Different pop-up contact forms on one pagePresented codes are realising different value of pop-up CF7 by clicking on pic, that changes on mouse move
Forum: Plugins
In reply to: [Contact Form 7] Different pop-up contact forms on one page1. Correct code to show CF7 in popup / iframe of fancybox:
<img src=”/wp-content/uploads/2014/09/01-01.png” onmouseout=”this.src=’/wp-content/uploads/2014/09/01-01.png'” onmouseover=”this.src=’/wp-content/uploads/2014/09/01-02.png'”/>
<div style=”display:none” class=”fancybox-hidden”>
<div id=”contact_form_pop”>
[your_contact_form7 shortcode]</div> </div>2.To display another pop-up Contact Form 7 on the same page you need to add only 1 digit to a href=”#contact_form_pop” and id=”contact_form_pop”.
See the code. I place 1:
<img src=”/wp-content/uploads/2014/09/01-01.png” onmouseout=”this.src=’/wp-content/uploads/2014/09/01-01.png'” onmouseover=”this.src=’/wp-content/uploads/2014/09/01-02.png'”/>
<div style=”display:none” class=”fancybox-hidden”>
<div id=”contact_form_pop1″>
[your_contact_form7 another shortcode]</div> </div>3. To display more than 2 Contact Forms 7 on one page you have to add every time different digits.
4. One more example for newbies. Code for the 3rd Contact Form 7 on the same page where we placed code for 1st and 2nd pop-up CF 7.
<img src=”/wp-content/uploads/2014/09/01-01.png” onmouseout=”this.src=’/wp-content/uploads/2014/09/01-01.png'” onmouseover=”this.src=’/wp-content/uploads/2014/09/01-02.png'”/>
<div style=”display:none” class=”fancybox-hidden”>
<div id=”contact_form_pop2″>
[your_contact_form7 another shortcode]</div> </div>5. I found this solution here – https://www.ads-software.com/support/topic/easy-fancybox-contact-form-7?replies=24
Many thanks to bgt9752!
Forum: Plugins
In reply to: [Contact Form 7] Different pop-up contact forms on one pageCode in my previous message is not correct.
See this problem solution in the next message
Forum: Plugins
In reply to: [Contact Form 7] Sending invalid email formatThanks, Rob W!
Forum: Plugins
In reply to: [Contact Form 7] Drop down menu on same line as surrounding textGive link not screenshot
Forum: Plugins
In reply to: [Contact Form 7] Formatting issue with checkboxesDon’t check “Put a label first, a checkbox last?”. Your form would be much pretty.
So you have to re-generate checboxes tag in your contact form without checking this option.
Forum: Plugins
In reply to: [Contact Form 7] Formatting issue with checkboxesPaste
span.wpcf7-list-item {display:block;}into your CF7 style.css (/CF-folder/includes/css/style.css)
This solved my same problem.