Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I need to create a form in gravity forms. Client need to full in the form and should be able to add sections with title, body and image. I can create the form but can't get frontend add fieldgroup or section to work. Anyone ideas how to make fields repeatable on frontend?
We have a solution (Gravity Wiz team) called Nested Forms:
https://gravitywiz.com/documentation/gravity-forms-nested-forms/
We wrote a guest post on the Gravity Forms website about it here:
https://www.gravityforms.com/repeatable-data-wordpress-forms/
Gravity Forms does not allow creation of fields from the front-end. All fields have to be created from the backend.
If you want to have some sort of repeatable fields try to use the list field with multiple columns and then style them with your own css.
If you want to change the input type of a particular column from text to dropdown you can use the gform_column_input filter which is described in further details here
I did export the form then duplicated them by copy paste in the xml file. Conditional logic changed numbers end now it works. This was the fastest option for me. Other solutions didn't have the right options.
Related
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed last year.
Improve this question
I have an existing form with some main and conditional fields.
I want the conditional fields to show as a floating pop-up beside the main fields (instead of having that conditional fields showing within the page/form itself), but there seems to have no native way of doing it, nor existing add-on. Any input on how I could do it?
Thanks!
This might help: https://gravitywiz.com/documentation/gravity-forms-nested-forms/
You can make the nested forms show up with conditional logic in your setup. The nested forms appear in a pop-up window.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I want to display different messages from a database in rows of divs, it's for a portion of the site where people will be able to share stories. I want it to look like rows of post-it notes with the stories on them, then if they want to read more they can click on one and it goes to a detailed view of it. It's an ASP.net application, so I've been using VB for a lot of the other stuff.
It's a pretty simple database, with two-three fields (PK, Story, name) and I think it will use a page load event. Just not sure how to access the data. Previously I dealt with displaying grids and rows, but now I want something more organic.
I'm not an ASP guy, but the question seems a little vague. When pulling the data, you'll want to truncate the info from the database for the front page and then link to a full page with all of the info from that post.
For the display, you could use the help of the jQuery masonry plugin.
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
Is there a way to set up a Webform such that I can turn component field submissions into tokens for use in the submission email?
For example, I want to include "Message from [email address]" in the email subject line. The default options only allow for including only the component field in the email (subject: [email]), or only custom text.
Is there a way I can turn the component field submission into a token for use in the email? Looks like there's a module for turning webform items into tokens, but it's not for use within webform.
Figured it out - use %value[key] whenever you want to get a submitted field value. I found it from a random search that brought me here: http://drupal.org/node/1010648.
Feels like %value[key] should be in the Token help dictionary in the email section of the webform admin UI this was a botch to find.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 months ago.
Improve this question
I have to build a custom plugin for a client who is using wordpress. I am dont use wordpress so I dont know how it works. I just want to understand how this will work..
I have to build them a search plugin that will be display inside a page. It will get data from an excel spreadsheet that lives on the server, so they can edit that content and it will pull all that data into the page. Is this a plugin? where do I start?
I will also need to use jQuery to do some more to the data once on the page.
Wordpress plugin develop does take some work, but it is extremely well documented. I would go to the following pages in the order that they are listed:
http://codex.wordpress.org/Writing_a_Plugin
http://codex.wordpress.org/Plugin_API
http://codex.wordpress.org/Plugin_Resources
Once you've gone through those pages, you should have a lot more information on plugin development and how you might do what you are after.
I had the same question. Looking at some plugins, it seems they are using short codes to place plugins in specific pages. Here's the link in wordpress:
http://codex.wordpress.org/Shortcode_API
For WordPress 6.0 please check this page:
Plugin developer handbook
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
I need to design a site map page of my website in asp.net.
I am confused whether to use custom site map and retrieve information from database, or directly retrieve information from database and bind it to hyperlink...
Please help.
The benefit of using a custom site map provider is that you can use it with the SiteMapPath, Menu, and TreeView controls. You also get access to security trimming, which is nice if your site map changes based upon permissions.
The downside is it can be fairly rigid when it comes to query strings, and you have to jump through the provider model hoops just to retrieve some data from the database.
I would say to use the custom provider if you plan on displaying the sitemap in multiple ways (Menu, SiteMapPath, etc) or need security trimming. If you don't, follow KISS, and just do your basic data access with hyperlinks.