rexJ-2
Support threads created in the last 30 days: 0
Favorite Forum Topics
This user has no favorite topics.
Forum Topics Created
Status | Topic | Supporter | Voices | Posts | Freshness |
---|---|---|---|---|---|
on webpage refresh browser flicker
Started by: rexJ-2 in: Toolset Professional Support |
2 | 7 | 5 years, 1 month ago | ||
role on update in cred_save_data not update wp_capabilities
Started by: rexJ-2 in: Toolset Professional Support |
2 | 2 | 5 years, 7 months ago | ||
page refresh making kind of overlay of two views
Started by: rexJ-2 in: Toolset Professional Support |
2 | 5 | 5 years, 7 months ago | ||
write custom filter function into wpb-conditional on template
Started by: rexJ-2 in: Toolset Professional Support |
2 | 4 | 5 years, 7 months ago | ||
Create and Edit RFG (Repeatable Field Groups) in Toolset Forms
Started by: rexJ-2
in: Toolset Professional Support
Problem: Solution: At this point, you should be able to save the form and actually already use it. Almost the same applies to edit forms, just that here, you need to insert the Edit Form into a View, that lists the RFG. Relevant Documentation: |
2 | 7 | 5 years, 7 months ago | ||
Form updating but with cred_save_data no update_post_meta
Started by: rexJ-2 in: Toolset Professional Support |
2 | 4 | 5 years, 8 months ago | ||
relationship form menu do not open
Started by: rexJ-2
in: Toolset Professional Support
Problem: Unable to select Relationship form Menu options Solution: In this user's case the issue was caused by a 3rd party plugin. What I recommend that you do is to temporarily disable all the non-toolset plugins and check again. |
2 | 6 | 5 years, 8 months ago | ||
Programmatically set child post author to be the same as parent post author
Started by: rexJ-2
in: Toolset Professional Support
Problem: I have a Form that creates child posts. It works, but I would like to set the post author to be the same as the parent post author. Solution: In the CRED form for creating child post, there is a a parent post select field. You can access the selected option of the parent post field in the $_POST superglobal. The parameter name will be in the format "@relationship-slug_parent". Then in the cred_save_data hook, you can use the parent post ID to determine the correct post author ID. Try something like this: $parent_post_id = $_POST['@relationship-slug_parent']; $parent_author_id = get_post_field ('post_author', $parent_post_id); $postarr = array( 'ID' => $post_id, 'post_author' => $parent_author_id ); // MEDARBEJDER insert in database Insert wp_update_post( $postarr ); Replace relationship-slug with the actual slug of your post relationship. So if your post relationship is foo-bar, the parameter name will be @foo-bar_parent. Relevant Documentation: |
2 | 5 | 5 years, 8 months ago | ||
get often a slow internet fallback to font from cred-frontend-editor
Started by: rexJ-2
in: Toolset Professional Support
Problem: I get this message often in the console log. Solution: It is a "Web Open Font Format" static file, it is only 7k file size, it should not conduct slower response problem, I suggest you check your server config settings, make sure your webserver is capable to response lots of requests fastly in the same time, for example: https://httpd.apache.org/docs/2.4/mod/mpm_common.html#serverlimit Relevant Documentation: |
2 | 4 | 5 years, 10 months ago | ||
post form with custom fields conditional select option
Started by: rexJ-2 in: Toolset Professional Support |
2 | 3 | 5 years, 10 months ago | ||
problem with getting wpcf- field
Started by: rexJ-2 in: Toolset Professional Support |
2 | 5 | 5 years, 11 months ago | ||
Split: problem with getting wpcf- field – CRED field not saved
Started by: rexJ-2
in: Toolset Professional Support
Problem: Solution: You can find the proposed solution, in this case with the following reply: Relevant Documentation: |
2 | 5 | 5 years, 11 months ago | ||
fail when updating layouts plugin
Started by: rexJ-2 in: Toolset Professional Support |
1 | 2 | 5 years, 11 months ago | ||
Can’t hide toolset in dashboard menu
Started by: rexJ-2
in: Toolset Professional Support
Problem: Solution: You can find the proposed solution, in this case, with the following reply: Relevant Documentation: |
3 | 4 | 5 years, 11 months ago | ||
wp_update_post inside cred_save_data not updating field guid
Started by: rexJ-2
in: Toolset Professional Support
Problem: Solution: You can find the proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 3 | 5 years, 11 months ago |