Dallin Chase
Fils de soutien créés au cours des 30 derniers jours : 0
Sujets de forum favoris
This user has no favorite topics.
Sujets de forum créés
Status | Sujet | Supporter | Voix | Publications | Nouveauté |
---|---|---|---|---|---|
Dynamic Title with Toolset Forms based on Logged in User First and Last Name
Commencé par : 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 | Il y a 5 années et 4 mois | ||
How to add placeholder or first select option for post form drop downs?
Commencé par : Dallin Chase in: Toolset Professional Support |
2 | 2 | Il y a 5 années et 4 mois | ||
View a list of user submitted form entries via Toolset Forms
Commencé par : 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 | Il y a 5 années et 4 mois | ||
I am wondering if there is a way to reverse the order of my pagination
Commencé par : Dallin Chase in: Chat Support |
1 | 2 | Il y a 5 années et 4 mois | ||
File not uploading
Commencé par : 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 | Il y a 6 années et 1 mois | ||
Hide/show content based on if repeatable field (or child post) has been added
Commencé par : 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 | Il y a 6 années et 3 mois | ||
Plugins won't update
Commencé par : Dallin Chase in: Toolset Professional Support |
2 | 3 | Il y a 6 années et 4 mois | ||
Users are not being created when using Cred Commerce
Commencé par : Dallin Chase in: Toolset Professional Support |
2 | 8 | Il y a 6 années et 6 mois | ||
Layout un editable
Commencé par : 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 | Il y a 6 années et 6 mois | ||
CRED form loads intermittently sometimes
Commencé par : 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 | Il y a 6 années et 9 mois | ||
REALLY slow ttfb times as soon as toolset is activated
Commencé par : 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 | Il y a 6 années et 11 mois | ||
Site crashes when activated
Commencé par : Dallin Chase in: Toolset Professional Support |
2 | 3 | Il y a 6 années et 11 mois |