Ian Henderson
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 |
---|---|---|---|---|---|
Restricting scrollTop from all views
Started by: Ian Henderson in: Toolset Professional Support |
2 | 6 | 4 years, 4 months ago | ||
Ordering posts in pre-existing relationship with another posts
Started by: Ian Henderson in: Toolset Professional Support |
2 | 5 | 4 years, 5 months ago | ||
Script to populate M2M relationship
Started by: Ian Henderson
in: Toolset Professional Support
Problem: Convert legacy post relationships to current M2M relationships using custom PHP codes. Solution: Here is an example PHP codes: https://toolset.com/forums/topic/script-to-populate-m2m-relationship/#post-1571557 Relevant Documentation: |
2 | 7 | 4 years, 7 months ago | ||
wpv-control-post-taxonomy outputting a simple list of links
Started by: Ian Henderson
in: Toolset Professional Support
Problem: I would like to add a front-end taxonomy filter to my View. The filter format I would like to see is a simple list of text links. Solution: Unfortunately there is no text-link style filter, so a CSS solution that hides a radio button and displays a text label instead is probably the best. Use cursor:pointer and the :hover pseudo-selector to simulate the behavior of a link. .radios-taxonomies-title { cursor: pointer; } .radios-taxonomies-title:hover { color:#cc0; } |
2 | 4 | 4 years, 9 months ago | ||
Compatibility issue – Toolset Views and Astra Pro Theme
Started by: Ian Henderson in: Toolset Professional Support |
2 | 8 | 4 years, 9 months ago | ||
Can't access Views
Started by: Ian Henderson in: Toolset Professional Support |
2 | 3 | 4 years, 10 months ago | ||
Featured images suppressed by Types
Started by: Ian Henderson in: Toolset Professional Support |
3 | 10 | 5 years ago | ||
Creating RSS feed for custom post type
Started by: Ian Henderson in: Toolset Professional Support |
2 | 6 | 5 years, 1 month ago | ||
Are Toolset and Elementor conflicting?
Started by: Ian Henderson in: Toolset Professional Support |
2 | 10 | 5 years, 2 months ago | ||
Automatic login after registration with CRED form
Started by: Ian Henderson
in: Toolset Professional Support
Problem: This issue here is that the user wanted to automatically log in their customers after they have registered for the site. Solution: This can be done by using the custom code below. /** * Auto-login new CRED user */ add_action( 'cred_save_data', 'tssupp_cred_autologin', 10, 2 ); function tssupp_cred_autologin( $post_id, $form_data ){ if ( 597 == $form_data['id'] ) { // Edit as required if ( !empty( $_POST['user_email'] ) && !empty( $_POST['user_pass'] ) ) { // get the user credentials from the $_POST object $user = array( 'user_login' => $_POST['user_email'], 'user_password' => $_POST['user_pass'], 'remember' => true ); $login = wp_signon( $user, false ); if ( is_wp_error($login) ) { error_log( $login->get_error_message() ); } } } } Replace 597 with the ID of your form. |
2 | 4 | 5 years, 3 months ago | ||
Create post notifications/subscriptions
Started by: Ian Henderson in: Toolset Professional Support |
2 | 6 | 5 years, 4 months ago | ||
Relationship migration problem – no merge allowed
Started by: Ian Henderson in: Toolset Professional Support |
2 | 13 | 5 years, 6 months ago | ||
Yoast SEO plugin conflict overrides Layout assignment
Started by: Ian Henderson in: Toolset Professional Support |
2 | 3 | 5 years, 7 months ago | ||
Custom image sizes not creating resized images
Started by: Ian Henderson
in: Toolset Professional Support
Problem: We are using custom image sizes in the views: Solution: The problem is abnormal, please try these: https://toolset.com/forums/topic/custom-image-sizes-not-creating-resized-images/#post-1227568 Relevant Documentation: |
2 | 3 | 5 years, 7 months ago | ||
Image Resizing Settings
Started by: Ian Henderson in: Toolset Professional Support |
2 | 3 | 5 years, 8 months ago |