vimalS
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 |
---|---|---|---|---|---|
WP All Import – Toolset Types Add-On plugin repeater field support
Started by: vimalS in: Toolset Professional Support |
3 | 4 | 6 years, 4 months ago | ||
WP All Import – Toolset Types Add-On plugin repeater field support
Started by: vimalS in: Toolset Professional Support |
2 | 3 | 6 years, 4 months ago | ||
Confusion regarding Theme integration
Started by: vimalS in: Toolset Professional Support |
2 | 3 | 6 years, 5 months ago | ||
Ref : Conditional output with custom image field in cred edit form
Started by: vimalS
in: Toolset Professional Support
Problem: In a CRED form for editing user, the client is going to display it when user's image is blank and not blank: Solution: You just need t display it directly, see the solution here Relevant Documentation: |
2 | 14 | 6 years, 5 months ago | ||
Conditional output with custom image field in cred edit form
Started by: vimalS in: Toolset Professional Support |
2 | 3 | 6 years, 6 months ago | ||
Issue while connectting posts using post relationship
1
2
Started by: vimalS in: Toolset Professional Support |
2 | 17 | 6 years, 6 months ago | ||
Using cred_generic_field for password displays password while typing in textbox
Started by: vimalS
in: Toolset Professional Support
Problem: Solution: |
3 | 14 | 6 years, 6 months ago | ||
Date Repeater field not allowing to select date & Add new field in type beta
1
2
Started by: vimalS
in: Toolset Professional Support
Problem: Solution: |
3 | 26 | 6 years, 6 months ago | ||
Types beta plugin image custom field not working
1
2
Started by: vimalS
in: Toolset Professional Support
Problem: The issue here is that the user's image fields in Types Beta 3.0 were not working. Whenever the user clicks the fields it refreshes his page instead of allowing him to upload a new images. Solution: This issue has been resolved in our latest Types 3.0RC version. |
2 | 26 | 6 years, 6 months ago | ||
WYSIWYG text/visual mode not working
Started by: vimalS
in: Toolset Professional Support
Problem: WYSIWYG editor was not working correctly on the users version of the Beta plugin. Solution: This issue was actually resolved in the Latest RC version of Types. |
3 | 6 | 6 years, 6 months ago | ||
Conditional display in post fields are also not working
Started by: vimalS
in: Toolset Professional Support
Problem: The issue here is that the user's conditional post fields were not working correctly. Solution: This issue was actually resolved in the Latest RC version of Types. |
3 | 7 | 6 years, 6 months ago | ||
wpv_filter_query not working with nested view
1
2
Started by: vimalS in: Toolset Professional Support |
4 | 24 | 6 years, 7 months ago | ||
How to pass attribute to view’s PHP API
Started by: vimalS
in: Toolset Professional Support
Problem: For example: $args = array( 'wpvprchildof'=> $atts['wpvprchildof'], 'ids'=> $atts['ids']); You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 3 | 6 years, 7 months ago | ||
How to add Two different header & footer on two pages without layout plugin
Started by: vimalS
in: Toolset Professional Support
Problem: The issue here is that the user wanted to know if it was possible to create multiple headers using our Types and views plugins. Solution: Unfortunately this is not possible with our Types and Views plugin and will need to be done with some custom coding . You can follow the instructions in the link below as it should be able help you. |
2 | 7 | 6 years, 7 months ago | ||
Get number of results for View filtered by shortcode attribute
Started by: vimalS
in: Toolset Professional Support
Problem: I would like to use get_view_query_results to find the number of results for a View, filtered by a shortcode attribute. Solution: function get_students_count( $atts ) { $atts = shortcode_atts( [ 'wpvprchildof' => 0 ], $atts ); $args = array( 'wpvprchildof'=> $atts['wpvprchildof'] ); $filtered_posts = get_view_query_results(258, null, null, $args); return count($filtered_posts); } add_shortcode( 'wpv-students-count', 'get_students_count' ); Then use the shortcode like this: [wpv-students-count wpvprchildof='[wpv-post-id]'][/wpv-students-count] Relevant Documentation: |
2 | 6 | 6 years, 7 months ago |