Support » Plugin: WordPress Gallery Plugin - NextGEN Gallery » Charge $ to upload files

  • I’m building a photo gallery website where people are going to be paying a fee to list their photos on the website. NextenGallery looks like the best way to manage the photos, but I’m not sure what the best way to handle the submission process would be. The fee to upload files will vary based on how many photos they’re submitting. It looks like nggallery has the ability to tie in paypal for selling photos, but how about uploading? Another forum topic suggested Gravity Forms, but $200 is kinda high.

    http://wordpress.org/extend/plugins/nextgen-gallery/

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi rshambaugh. I’m looking for the same thing. Did you find a solution? Thanks!

    Thread Starter rshambaugh

    (@rshambaugh)

    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.

    rshambaugh:

    How specifically did you change the directory path? I am in need of doing this very quickly. I am going to go ahead and buy the GravityForms plugin.

    Much thanks in advance!

    Thread Starter rshambaugh

    (@rshambaugh)

    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

    Ah! Thanks so much; I am a recent convert from Drupal development to WordPress. The community here seems to be so much more helpful. 🙂

    I very much appreciate the help!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Charge $ to upload files’ is closed to new replies.