theW
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 |
---|---|---|---|---|---|
Aligning Images on cells
Started by: theW in: Toolset Professional Support |
2 | 6 | 6 years, 6 months ago | ||
Cells Display vertically instead of Horizontally
Started by: theW
in: Toolset Professional Support
Problem: I would like to Keep the same horizontal order to the cells in a small screen as when viewing it from a Laptop. Solution: 1) With Bootstrap grid system: you can add CSS class name " col-xs-*" to each layout cell https://getbootstrap.com/docs/3.3/examples/grid/ 2) Without Bootstrap grid system: you can use HTML table to format your data: https://www.w3schools.com/html/html_tables.asp Relevant Documentation: https://toolset.com/documentation/user-guides/adding-custom-styling-to-a-layout/#cell |
2 | 8 | 6 years, 7 months ago | ||
Change Color BG on Mouse Over
Started by: theW
in: Toolset Professional Support
Problem: Change Background Color of a row (.hover-row) on Mouse Over. Solution: please try below CSS codes: .hover-row:hover { background-color: #f1f1f1; } Relevant Documentation: |
2 | 4 | 6 years, 7 months ago | ||
Repeating Field Groups
Started by: theW
in: Toolset Professional Support
Problem: I would like to try the repeating field groups feature. Solution: This feature is currently in beta and can be found in the account downloads area. |
2 | 3 | 6 years, 7 months ago | ||
Displaying Authors Logo on Custom post Sidebar
Started by: theW
in: Toolset Professional Support
Problem: Solution: Here the customer had created a separate CPT for his users so they can create a profile after creating a user. That same user then creates a project and on that project page it should automatically display the user's logo from their profile. You can use a view to do this to allow for it to filter for the same author profile as the custom post then you will need to add a post author filter to the view. Then you can just add the elements from the profile that you want to display. |
2 | 6 | 6 years, 8 months ago | ||
Showing Custom Posts Counters inside Tab Labels
Started by: theW in: Toolset Professional Support |
2 | 3 | 6 years, 8 months ago | ||
Link First and Last Name to Author Archieve inside the Loop
Started by: theW
in: Toolset Professional Support
Problem: Solution: For example: <a href="[wpv-post-author format='url'] "> [wpv-post-author meta="user_firstname" format="meta"] [wpv-post-author meta="user_lastname" format="meta"] </a> You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 3 | 6 years, 8 months ago | ||
Display IF Current User has not Created Custom Posts
Started by: theW in: Toolset Professional Support |
1 | 2 | 6 years, 8 months ago | ||
Show Total Custom Posts Count
Started by: theW
in: Toolset Professional Support
Problem: Solution: |
2 | 3 | 6 years, 9 months ago | ||
Let USERS Schedule auto reminders for THEMSELVES
Started by: theW in: Toolset Professional Support |
2 | 3 | 6 years, 9 months ago | ||
Insert Current User View Profile Link
Started by: theW
in: Toolset Professional Support
Problem: Solution: You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 7 | 6 years, 9 months ago | ||
Rendering the Correct User Profile Values
Started by: theW
in: Toolset Professional Support
Problem: I am trying to: I expected to see: Instead, I got: Solution: It is expected result, the views shortcode [wpv-user] will output the current user information, in your case it needs some custom codes, for example: add_shortcode('archive-author-id', 'archive_author_id_func'); function archive_author_id_func($atts, $content){ $res = 0; $author_name = get_query_var( 'author_name' ); if($author_name){ $author = get_user_by( 'slug', $author_name); $res = $author->ID; } return $res; } 2) Dashborad-> Toolset-> Settings-> Front-end Content, in option "Third-party shortcode arguments", add above shortcode name: archive-author-id 3) Modify the codes you mentioned above Types shortcode, from: You will need to manually modify those shortcodes one by one, I just only setup some example in your website, for your reference. Relevant Documentation: https://toolset.com/documentation/customizing-sites-using-php/functions/ |
2 | 10 | 6 years, 9 months ago | ||
Optionally Change Password, when editing Profile
Started by: theW
in: Toolset Professional Support
Problem: I added password and repeat password fields to my CRED edit User form, but I would like for them to be optional. Solution: There are two workarounds for this issue now: 2. Use two generic fields instead of the standard CRED fields for password and repeat password. Use the same field names, but make them optional: [cred_generic_field field='user_pass' type='textfield' class='' urlparam=''] { "required":0, "validate_format":0, "default":"" } [/cred_generic_field] [cred_generic_field field='user_pass2' type='textfield' class='' urlparam=''] { "required":0, "validate_format":0, "default":"" } [/cred_generic_field] Relevant Documentation: https://toolset.com/documentation/user-guides/cred-user-forms/ |
2 | 4 | 6 years, 10 months ago | ||
Custom Field Value Not Rendering with types_render_field
Started by: theW
in: Toolset Professional Support
Problem: I would like to display the value of a custom field in PHP, but the types_render_field function does not work. Solution: Ensure that you are passing the post ID into the arguments array of the types_render_field function: <?php echo(types_render_field( "status", array( 'id' => $pg->ID ) ) ); ?> Relevant Documentation: |
2 | 5 | 6 years, 10 months ago | ||
Creating my Own "Posts Status" and Placing them on CRED
Started by: theW in: Types Community Support |
2 | 9 | 6 years, 10 months ago |