• Resolved steilenhang

    (@steilenhang)


    Hi, and thank you for a great plugin!

    I got an idea I wanted to talk to you about. I would like to let all users create their own photoalbum (only one) with a limited number of photos, separated from my albums so that I can display my albums like before. Then you would have another gallerypage that includes all user-galleries.

    Would it be a lot of work to make something like that happen?

    http://wordpress.org/extend/plugins/wp-photo-album-plus/

Viewing 15 replies - 1 through 15 (of 77 total)
  • Plugin Author Jacob N. Breetvelt

    (@opajaap)

    We have that already.

    • Create a ‘container’ album.
    • Check Table IX-B6: Grant an album
    • Select your container album in Table IX-B7: Grant parent
    • Create a WP page with content: [wppa type=”album” album=”13″ …][/wppa] (assuming the container album is #13)
    • Further required settings: Table VII-B 0,1 and 2 checked. May be more in that subtable, that is up to you. In the next version you can additionally give them the possibility to edit the photo information
    • Set the (default) upload limit on Table IX-B5

    As soon as the user logs in, his album will be created if he does not have one, and he can upload to his own album only, the max you specified.

    Plugin Author Jacob N. Breetvelt

    (@opajaap)

    There is an explanation and demo here
    You may make an account and login and go to the Members page.

    Thread Starter steilenhang

    (@steilenhang)

    Thank you! I will give it a try!

    Thread Starter steilenhang

    (@steilenhang)

    I almost made it work, but I have some questions:

    Where can I change the default album description? “Default photo album for ..”

    The albums are created when a user logges in, but I have to approve all the uploaded pictures. Anyway to allow the users to publish their own pictures?

    And I am also struggling a bit with a front-end “Edit your gallery” page. I don’t want users at the adminpanel.

    Thread Starter steilenhang

    (@steilenhang)

    I found out the first one. It was in the translations, I just missed it last time I looked.

    Plugin Author Jacob N. Breetvelt

    (@opajaap)

    Uncheck Table VII-B4 will skip upload moderation.

    Uncheck Table VII-B5 will remove uploader edit functionality

    Thread Starter steilenhang

    (@steilenhang)

    I got VII-B4 unchecked and VII-B5 checked, but images are still “Pending” when a user uploads.

    Plugin Author Jacob N. Breetvelt

    (@opajaap)

    Existing photos will stay the same status. Just checked it, should work correctly.

    Thread Starter steilenhang

    (@steilenhang)

    Sadly it does not work.

    Plugin Author Jacob N. Breetvelt

    (@opajaap)

    A link please…

    Thread Starter steilenhang

    (@steilenhang)

    I got a testsite at steilenhang.com. The same thing happenes there. I tried deactivating all of my plugins and even switching to a standard theme. Still no luck.

    I can make you a testuser there if you want to have a look?

    Plugin Author Jacob N. Breetvelt

    (@opajaap)

    Yes, pls send email with link to site and login data for admin account to: opajaap at opajaap dot nl

    Plugin Author Jacob N. Breetvelt

    (@opajaap)

    Thanx, i have seen the issue, am working on it.

    Thread Starter steilenhang

    (@steilenhang)

    Great 🙂

    Plugin Author Jacob N. Breetvelt

    (@opajaap)

    I have a patch for you, not tested but it should work.

    wppa-upload.php line 844,855 reads:

    // Add photo to db
    $status = ( $wppa_opt['wppa_upload_moderate'] && !current_user_can('wppa_admin') ) ? 'pending' : 'publish';

    Change to:

    // Add photo to db
    $status = ( $wppa_opt['wppa_upload_moderate'] == 'yes' && !current_user_can('wppa_admin') ) ? 'pending' : 'publish';

    Please try and tell me if it works.

Viewing 15 replies - 1 through 15 (of 77 total)
  • The topic ‘User gallery?’ is closed to new replies.