chrisC-25
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 |
---|---|---|---|---|---|
I want image to expand to full width of row it is contained in
Started by: chrisC-25
in: Toolset Professional Support
Problem: Solution: |
2 | 5 | 6 years, 2 months ago | ||
Slow Site Response
Started by: chrisC-25 in: Toolset Professional Support |
3 | 11 | 6 years, 3 months ago | ||
All Custom Types post refuse to display
Started by: chrisC-25 in: Toolset Professional Support |
2 | 4 | 6 years, 3 months ago | ||
Link to parent relationship not working in grid
Started by: chrisC-25
in: Toolset Professional Support
Problem: Solution: [wpv-post-title id='%post_id%'] [php] To display a field from a related post (e.g. parent) it is necessary to create a custom shortcode that uses the relationships API to query the related post, like this example for a post link: [php] add_shortcode( 'related_link', function( $atts ){ $pid = $atts['id']; $related_id = toolset_get_related_post( $pid, "artist-release", "parent" ); $output = wpv_do_shortcode( "[wpv-post-link id='" . $related_id . "']"); return $output; }); which you can then insert into a template, like so: [related_link id='%post_id%'] |
2 | 12 | 6 years, 4 months ago | ||
Custom field stopped working after upgrade of toolset
1
2
Started by: chrisC-25 in: Toolset Professional Support |
2 | 19 | 6 years, 4 months ago | ||
Link to parent relationship not working
Started by: chrisC-25
in: Toolset Professional Support
Problem: Solution: [wpv-post-link item="@project-task.parent"] Using the Fields and Views button to insert the shortcode and specifying the relationship in the Post Selection tab will insert the shortcode with the correct format. |
2 | 3 | 6 years, 4 months ago | ||
Trying to set conditional based on view
Started by: chrisC-25
in: Toolset Professional Support
Problem: I have a headline that I want to hide if there are no posts showing matching the view below it. Solution: I suggest you display the headline "Shop the Store" in the view shortcode [wpv-items-found]..[/wpv-items-found], for example: Edit the view you mentioned above, in section "Loop Editor", add the headline "Shop the Store" just below shortcode [wpv-items-found]. Relevant Documentation: http://wp-types.com/documentation/views-shortcodes/#wpv-items-found |
2 | 4 | 6 years, 4 months ago | ||
Shortcode inside of theme shortcode
Started by: chrisC-25 in: Toolset Professional Support |
2 | 5 | 6 years, 6 months ago | ||
The theme Uncode does not play nice with Toolset
Started by: chrisC-25 in: Toolset Professional Support |
2 | 8 | 6 years, 6 months ago | ||
Show parent post information in The Grid Skin Builder
Started by: chrisC-25
in: Toolset Professional Support
Problem: I would like to display the parent post's title in The Grid Skin Builder. Solution: The meta key used to hold a parent post's ID is "_wpcf_belongs_slug_id". You can pass a post ID into the wpv-post-title to retrieve that post's title. So you can use a combination of Views shortcodes and The Grid's meta codes to display a parent post's information: [wpv-post-title id="#meta:_wpcf_belongs_artist_id#"] Relevant Documentation: |
2 | 8 | 6 years, 7 months ago | ||
Align image and button horizontally
Started by: chrisC-25
in: Toolset Professional Support
Problem: Tell us what you are trying to do? I want image on right to align in center vertically with button on right. The label logo on left should be centered with Artist Website button on right. Solution: I suggest you try to add some CSS to the DIV tag of "Artist Website" button, for example: margin-top: 30px; See screenshot margin-top.JPG: https://cdn.toolset.com/wp-content/uploads/2018/04/630771-margin_top.JPG Relevant Documentation: |
2 | 6 | 6 years, 7 months ago | ||
How can I make the featured image shortcode display full size instead of thumbnail
Started by: chrisC-25
in: Toolset Professional Support
Problem: I am using the wpv-post-featured-image shortcode to display the featured image, but it looks low quality. How can I use the full-size image? Solution: Add the size attribute to the shortcode: [wpv-post-featured-image size="full"] Relevant Documentation: https://toolset.com/documentation/user-guides/views-shortcodes/#wpv-post-featured-image |
2 | 5 | 6 years, 8 months ago | ||
When opening a custom post it will flash the featured image quickly before rendering properly
Started by: chrisC-25
in: Toolset Professional Support
Problem: Solution: Moving the CSS to the theme's stylesheet causes it to be loaded, and effective, earlier. |
2 | 13 | 6 years, 9 months ago | ||
Associate a child post with 2 different parent posts
Started by: chrisC-25
in: Toolset Professional Support
Problem: The issue here is that the user wanted his child posts to have 2 parents. What you can do is to try out new Many to Many mechanism in our Types 2.3 beta https://toolset.com/2017/12/types-and-views-betas-with-many-to-many-relationships/ From the link below select beta from the dropdown and then download it. |
2 | 8 | 6 years, 9 months ago | ||
Responsive render is not right on ipad
Started by: chrisC-25
in: Toolset Professional Support
Problem: You must look at this page on ipad to see problem. See attached screenshots. Content is getting cut off, it is overflowing the column on ipad. Solution: It should be a custom CSS code problem, I assume you are using Bootstrap framework in your website, please check these: 2) it is a conflict between your theme and Bootstrap, I have added below codes into your theme/style.css: @media (min-width: 768px){ body.single-artist div.container{ width: auto !important; } } Relevant Documentation: |
2 | 6 | 6 years, 9 months ago |