pierre-yvesC
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 |
---|---|---|---|---|---|
Prev/Next pages using Featured image
Started by: pierre-yvesC in: Toolset Professional Support |
3 | 9 | 3 years, 4 months ago | ||
Form reply to address
Started by: pierre-yvesC
in: Toolset Professional Support
Problem: The problem here is that the user wanted to do a custom from Header in their email. This email should come from the form dynamically. Solution: Based on the custom field i'm assuming that you're getting the email from the current post that is being created by the form. In this case you should be able to do this. function customise_cred_notifications( $headers, $formid, $postid, $notification_name, $notification_number ) { if ($formid==5 && $notification_name=='some name'){ $myheaders = array(); $email = get_post_meta('wpcf-consumeremail', $postid); $myheaders = array( 'Reply-To: '.$email); return array_merge($headers, $myheaders); } return $headers; } add_filter('cred_mail_header', 'customise_cred_notifications', 10, 5); In this code you will replace the 5 with the ID of your form and 'some name' with the name of the notification that you want to target. |
2 | 3 | 3 years, 4 months ago | ||
Hide empty field form in notification
Started by: pierre-yvesC in: Toolset Professional Support |
2 | 11 | 3 years, 6 months ago | ||
Change user of a post
Started by: pierre-yvesC in: Toolset Professional Support |
2 | 3 | 3 years, 8 months ago | ||
Different style for each wpv-item (four styles)
Started by: pierre-yvesC
in: Toolset Professional Support
Problem: I have a View that displays results in 4 different styles. I would like to repeat the pattern of style 1, style 2, style 3, and style 4 in the results. Another ticket discusses a solution for repeating 2 styles: @https://toolset.com/forums/topic/changing-row-colors-in-a-view/ Solution: Use wrap="4" to indicate you want to repeat the pattern every 4 items in the results, and use the wpv-item shortcode to define each iteration of the 4-item loop. [wpv-layout-start] [wpv-items-found] <!-- wpv-loop-start --> <wpv-loop wrap="4" pad="true"> [wpv-item index=1] <div class="style-red">[wpv-post-body view_template="Loop item in Styled View"]</div> [wpv-item index=2] <div class="style-green">[wpv-post-body view_template="Loop item in Styled View"]</div> [wpv-item index=3] <div class="style-blue">[wpv-post-body view_template="Loop item in Styled View"]</div> [wpv-item index=4] <div class="style-yellow">[wpv-post-body view_template="Loop item in Styled View"]</div> </wpv-loop> <!-- wpv-loop-end --> [/wpv-items-found] [wpv-no-items-found] <strong>[wpml-string context="wpv-views"]No items found[/wpml-string]</strong> [/wpv-no-items-found] [wpv-layout-end] Relevant Documentation: |
2 | 3 | 3 years, 8 months ago | ||
Woo can’t select attribute within a view
Started by: pierre-yvesC
in: Toolset Professional Support
Problem: I'm trying to display product attributes (each with a different price) directly within the view. Not in the single-product itself. So I want the user to be able to select the appropriate attribute in the view's page. Solution: There isn't such kind of built-in feature within Toolset plugins. The shortcode [wpv-woo-buy-or-select] works just like the default Woocommerce shop page. In the default Woocommerce shop page, it displays same "Select options" button for variable products, user can click this button, then redirect to the single product page Relevant Documentation: https://toolset.com/documentation/programmer-reference/views/views-shortcodes/#vf-154336 |
2 | 3 | 3 years, 9 months ago | ||
change class conditional
Started by: pierre-yvesC
in: Toolset Professional Support
Problem: Use [wpv-conditional] shortcode to setup background image. Solution: Please try to wrap the background image URL with single quote and test again, for example: https://toolset.com/forums/topic/change-class-conditional/#post-1826849 Relevant Documentation: |
2 | 3 | 4 years ago | ||
Video autoplay doesn't work
Started by: pierre-yvesC in: Toolset Professional Support |
2 | 9 | 4 years, 2 months ago | ||
woo commerce add to cart bug
Started by: pierre-yvesC
in: Toolset Professional Support
Problem: When I click "Add to cart"([wpv-woo-buy-options] shortcode), it displays a link "see cart". but this link is /prodcuts/null instead of /cart, giving a 404. Solution: It is a compatibility issue with theme file. Relevant Documentation: |
2 | 7 | 4 years, 6 months ago | ||
Displaying Posts with similar custom field values
Started by: pierre-yvesC
in: Toolset Professional Support
Problem: I would like to display a 2-column list of posts grouped by custom field value, showing the custom field value in one column and a link to the post title in the other column. Solution: You can use a View of this post type with a Query Filter based on your custom field, set by a shortcode attribute. Type the custom field value manually, then insert the View shortcode with the custom field filter just after the custom field value you typed manually, like this: Milan [wpv-view name="School View" wpvcity="Milan"] Relevant Documentation: |
2 | 15 | 4 years, 7 months ago | ||
Layout full width
Started by: pierre-yvesC in: Toolset Professional Support |
1 | 3 | 5 years, 4 months ago | ||
Blocks vs View vs Layout
Started by: pierre-yvesC
in: Toolset Professional Support
Problem: The issue here is that the user was a little confused about the Difference between toolset blocks, views and layouts. Solution: So it serves as a better way to integrate our other plugins with the gutenburg editor. So its not going to replace Layouts or Views but rather help to boost integrations. Relevant Documentation: |
3 | 6 | 5 years, 4 months ago | ||
Featured image link bug?
1
2
Started by: pierre-yvesC in: Toolset Professional Support |
3 | 18 | 5 years, 8 months ago | ||
Synchronize views
Started by: pierre-yvesC in: Toolset Professional Support |
2 | 3 | 5 years, 8 months ago | ||
Lightbox in slider
Started by: pierre-yvesC in: Toolset Professional Support |
2 | 2 | 5 years, 9 months ago |