arvidB
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 |
---|---|---|---|---|---|
Show Last Modified Date in Content Template
Started by: arvidB in: Toolset Professional Support |
2 | 2 | 3 years, 7 months ago | ||
Too much space between blocks
Started by: arvidB
in: Toolset Professional Support
Problem: Solution: You can find proposed solution in this case with the following reply: Relevant Documentation: |
2 | 3 | 3 years, 7 months ago | ||
Display custom fields I added to the (standard) Media Post Type in a Single Post
Started by: arvidB in: Toolset Professional Support |
2 | 11 | 3 years, 7 months ago | ||
Block Editor is almost not usable
Started by: arvidB in: Toolset Professional Support |
2 | 2 | 3 years, 11 months ago | ||
Paragraphs in WYSIWYG custom field are not shown on the frontend
Started by: arvidB in: Toolset Professional Support |
2 | 12 | 5 years, 12 months ago | ||
Compatibility Issues with TagDiv Newspaper theme
Started by: arvidB
in: Toolset Professional Support
Problem: I've read a few posts here on the forum, and noticed that in the last few years there has been a compatibility issue with the TagDiv Newspaper theme. Can you confirm this is still the case? Solution: Newspaper theme is not possible to integrate this theme with Toolset: Newspaper theme isn't using standard WordPress function the_content() to render the post output, but a complex custom function which does not output the content directly. Relevant Documentation: |
3 | 6 | 6 years ago | ||
Display Children at Grandparent level
Started by: arvidB
in: Toolset Professional Support
Problem: Solution: You can find the proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 9 | 6 years ago | ||
Using Relationship data in the slug of the Custom Post Type
Started by: arvidB
in: Toolset Professional Support
Problem: I would like to use the slug of a parent post in the child posts's slug. Solution: You can use the post relationships API to get information about related posts: $parent = toolset_get_related_posts( 12345, // replace this with the child post id 'relationship-slug', // slug of the post relationship 'child', // get posts where 12345 is the child post ID 1000000, 0, // pagination array( ), 'post_object', 'parent' ); Note that the code above can't be used during the save_post hook because the child post is saved before it is associated to a parent. If you want to access parent post information, you can use the toolset_association_created hook. Here's an example updating some information for a child post based on information in its parent post: Relevant Documentation: |
2 | 5 | 6 years ago |