Zach Jones
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 |
---|---|---|---|---|---|
Query filter using checkboxes field
1
2
Started by: Zach Jones
in: Toolset Professional Support
Problem: The issue here is that the user is trying to filter his view by some checkbox value but it's not filtering correctly. If you're experiencing this issue, please try the fix below. |
2 | 19 | 6 years, 8 months ago | ||
Login Form Redirect Issue
Started by: Zach Jones
in: Toolset Professional Support
Problem: The issue here is that the user wanted to redirect his users after they had logged in based on their roles. Solution: To do this you can follow the example in the link below. function my_login_redirect( $redirect_to, $request, $user ) { //is there a user to check? if ( isset( $user->roles ) && is_array( $user->roles ) ) { //check for admins if ( in_array( 'administrator', $user->roles ) ) { // redirect them to the default place return $redirect_to; } elseif ( in_array( 'client', $user->roles ) ) { return home_url('/wp/client/dashboard/'); }elseif( in_array( 'legalpro', $user->roles ) ){ return home_url('/wp/legal-professional/dashboard/'); } } else { return $redirect_to; } } add_filter( 'login_redirect', 'my_login_redirect', 10, 3 ); Add it to your functions.php file. |
2 | 7 | 6 years, 8 months ago | ||
View is not filtering out child posts
Started by: Zach Jones
in: Toolset Professional Support
Problem: |
2 | 15 | 6 years, 9 months ago | ||
Site Migration to new server broke Toolset
1
2
Started by: Zach Jones
in: Toolset Professional Support
Problem: I have a View with many filters wrapped in a conditional. On my old server, I had no problem with this View. On my new server (PHP 7) I am now seeing the shortcodes written out on my site. Solution: We are working on a permanent fix for this issue. In the meantime, you can add this line to your wp-config.php file just above where it says "That's all, stop editing!" ini_set('pcre.jit', false); |
3 | 28 | 6 years, 10 months ago | ||
Display parent title field in child view issue
Started by: Zach Jones in: Toolset Professional Support |
2 | 7 | 7 years, 2 months ago | ||
Setting up User Rating system
Started by: Zach Jones in: Types Community Support |
2 | 2 | 7 years, 2 months ago | ||
Linking a post with two different users
Started by: Zach Jones in: Toolset Professional Support |
2 | 2 | 7 years, 2 months ago | ||
Display an image slider from a string of comma-separated URLs
Started by: Zach Jones in: Toolset Professional Support |
2 | 4 | 7 years, 3 months ago |