pierre-yvesC
In den letzten 30 Tagen erstellte Support-Threads: 0
Lieblings-Forenthemen
This user has no favorite topics.
Forum Topics Created
| Status | Thema | Supporter | Stimmen | Artikel | Aktualität |
|---|---|---|---|---|---|
|
html disapear from Form expert mode
Gestartet von: pierre-yvesC in: Toolset Professional Support |
|
2 | 3 | vor 3 years, 1 month | |
|
Custom map cluster
Gestartet von: pierre-yvesC in: Toolset Professional Support |
|
3 | 5 | vor 3 years, 2 months | |
|
Displaying search result in a modal
Gestartet von: pierre-yvesC in: Toolset Professional Support |
|
2 | 5 | vor 3 years, 3 months | |
|
Stuck with dynamic markers
Gestartet von: pierre-yvesC in: Toolset Professional Support |
|
2 | 3 | vor 3 years, 9 months | |
|
Toolset plugin cannot connect to toolset (dot) com
Gestartet von: pierre-yvesC in: Toolset Professional Support |
|
2 | 9 | vor 4 years | |
|
Map – displaying different color markers
Gestartet von: pierre-yvesC in: Toolset Professional Support |
|
2 | 5 | vor 4 years, 2 months | |
|
Simple reservation system
Gestartet von: pierre-yvesC in: Toolset Professional Support |
|
2 | 3 | vor 4 years, 3 months | |
|
Show cart link after user clicked Add to cart
Gestartet von: pierre-yvesC in: Toolset Professional Support |
|
2 | 4 | vor 4 years, 5 months | |
|
Navigation one by one
Gestartet von: 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 | vor 4 years, 7 months | |
|
Prev/Next pages using Featured image
Gestartet von: pierre-yvesC in: Toolset Professional Support |
|
3 | 9 | vor 4 years, 10 months | |
|
Form reply to address
Gestartet von: 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 | vor 4 years, 11 months |