Home › Topic Tag: Toolset Forms
CRED is a WordPress plugin that lets you easily build front-end forms for creating and editing content and users. CRED User Guides include detailed documentation on creating forms, including related fields that belong to the content or the users, validating the input and displaying the forms with custom HTML styling. When you ask for help or report issues, make sure to tell us the versions of the Toolset plugins that you have installed and activated.
Status | Topic | Supporter | Voices | Posts | Freshness |
---|---|---|---|---|---|
rellenar un select generico con las opciones de un type definido
Started by: rafaelL-2 in: Soporte profesional de Toolset |
|
2 | 6 | 4 years, 9 months ago | |
I need a front end edit form that only overwrites on approval
Started by: Beth in: Toolset Professional Support |
|
2 | 3 | 4 years, 9 months ago | |
CRED Front-end Forms create revision on save
Started by: davideE-4 in: Toolset Professional Support |
|
2 | 5 | 4 years, 9 months ago | |
Reverse creation process of CPT posts
Started by: boW-2 in: Toolset Professional Support |
|
2 | 7 | 4 years, 9 months ago | |
For create new content post form: Media library is selected by default
Started by: bryan in: Toolset Professional Support |
|
2 | 3 | 4 years, 9 months ago | |
New Shortcode in CRED forms
Started by: julieP in: Toolset Professional Support |
|
5 | 7 | 4 years, 9 months ago | |
Function Code with conditional not working for some reason
Started by: JoshuaJ301 in: Toolset Professional Support |
|
2 | 6 | 4 years, 9 months ago | |
Cannot show WYSIWYG content from User Form
Started by: kelvinL-2 in: Toolset Professional Support |
|
2 | 4 | 4 years, 9 months ago | |
CRED edit form throws an error on Submit
Started by: Anthony
in: Toolset Professional Support
Problem: Solution: |
|
2 | 8 | 4 years, 9 months ago | |
Limit Google Map address locations to Germany via Toolset Forms
Started by: simonM-5
in: Toolset Professional Support
Problem: I would like to limit the autocomplete address options in a Toolset Forms address field to be from a specific country, Germany. Solution: Add the following JavaScript snippet to your Form's JS panel: jQuery(document).ready(function(){ jQuery(".js-toolset-maps-address-autocomplete").geocomplete({country: 'DE',type: []}); }); |
|
2 | 3 | 4 years, 9 months ago | |
Prepare my custom translation file
Started by: kelvinL-2 in: Toolset Professional Support |
|
2 | 9 | 4 years, 9 months ago | |
Post edit link for form is not working
Started by: jozsefG in: Toolset Professional Support |
|
2 | 7 | 4 years, 9 months ago | |
I need to generate in backend title with custom type field
Started by: avansisI-2
in: Toolset Professional Support
Problem: I would like to automatically generate a post title from a custom field value when a User submits a Form to create a new post Solution: Use the following custom code snippet to automate the post title: add_action('cred_save_data', 'tssupp_build_title', 99, 2); function tssupp_build_title($post_id, $formdata) { if ($formdata['id']==4684) { if (isset($_POST['wpcf-nombre_del_comercio'])) { $new_title = $_POST['wpcf-nombre_del_comercio']; $post_update = array( 'ID' => $post_id, 'post_title' => $new_title ); wp_update_post($post_update); } } } Relevant Documentation: |
|
2 | 10 | 4 years, 9 months ago | |
Adding a payment to when a new post is create
Started by: curtisT-2 in: Toolset Professional Support |
|
3 | 5 | 4 years, 9 months ago | |
Limi to create posts by user and unexpected results
Started by: David Gimenez
in: Toolset Professional Support
Problem: Solution: I updated the code to introduce the "numberposts" equal to -1, to return all posts, and it worked form. function u_product_count() { //we create the $variable $user_product_count = count( get_posts( array( //we get the posts //we define the Post type 'post_type' => 'producte', //all posts numberposts' => -1, //we get the current logged in author 'author' => get_current_user_id(), ) ) ); //We return the amount of posts created by user return $user_product_count; } Relevant Documentation: https://developer.wordpress.org/reference/functions/get_posts/ |
|
3 | 9 | 4 years, 9 months ago |