tsjippy
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7 Dropbox] 2 feature requests…Thanks!
But this topic is not yet solved, auto-renaming files is not yet implemented
Forum: Plugins
In reply to: [Advanced Contact form 7 DB] Sort columnI want this to!
More specifically I want the oldest submission on top, not the newest
Forum: Plugins
In reply to: [Contact Form 7 Dropbox] 2 feature requests…give the field account number an id and fill that in the correct box on the dropbox tab.
But look at the code you have to customize that anyway.
Forum: Plugins
In reply to: [Contact Form 7 Dropbox] 2 feature requests…path is ok than, probably your access token is incorrect?
http://99rabbits.com/get-dropbox-access-token/Forum: Plugins
In reply to: [Contact Form 7 Dropbox] 2 feature requests…whats is your folder path?
Forum: Plugins
In reply to: [Contact Form 7 Dropbox] 2 feature requests…did you have the same problem with the original plugin?
Forum: Plugins
In reply to: [Contact Form 7 Dropbox] 2 feature requests…You can use this link to my custom plugin link
I have added two extra fields: “target file name field ID” and “Folder location”.the first gives you the possibility to add the value of a field as a filename. In My case thats a counter giving me an incrementing ID. The latter gives the possibility to add a specific location within dropbox
Forum: Plugins
In reply to: [Advanced Contact form 7 DB] extend show recordAll of the sudden its working
Forum: Plugins
In reply to: [Advanced Contact form 7 DB] extend show recordhow can I add a picture?
Forum: Plugins
In reply to: [Contact Form 7] ‘wpcf7_posted_data’ not working?Now have the same headers:
<form action="https://www.tastedelft.nl/wp-admin/admin-post.php?action=add_foobar" method="post" class="wpcf7-form" novalidate="novalidate">My custom form does a redirect, the Contact form 7 does not.
my whole custom, working form:
<form action="https://www.tastedelft.nl/wp-admin/admin-post.php?action=add_foobar" method="post" class="wpcf7-form" novalidate="novalidate"> <input name="name" placeholder="Enter email" type="text"> <button type="submit" class="btn btn-primary">Submit</button> </form>Forum: Plugins
In reply to: [Contact Form 7] ‘wpcf7_posted_data’ not working?This however works:
<form action="<?php echo esc_url( admin_url('admin-post.php') ); ?>?action=add_foobar" method="post">But I have no clue how to add that to a contact form
Forum: Plugins
In reply to: [Contact Form 7] ‘wpcf7_posted_data’ not working?I tried something totally different to achieve the same result but that fails as well:
So I have added
<input type="hidden" name="action" value="add_foobar">to the form, and this to my functions.php:function prefix_admin_add_foobar(){ status_header(200); var_dump($_POST); // wp_redirect( 'http://any.url/',302 ); die("Server received '{$_POST['name']}' from your browser."); } add_action( 'admin_post_add_foobar', 'prefix_admin_add_foobar' ); add_action( 'admin_post_nopriv_add_foobar', 'prefix_admin_add_foobar' ); // this is for non logged usersdoes not work…
Forum: Plugins
In reply to: [Advanced Contact form 7 DB] extend show recordThats my problem, that field is greyed out, I cannot change its value. Tried it in several browsers including Firefox
- This reply was modified 7 years, 10 months ago by tsjippy.
Forum: Plugins
In reply to: [Contact Form 7 Modules] Help with the hookAh thanks
Forum: Plugins
In reply to: [Contact Form 7 Dropbox] File name or Folder nameI tweaked the plugin so that it now does this. I’ve added two extra fields:
1) folder location, to specify where you want to store the files in dropbox
2) File name to specify the filename based on a given field in the formBut I have no idea how to upload these changes