Felix Arntz
Forum Replies Created
-
Forum: Plugins
In reply to: [Bootstrap for Contact Form 7] HorizontalHi,
you can easily create a form like this with code like the following:
[text* your-name]First Name[/text*] [email* your-email]Email Address[/email*] [submit "GO"]
The most important part though is to go to the “Additional Settings” tab and enter a new line there:
layout:inline
This should create the markup you need.
Forum: Plugins
In reply to: [Bootstrap for Contact Form 7] default:user_* not workingI just released a new version that fixes this issue.
Thanks for making me aware!
Forum: Plugins
In reply to: [Bootstrap for Contact Form 7] default:user_* not workingHi levonk,
sorry for the late answer. Could you show me how you are using the shortcode please?
Forum: Plugins
In reply to: [Bootstrap for Contact Form 7] Three columns layoutHi bacoskun,
you have to use custom code to accomplish that, but it should work. I adjusted your code from above like that:
<div class="row"> <div class="col-xs-12 col-sm-4 col-md-4 col-lg-3"> [select* emp1 include_blank "1 adet" "2 adet" "3 adet" "4 adet"]Exp1[/select*] [select* honey include_blank "250 gr" "500 gr" "1kg"]Honey[/select*] [select* cheese include_blank "250 gr" "500 gr" "1kg"]Cheese[/select*] </div> <div class="col-xs-12 col-sm-4 col-md-4 col-lg-3"> [select* emp1 include_blank "1 adet" "2 adet" "3 adet" "4 adet"]Exp1[/select*] [select* honey include_blank "250 gr" "500 gr" "1kg"]Honey[/select*] [select* cheese include_blank "250 gr" "500 gr" "1kg"]Cheese[/select*] </div> <div class="col-xs-12 col-sm-4 col-md-4 col-lg-3"> [select* emp1 include_blank "1 adet" "2 adet" "3 adet" "4 adet"]Exp1[/select*] [select* honey include_blank "250 gr" "500 gr" "1kg"]Honey[/select*] [select* cheese include_blank "250 gr" "500 gr" "1kg"]Cheese[/select*] </div> </div>
Hope this helps!
Thanks for the kind words! I will look into it shortly.
Forum: Plugins
In reply to: [Plugin Name: Responsive Video Shortcodes] Remove title text from Vimeo / etcHi lauriek,
while Vimeo supports adjustments there, WordPress unfortunately currently does not support it. I will check if this can be implemented into WP.
Forum: Plugins
In reply to: [Plugin Name: Responsive Video Shortcodes] Add time to start and endHi baservil,
this is currently not possible, WordPress does not support it, and I’m not even sure whether oEmbed supports it. For which provider are you asking, YouTube?
Forum: Plugins
In reply to: [Bootstrap for Contact Form 7] Inline radio buttons and checkboxesHi Bjorn,
the latest release now includes the filters. They have a pretty long name due to the complexity, but I wanted them to allow to basically modify anything. A short description of the filter can be found at the bottom of the Other Notes section.
In your case, you would need to adjust the ‘group_layout’ field in the array.
Hope that solves your issue! ??
Hi purfitt,
yes, that is correct, but be careful to provide the function
newsinline()
too. Whatever you choose as the second parameter for theadd_filter()
call must be the name of the function as well. I would advise you to use a more specific name than ‘newsinline’, for example by prefixing it, to prevent possible conflicts with another function of that name.Forum: Plugins
In reply to: [Bootstrap for Contact Form 7] Inline radio buttons and checkboxesOkay. In case of “Yes/No” decisions I’ve always been using a single checkbox, that’s why it never occurred to me. But yeah, your point makes sense to me.
I think I will introduce a few filters, so that very specific adjustments like yours can be made using those filters. Sounds good?
Forum: Plugins
In reply to: [Bootstrap for Contact Form 7] Added css to headHi,
I just released a minor update which addresses that issue by making the styles specific to the contact forms. Thanks a lot for making me aware of that!
I hope your theme is looking good again!
Forum: Plugins
In reply to: [Bootstrap for Contact Form 7] Inline radio buttons and checkboxesHi,
I’m not sure if this is a too specific case. When I initially created the plugin, my idea was that regardless of how someone designs a form, it should have consistency – that’s why I added a setting like this to the form as a whole, not to an individual field (note that the same applies to field size for example). I’m just asking you whether you really need this possibility, and (if it is not confidential or anything), I would like to hear about your use-case. Maybe it’s something I’m missing.
Although it is great to have options, I don’t want to overcomplicate the plugin, that’s why I’m asking.
As an alternative solution I could apply a filter to every field’s settings so that they could be adjusted programmatically to change anything you want. But first, I’m curious about your opinion regarding the above.
Forum: Reviews
In reply to: [Bootstrap for Contact Form 7] Very usefulIt comes late, but I guess better now than never. ??
I rewrote the plugin’s readme, so there are more detailed explainations of all the features available.
In particular, check out the Other Notes section.
Forum: Plugins
In reply to: [Bootstrap for Contact Form 7] Send button sizeHi,
I’ve just released a new version where this is possible. There is a new form property ‘submit_size’ which allows you to override the default ‘size’ (which still affects the whole form). It also takes ‘default’, ‘small’ or ‘large’ as possible values.
This step is also explained here.
Forum: Plugins
In reply to: [Bootstrap for Contact Form 7] REALLY Simple Captcha InlineHi,
I’ve just released a new version where you can accomplish this. To do so, leave out the
[captchac]
shortcode completely, and instead enter an additional optioninclude_captchac
into the[captchar]
shortcode tag.This step is also described here.
Hope this helps you!