pierre-yvesC
Admite hilos creados en los últimos 30 días: 0
Debates favoritos del foro
Este usuario no tiene debates favoritos.
Temas del foro creados
| Status | Debate | Supporter | Voces | Mensajes | Caducidad |
|---|---|---|---|---|---|
|
html disapear from Form expert mode
Iniciado por: pierre-yvesC en: Toolset Professional Support |
|
2 | 3 | 3 years, 1 month ago | |
|
Custom map cluster
Iniciado por: pierre-yvesC en: Toolset Professional Support |
|
3 | 5 | 3 years, 2 months ago | |
|
Displaying search result in a modal
Iniciado por: pierre-yvesC en: Toolset Professional Support |
|
2 | 5 | 3 years, 3 months ago | |
|
Stuck with dynamic markers
Iniciado por: pierre-yvesC en: Toolset Professional Support |
|
2 | 3 | 3 years, 9 months ago | |
|
Toolset plugin cannot connect to toolset (dot) com
Iniciado por: pierre-yvesC en: Toolset Professional Support |
|
2 | 9 | 4 years ago | |
|
Map – displaying different color markers
Iniciado por: pierre-yvesC en: Toolset Professional Support |
|
2 | 5 | 4 years, 2 months ago | |
|
Simple reservation system
Iniciado por: pierre-yvesC en: Toolset Professional Support |
|
2 | 3 | 4 years, 3 months ago | |
|
Show cart link after user clicked Add to cart
Iniciado por: pierre-yvesC en: Toolset Professional Support |
|
2 | 4 | 4 years, 5 months ago | |
|
Navigation one by one
Iniciado por: pierre-yvesC
en: 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 | 4 years, 7 months ago | |
|
Prev/Next pages using Featured image
Iniciado por: pierre-yvesC en: Toolset Professional Support |
|
3 | 9 | 4 years, 10 months ago | |
|
Form reply to address
Iniciado por: pierre-yvesC
en: 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 | 4 years, 11 months ago |