Tagged: quform
-
AuthorPosts
-
July 4, 2013 at 2:08 pm #25757
There is some extra spacing in my forms:
http://blueberrywebsites.com.br/bbmarketing/servicos/email-marketing/
And the quform inside the tabs are going crazy
http://blueberrywebsites.com.br/bbmarketing/contratar/#tab-id-2
July 4, 2013 at 2:59 pm #128117Add this to your custom css to fix the spacing :)
/* Fixes Quform spacing */
.iphorm-element-spacer {
padding: 0 !important;
margin: 0 !important;
}
.iphorm-outer p {
margin: 0 !important;
}
.iphorm-outer br {
display: none !important;
}
July 5, 2013 at 3:00 pm #128118Hi ramontessmann,
The css from dekkert should help but please remember that we do *not* offer support on third party plugins or customizing the output of those plugins.
In this case, you can try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:
.iphorm-element-text {
margin-bottom: 0px !important;
}Which will force the bottom of the input text to have a smaller margin than what the theme has elsewhere.
Regards,
Devin
July 5, 2013 at 3:33 pm #128119Hi, I have the same problem but the developers were kind enough to say that you would be able to help.
They say:
Tell them the wpautop filter needs to be before the do_shortcode filter on the_content as is the case in the default WordPress theme, or give them the link to this page.
Here is the link: http://support.themecatcher.net/quform-wordpress/troubleshooting/common-problems/extra-spacing-in-the-form
July 5, 2013 at 9:02 pm #128120Thanks!!! I’ve updated to the new version 1.71:
http://blueberrywebsites.com.br/blueberry/contratar/#tab-id-1
and the form with conditional logic is not showing, I solved in the version 1.6, can you take a look? This form is driving me crazy!!!
July 6, 2013 at 7:03 am #128121You can try this fix: https://kriesi.at/support/topic/quform-its-my-4th-topic-and-nobody-answer-me#post-122772 or open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodestextblock.php and replace
return "<div class='avia_textblock'>".wpautop( ShortcodeHelper::avia_remove_autop($content) )."</div>";
with
return "<div class='avia_textblock'>".ShortcodeHelper::avia_remove_autop($content)."</div>";
This modification will remove the wpautop() function/filter which adds p tags to the content. Maybe this will also fix the conditional logic issue.
July 8, 2013 at 2:29 pm #128122Hello, the extra spacing is okay, the problem is the logic:
We have a problem with the tabs theme enfold, this error is caused when using the “Logic” of QUFORM, he simply disappears from the tab (in 1.6 it was on the menu tab) in the current version (V: 1.7) it is in “hidden”.
July 8, 2013 at 2:50 pm #128123Hi,
The problem are empty lines in the javascript being echoed in php in the plugin. Lets look at this one, http://prntscr.com/1e80m1 , the code that creates this jquery is in /includes/form.php (inside the plugin folder) and these are the lines http://i.imgur.com/vtPkr2F.png As you can see, the paragraph tags are exactly where there are empty lines in the code. If you open the /includes/form.php file, and remove those 2 empty lines , 35 and 37. You will not get http://prntscr.com/1e80m1 this problem anymore.
That file form.php has other blank lines (empty lines) as well, just go through it and take them out, and that’s all. Takes 1 minute or less.
Thanks,
Nick
July 9, 2013 at 7:34 pm #128124Nick Thanks for the reply, I decided to use Gravity Forms, thanks for all!!!!
Your support is amazing!
July 10, 2013 at 4:01 am #128125Glad we could help :)
Let us know if you have any other questions or issues.
-
AuthorPosts
- The topic ‘QUFORM its my 4th topic and nobody answer me’ is closed to new replies.