WiSch
Forum Replies Created
-
For the username maybe this can help you out?
For some other dynamic Text maybe this PlugIn is for you?
Maybe you’ll find a solution here?
http://wordpress.org/support/topic/contact-form-7-automatically-send-with-username-and-email?replies=9Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Database entry with form sendHello again.
It seems that the above code is not the problem because if I try this
function mycf7_vor_mailversand($cf7) { $current_postid = 1952; $anmeldungen = '33'; update_post_meta($current_postid, 'Anmeldungen', $anmeldungen); } add_action( 'wpcf7_before_send_mail', 'mycf7_vor_mailversand' );it didn’t work either!?
Someone out there?
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Database entry with form sendHello.
I found out, that I can use a so called Hook to realize that…
I tried the following code in my functions.php but it didn’t work.
The form ist send via Mail but the Meta-field did not change the value…
Did someone see the error?Thanks for your help.
function wpcf7_vor_mailversand($cf7) { $current_post_id = $post->ID; $anmeldungen = get_post_meta($current_post_id, 'Anmeldungen', true); $anmeldungen++; update_post_meta($current_post_id, 'Anmeldungen', $anmeldungen); } add_action( 'wpcf7_before_send_mail', 'wpcf7_vor_mailversand' );Forum: Plugins
In reply to: [Frontpage-Slideshow] [Plugin: Frontpage-Slideshow] Change CSS -> BorderOK, I’ll try that.
Thanks.Forum: Plugins
In reply to: [Frontpage-Slideshow] [Plugin: Frontpage-Slideshow] Change CSS -> BorderHi Jeff.
That’s an option, but transparent borders also take space.
Therefore I want to set it to “none”. Not possible?