deanL
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 |
---|---|---|---|---|---|
Past parent post title to CRED form
Started by: deanL
in: Toolset Professional Support
Problem: The issue here is that the user has a button on their parent post that can be used to navigate to the child post. This button is passing the url to the child page. Solution: In this case we can just use the shortcode. Now this will only work if the parent id is being passed in the url |
2 | 10 | 5 years, 11 months ago | ||
Prompt user to register/login before submitting child post
Started by: deanL
in: Toolset Professional Support
Problem: The particular requirements for this project are that only a logged-in user should be able to see and submit the child post form. Guest users should see a login/register form instead, and then continue to see and submit the child post form. Solution: The first is that guest users who register are not automatically logged in, they would register and be redirected to a log-in page, and then the flow would be interrupted. The second is that, even if we add code to automatically log in users who register and then present them with the child post form, the URL parameter that identifies the parent is lost. The thread below describes what is required and provides suggestions for the custom code that is needed for this to work: https://toolset.com/forums/topic/prompt-user-to-register-login-before-posting-content/#post-1188864 |
2 | 5 | 5 years, 11 months ago | ||
Share taxonomy between CPT with users
Started by: deanL
in: Toolset Professional Support
Problem: I wonder if there is a way I can merge both processes in a single step ie when user registers for user account, a profile is automatically created. Solution: One form can handle one post/user at the same time, in your case, you might consider custom shortcode, for example: https://toolset.com/forums/topic/share-taxonomy-between-cpt-with-users/#post-1187923 Relevant Documentation: |
3 | 5 | 5 years, 11 months ago | ||
Building a storytelling website
Started by: deanL
in: Toolset Professional Support
Problem: When people click the create story form link, how can I automatically associate the new story to the topic? Solution: I suggest you setup one-to-many relationship between post type "Topic" and "Story". In a single "Topic" post, display a child form link, user click this link redirect him to page with a post form for creating new "Story" post, Relevant Documentation: |
2 | 3 | 5 years, 12 months ago | ||
Pay to view more content
Started by: deanL
in: Toolset Professional Support
Problem: I need your advice if I can do it with Toolset, see details here: https://toolset.com/forums/topic/pay-to-view-more-content/#post-1176409 Solution: There isn't exact feature within Toolset plugins, it might involve custom codes. Here are my suggestions: https://toolset.com/forums/topic/pay-to-view-more-content/#post-1176752 Relevant Documentation: https://toolset.com/documentation/programmer-reference/cred-api/#cred_save_data |
2 | 3 | 6 years ago | ||
Custom search results page using Toolset
Started by: deanL
in: Toolset Professional Support
Problem: I'm wondering if I can use Toolset to design the layout for search results? Solution: Yes, it is possible to use Views WordPress archive or Layouts to customize/format/style wordpress built-in search result page. For example, you can create a Views WordPress archive for the "search results" page, See our document: Relevant Documentation: |
2 | 4 | 6 years, 1 month ago | ||
Sort post by context
Started by: deanL in: Toolset Professional Support |
2 | 3 | 6 years, 1 month ago | ||
How to display posts count
Started by: deanL in: Toolset Professional Support |
2 | 3 | 6 years, 1 month ago | ||
Generate a random ID for each loop
Started by: deanL
in: Toolset Professional Support
Problem: I would like to use the same View in multiple places on the same page, but I want to avoid unique IDs. Solution: Use wpv-attribute to help generate that unique ID. For example, let's say you use the same View in two places on the same page. Add the placement attribute, and set some unique value for each View: [wpv-view name="Your View Name" placement="abc"] [wpv-view name="Your View Name" placement="def"] Then inside the loop, you can access the placement attribute to make the IDs unique. <div class="collapse" id="collapse-[wpv-attribute name='placement']-[wpv-post-id]"> Results: <div class="collapse" id="collapse-abc-123"> ... <div class="collapse" id="collapse-def-123"> Relevant Documentation: |
2 | 3 | 6 years, 2 months ago | ||
Do not show result until a keyword was entered
Started by: deanL
in: Toolset Professional Support
Problem: I would like to show no results in a View until the User adds a search term. Solution: Place the search form on a separate page. |
3 | 7 | 6 years, 5 months ago | ||
Sort view by custom field in relationship
Started by: deanL
in: Toolset Professional Support
Problem: I have two custom post types in a M2M relationship, Persons (parent) and Project (child). I have added a custom field to the relationship, and I would like to sort a View of related Project posts using the custom field value. I would like to place that View of related Projects inside another View of Persons, to create a list of all Persons and their related Projects. Solution: |
2 | 4 | 6 years, 5 months ago | ||
How to group posts by category
Started by: deanL
in: Toolset Professional Support
Problem: Solution: You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 3 | 6 years, 7 months ago |