rshambaugh
Forum Replies Created
-
I added the following to my functions.php file
/* Change the Gravity Forms upload path for the Exhibition Entry Form (Form 1) */ add_filter("gform_upload_path_1", "change_upload_path", 10, 2); function change_upload_path($path_info, $form_id){ $path_info["path"] = "/path-to-wordpress-install/wp-content/gallery/entries/"; $path_info["url"] = "http://mywebsite.com/wp-content/gallery/entries/"; return $path_info; }I hope that helps
mcrib, I ended up using Gravity Forms, which I didn’t really want to do because the price is pretty high, but it seemed to be the easiest solution.
I use gravity forms to upload the files to the server. We don’t have a need to upload more than 10 photos, so I was able to make the form conditional and only show the correct amount of file upload fields and charge the user based on how many files they were uploading.
Gravity forms has a PayPal add-on which made it pretty easy.
I’m also using nextgen gallery to manage the photos, separately from gravity forms, but I modified the gravity forms upload destination so nextgen can recognize new uploads. I hope that makes sense.
Forum: Fixing WordPress
In reply to: What plugins to use for a photo submission site with payments?Thanks mrbrant. Gravity Forms looks nice, but $200 for the Developer license is a bit steep.
Any other options?