Add ajax post button to each search result
Started by: jesseA
in: Toolset Professional Support
2
2
5 years, 7 months ago
Minesh
Automatically rename picture uploads
Started by: FelipeP5703
in: Toolset Professional Support
Quick solution available
2
3
5 years, 8 months ago
FelipeP5703
Delete pictures permanently
Started by: FelipeP5703
in: Toolset Professional Support
2
3
5 years, 8 months ago
FelipeP5703
Draft button, Naming Pictures, and Delete pictures permanently
Started by: FelipeP5703
in: Toolset Professional Support
Quick solution available
Problem: I have a View of published posts, and I would like to include a button on the front-end of the site to set the post status to be "Draft" instead of "Publish".
Solution: You can do this with a Form that is set to Draft status. Remove all the visible inputs except the Submit button and change the button to say "Draft" or something else.
2
3
5 years, 8 months ago
FelipeP5703
Listar usuarios. Filtrar por usuarios
Started by: miguelM-3
in: Toolset Professional Support
2
18
5 years, 8 months ago
miguelM-3
Create Post Title Using Submitted Field Data
Started by: bradC-8
in: Toolset Professional Support
Quick solution available
Problem:
The issue here is that the user wanted to create a custom post title from their custom fields.
Solution:
This can be done by using the Hook below as an example
add_action('cred_save_data','func_custom_post_title',10,2);
function func_custom_post_title($post_id,$form_data) {
if ($form_data['id']==XXXX) {
$field_1 = $_POST['wpcf-field-slug-1']
$field_2 = $_POST['wpcf-field-slug-2']
$args = array('ID' => $post_id, 'post_title' => $field_1.' '.$field_2);
wp_update_post($args);
}
}
Now in this user's case we are using 2 custom fields as you can see from teh $field_1 and $field_2 variable.
Add this to your toolset custom code in Toolset -> Settings -> Custom code and then activate it.
Notice you must change the XXXX to the ID of your form.
2
5
5 years, 8 months ago
bradC-8
my webiste is not responsive
Started by: vincentJ
in: Toolset Professional Support
2
10
5 years, 8 months ago
Shane
Image Gallery
Started by: andrewW-15
in: Toolset Professional Support
2
10
5 years, 8 months ago
Luo Yang
Site Performance
Started by: nikolaS-3
in: Toolset Professional Support
Quick solution available
Problem: I would like to know if it's better to reuse fields across multiple post types, or if it's better to create similar fields specific to each post type.
Solution: It's better to reuse fields if possible, especially if your site uses these fields for filtering Views.
2
3
5 years, 8 months ago
nikolaS-3
Logout Link with Toolset
Started by: FelipeP5703
in: Toolset Professional Support
Quick solution available
2
3
5 years, 8 months ago
FelipeP5703
Restricting to a single movie over a certain period of time
Started by: mosher
in: Toolset Professional Support
2
4
5 years, 8 months ago
Waqar
Sell a movie for a single and not a subscriber
Started by: mosher
in: Toolset Professional Support
2
2
5 years, 8 months ago
Shane
General inquiry for members site
Started by: ryanB-23
in: Toolset Professional Support
Quick solution available
2
3
5 years, 8 months ago
ryanB-23
Using toolset with wpbakery
Started by: StanC4810
in: Toolset Professional Support
2
8
5 years, 9 months ago
StanC4810
List of products of a logical calculation, with prices, selectables to calculate
Started by: xaviP-2
in: Toolset Professional Support
2
3
5 years, 9 months ago
xaviP-2