Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Contact form 7 has some shortcodes, like [_date] to get todays date. But I want to display the date one week from now.

So I need to create a custom shortcode to Contact form 7 that takes say [next_week] and in the recived email the correct date is displayed.

Where and how do I create custom shortcodes to Contact form 7?

share|improve this question

2 Answers

I haven't do before, but I think that shortcodes are managed by wordpress itself (even for plugins as CF7).

An example to create a simple shortcode is:

//[foobar]
function foobar_func( $atts ){
 return "foo and bar";
}
add_shortcode( 'foobar', 'foobar_func' );

Placed in functions.php.

For more information: http://codex.wordpress.org/Shortcode_API

Or you can use a plugin like this that do the work: http://wordpress.org/extend/plugins/shortbus/

share|improve this answer
CF7 prints [foobar], posts and pages print "foo and bar". So it did not work. – halliewuud Nov 2 '12 at 8:02
This works fine when you would like to use the shortcode in the form but it does not work in the email beeing sent. Se my answer for the correct solution – halliewuud Nov 2 '12 at 9:51
up vote 1 down vote accepted

Add the following to your functions.php

wpcf7_add_shortcode('custom_date', 'wpcf7_custom_date_shortcode_handler', true);

function wpcf7_custom_date_shortcode_handler($tag) {
    if (!is_array($tag)) return '';

    $name = $tag['name'];
    if (empty($name)) return '';

    $next_week = date('Y-m-d', time() + (60*60*24*7)); 
    $html = '<input type="hidden" name="' . $name . '" value="' . $next_week . '" />';
    return $html;
}

Now in the "Form" field in CF7 GUI type [custom_date next_week]

Now you can use [next_week] in the message body.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.