I want to be able to add a tag on the fly to a tags collection, using autoform and select2, similar to this example from select2.
https://select2.github.io/examples.html#tags
I have already created a tags collection which I can add to it from it's dedicated form. The enduser must be able to select available tags and be able to add a new tag if not available in the global form without going to the dedicated tags form. Is there some server based hook for autoform I can attach to or something to achieve this feature ?
You need to add the tags option.
There is an example here: https://github.com/aldeed/meteor-autoform-select2#setting-select2-options
Related
I'm attempting to get a shortcode working inside a form field's value="[shortcode]".
This shortcode grabs a URL parameter and prints it. This works everywhere else on the page. It even work in double quotes outside of my form. It also works inside the form as the Submit button text. For some reason, it just won't work within the value="".
This is for an ActiveCampaign form.
Any ideas on how to resolve this? Thanks for your help in advance.
Thanks for the information about using a shortcode outside the content editor. That's useful. The standard Beaver Builder HTML module doesn't accept PHP. I found a plugin called PHP Everywhere that adds the ability to accept PHP anywhere within Wordpress. Using this, I was able to use PHP within the HTML module to use the _GET variable to grab the parameter. Cheers!
Hire one solution. Using dynamic population in Gravity Forms allows you to dynamically populate a field with a value (or values depending on the field type). This value can be passed via Query Strings, Shortcode and/or Hooks. This walk-through will give you an example of how to use each method of dynamic population to dynamically populate a field on your form! https://docs.gravityforms.com/using-dynamic-population/
What i want to achieve is to populate a form field with data previously stored in the database by a previous form. More specifically a dropdown list that loads a set of values that have been stored by the entries of a previous form.
here's a snippet I wrote that helps you do this.
https://gist.github.com/spivurno/9707874
You can add a plugin header to this and install as a plugin or install as a snippet via a snippet manager like Code Snippets.
You'll need to configure this to target your desired form and field and also modify the query args to populate the entries you want. You'll see a note next to each parameter letting you know what it does.
I'm working on a project where I want to display product's image and customs attributes from Woocommerce.
I already set attributes like this
I want in my php code display all the attributes (title et terms).
I already try <?php $product->list_attributes(); ?>. It works fine but data are displaying in <table>. I want to customize the display.
Thanks for your help !
Whenever I get stuck with a custom method like this in WooCommerce, I try to resort to the docs to see what is going on.
If you inspect the source for this method, you'll find that it's actually using a custom template single-product/product-attributes.php to output this table you're seeing.
In order to change the output, you have two options:
Override the template via your theme
Observe single-product/product-attributes.php and use the information there to write your own custom loop in your original template.
The second option means that you'll likely use the get_attributes() method, instead of list_attributes().
I have a Task form for my Taskmanager. I'm building to get more experience with symfony.
However I use the collection field to add some Tags to a Task.
When I create a task, I don't want to add only a new Task, so I used the entity field to choose an action from my Tag table in the database.
But this is not exactly where I am looking for. Is there a Tutorial or Example to type in a Tag and select it like on the bottom of the stackoverflow.com Ask Question page?
I don't know how to realize this.
how can i theme a specipc element that created by node form? i saw mytheme_checkbox etc but i want to do phoneselect_theme() { } and change there the value or whatever
You should be able to use the Theme Developer module to find which function or template file is outputting the part of the page you're interested in theming. Theme Developer will also tell you what "suggestions" you can use to override the output. Check out the Theme Developer screencast for an introduction on how to use the module.
Implement a form alter hook in your module, and then use the #theme attribute inside the alter hook to override the form element's theming.
You'll want to know the exact form ID of your form. This writeup by Lullabot will tell you how to find the form ID and it will give you an example of how to modify forms.
Don't forget to register your new theming function using the theme hook.