pierre-yvesC
Fils de soutien créés au cours des 30 derniers jours : 0
Sujets de forum favoris
This user has no favorite topics.
Sujets de forum créés
| Status | Topic | Supporter | Voix | Publications | Nouveauté |
|---|---|---|---|---|---|
|
html disapear from Form expert mode
Commencé par : pierre-yvesC in: Toolset Professional Support |
|
2 | 3 | Il y a 3 years, 1 month | |
|
Custom map cluster
Commencé par : pierre-yvesC in: Toolset Professional Support |
|
3 | 5 | Il y a 3 years, 2 months | |
|
Displaying search result in a modal
Commencé par : pierre-yvesC in: Toolset Professional Support |
|
2 | 5 | Il y a 3 years, 3 months | |
|
Stuck with dynamic markers
Commencé par : pierre-yvesC in: Toolset Professional Support |
|
2 | 3 | Il y a 3 years, 9 months | |
|
Toolset plugin cannot connect to toolset (dot) com
Commencé par : pierre-yvesC in: Toolset Professional Support |
|
2 | 9 | Il y a 4 years | |
|
Map – displaying different color markers
Commencé par : pierre-yvesC in: Toolset Professional Support |
|
2 | 5 | Il y a 4 years, 2 months | |
|
Simple reservation system
Commencé par : pierre-yvesC in: Toolset Professional Support |
|
2 | 3 | Il y a 4 years, 3 months | |
|
Show cart link after user clicked Add to cart
Commencé par : pierre-yvesC in: Toolset Professional Support |
|
2 | 4 | Il y a 4 years, 5 months | |
|
Navigation one by one
Commencé par : pierre-yvesC
in: Toolset Professional Support
Problem: The issue here is that the user wanted to paginate their post slider 1 slide at a time while maintaining 5 slides visible. Solution: Unfortunately this isn't possible to do based on how the view pagination works. The view works by loading pages of posts and not the individual post itself. What I mean by this is that if you have 15 posts and you're displaying 5 posts per page, then you will have 3 pages. Each click will load 5 posts rather than the next immediate post. |
|
2 | 3 | Il y a 4 years, 7 months | |
|
Prev/Next pages using Featured image
Commencé par : pierre-yvesC in: Toolset Professional Support |
|
3 | 9 | Il y a 4 years, 10 months | |
|
Form reply to address
Commencé par : 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 | Il y a 4 years, 11 months |