Dallin Chase
In den letzten 30 Tagen erstellte Support-Threads: 0
Lieblings-Forenthemen
This user has no favorite topics.
Forum Topics Created
Status | Thema | Supporter | Stimmen | Artikel | Aktualität |
---|---|---|---|---|---|
Dynamic Title with Toolset Forms based on Logged in User First and Last Name
Gestartet von: Dallin Chase
in: Toolset Professional Support
Problem: Retrieve post author's fields by post ID. Solution: It needs custom codes, for example: Relevant Documentation: https://developer.wordpress.org/reference/functions/get_the_author_meta/ https://developer.wordpress.org/reference/functions/get_post_field/ |
2 | 3 | vor 5 Jahren, 4 Monaten | ||
How to add placeholder or first select option for post form drop downs?
Gestartet von: Dallin Chase in: Toolset Professional Support |
2 | 2 | vor 5 Jahren, 4 Monaten | ||
View a list of user submitted form entries via Toolset Forms
Gestartet von: Dallin Chase
in: Toolset Professional Support
Problem: I would like to know how I can see a list of modifications to a post over time using Views, similar to revision history in wp-admin. Solution: There's nothing built-in to Views that will allow you to track revision history over time. This would require a significant amount of custom code. |
2 | 5 | vor 5 Jahren, 4 Monaten | ||
I am wondering if there is a way to reverse the order of my pagination
Gestartet von: Dallin Chase in: Chat Support |
1 | 2 | vor 5 Jahren, 4 Monaten | ||
File not uploading
Gestartet von: Dallin Chase
in: Toolset Professional Support
Problem: Add more allowed mime types and file extensions for Toolset form file field. Solution: It needs custom codes, for example: Relevant Documentation: https://developer.wordpress.org/reference/hooks/upload_mimes/ |
2 | 6 | vor 6 Jahren, 1 Monat | ||
Hide/show content based on if repeatable field (or child post) has been added
Gestartet von: Dallin Chase
in: Toolset Professional Support
Problem: Solution: The code is as follows: /** * Register connections shortcode * * <a href="https://toolset.com/forums/users/att/" rel="nofollow" tabindex="80">@att</a> (string) relationship : post relationship slug * @return count of connected posts */ add_shortcode( 'connections', function( $atts = [] ){ // provide defaults $atts = shortcode_atts( array( 'relationship' => '', ), $atts ); global $post; $count = 0; $relationship = toolset_get_relationship( $atts['relationship'] ); if ( $relationship ) { $parent = $relationship['roles']['parent']['types'][0]; $child = $relationship['roles']['child']['types'][0]; $type = $post->post_type; $origin = ( $parent == $type ) ? 'parent' : 'child'; // Get connected posts $connections = toolset_get_related_posts( $post->ID, $atts['relationship'], $origin, 9999, 0, array(), 'post_id', 'other', null, 'ASC', true, $count ); } return $count; }); To use it inside a conditional shortcode requires registering the custom shortcode at Toolset > Settings > Front-end Content. Relevant Documentation: |
2 | 3 | vor 6 Jahren, 3 Monaten | ||
Plugins won't update
Gestartet von: Dallin Chase in: Toolset Professional Support |
2 | 3 | vor 6 Jahren, 4 Monaten | ||
Users are not being created when using Cred Commerce
Gestartet von: Dallin Chase in: Toolset Professional Support |
2 | 8 | vor 6 Jahren, 6 Monaten | ||
Layout un editable
Gestartet von: Dallin Chase
in: Toolset Professional Support
Problem: The issue here is that the user is unable edit one of his Layouts because of JS errors. Solution: In this case if its only affecting one Layout then I would recommend re-creating this layout as it could've been corrupted during a save. |
2 | 6 | vor 6 Jahren, 6 Monaten | ||
CRED form loads intermittently sometimes
Gestartet von: Dallin Chase
in: Toolset Professional Support
Problem: The CRED form loads correctly some of the time and incorrectly other times. You can see both versions in the screenshots. Solution: In case it is a compatibility problem, please try this: 1) deactivate other plugins and switch to wordpress default theme, and test again 2) If the problem still persists, please provide a database dump file (ZIP file) of your website in below private detail box, I need to test and debug it in my localhost, thanks 3) The client figured it out, it was a caching issue Relevant Documentation: |
2 | 3 | vor 6 Jahren, 9 Monaten | ||
REALLY slow ttfb times as soon as toolset is activated
Gestartet von: Dallin Chase
in: Toolset Professional Support
Problem: In my website, there is a view with the option "Show only available options for each input", it will conduct the performance problem in a website with large data. Solution: I can see the problem in your website, and change below in your website: Relevant Documentation: |
2 | 4 | vor 6 Jahren, 11 Monaten | ||
Site crashes when activated
Gestartet von: Dallin Chase in: Toolset Professional Support |
2 | 3 | vor 6 Jahren, 11 Monaten |