Tagged Questions
0
votes
0answers
42 views
User driven content problems
I am trying to build a website that will allow users to post from the front end. I need to be able to have the user enter a title, a category, and tags. For the content of the post, I would ideally ...
0
votes
0answers
30 views
Updating user_meta from pop-up form in back-end
I have created a custom wordpress backend area, which lists out all members on my wordpress site. Currently, there is a point system involved for loyalty rewards, which is maintained in this back-end ...
0
votes
0answers
25 views
Only allow customize partial of the email address when register / edit in the user profile
I can not find a fitting answer online, so I need to see all the pros in here for a favor.
I am thinking about only allow user to edit partial of the email address when register, but I do not know if ...
0
votes
3answers
84 views
Trouble using wordpress functions in a pop-up modal form
I'm working on a plugin and I've added a button to the tinymce editor that pops up a modal form, with options for the shortcode, and then inserts the shortcode with the selected options in to the ...
1
vote
0answers
233 views
jQuery Plugin to use Wordpress functions in AJAX request
I'm using Chained Selects jQuery Plugin to create multiple chained selection fields. I'm using the remote version of the plugin to build the related options by means of AJAX request from a separate ...
0
votes
1answer
80 views
dynamic enquiry form
I'm thinking to use Contact Form 7 to create a simple enquiry form like : name, phone, email.
This enquiry form will be displayed on every portfolio page.
What I want to do is to retrieve also ...
1
vote
2answers
931 views
Inserting Gravity Form checkbox values into Advanced Custom Fields
I'm trying to feed checkbox values from a Gravity Forms form (which creates a new post) into an Advanced Custom Fields field. I've had a read around and found some info in a post (at the bottom of the ...
1
vote
2answers
94 views
Having a Function Inside of the Loop
I am trying to make a frontend product editor for WooCommerce, and have a loop that returns all of the products for the current user. I am trying to use gravity forms as the editor, so a single ...
1
vote
0answers
33 views
Showing errors from processing function on form
I use a function from my functions.php to process a front end post form. I store the errors in the variable $output but need a way to show it on the post form after submit. How can I do that?
3
votes
3answers
751 views
Does Wordpress have a “Form API”
I do most of my development in Drupal, however I am working on a Wordpress site and I need to make a form. Which got me thinking, is there a Form API for wordpress like there is Drupal? Is there a way ...
5
votes
2answers
960 views
How can I get $id variable in widget's form function?
How can I get $id variable in widget's form function?
According to widget's structure I see that widget function have $args as a parameter, which will be extracted in function's body. In my case i ...
0
votes
1answer
417 views
Submit Custom Postypes from frontend
I am attempting to create a form that submits data and creates a post with custom fields filled. What I would like to do in step form.
1) Create a custom posttype function called "pickups" (I do not ...
1
vote
1answer
195 views
exclude category from WordPress Form function
I have this function and I need to somehow exclude a category number 14 from my submission form. Is there any way to do it inside this function?
function retrieve_cat_data($byid = false){
...
-1
votes
1answer
131 views
Will my Wordpress site become vulnerable after adding this functions which allows more HTML tags for subscribers?
I was thinking of adding the following lines of code to my functions.php file:
/**
* Change the default list of allowed html tags
*/
add_action('init', 'edittag', 10);
function edittag() {
...