Membership plugin - photo upload page
3 posts by 2 authors in: Forums > CMS Builder: Plugins & Add-ons
Last Post: April 28, 2012 (RSS)
By _kate_ - April 6, 2012
Hi,
I'm just playing around with the membership plugin to see what I can do with it. I made a quick 'Photos' page to see if I could allow users to upload photos.
I used this and it worked fantastic -
http://www.interactivetools.com/iforum/Products_C2/CMS_Builder%3A_Plugins_%26_Add-ons_F40/Allow_Logged_in_Users_to_Access_Upload_Form_P85546/gforum.cgi?post=81668
I'm wondering though, is there anyway to list on my photos page which user uploaded the photos? I noticed a system field called updatedByUserNum so I added the line
But it just brings up the number of that user. I can't seem to get it to bring up the "username" field and can't figure out how to make that part of the photos section without making a field someone has to fill out manually (don't want this).
Any help appreciated :)
I'm just playing around with the membership plugin to see what I can do with it. I made a quick 'Photos' page to see if I could allow users to upload photos.
I used this and it worked fantastic -
http://www.interactivetools.com/iforum/Products_C2/CMS_Builder%3A_Plugins_%26_Add-ons_F40/Allow_Logged_in_Users_to_Access_Upload_Form_P85546/gforum.cgi?post=81668
I'm wondering though, is there anyway to list on my photos page which user uploaded the photos? I noticed a system field called updatedByUserNum so I added the line
Uploaded by: <?php echo $record['updatedByUserNum'] ?><br/>
But it just brings up the number of that user. I can't seem to get it to bring up the "username" field and can't figure out how to make that part of the photos section without making a field someone has to fill out manually (don't want this).
Any help appreciated :)
Re: [_kate_] Membership plugin - photo upload page
By Jason - April 9, 2012
Hi,
If $record is from the record that holds the upload, you can try this:
Hope this helps
If $record is from the record that holds the upload, you can try this:
Uploaded by: <?php echo $record['createdBy.username'] ?><br/>
Hope this helps
---------------------------------------------------
Jason Sauchuk - Project Manager
interactivetools.com
Hire me! Save time by getting our experts to help with your project.
http://www.interactivetools.com/consulting/
Jason Sauchuk - Project Manager
interactivetools.com
Hire me! Save time by getting our experts to help with your project.
http://www.interactivetools.com/consulting/
Re: [Jason] Membership plugin - photo upload page
By _kate_ - April 28, 2012
That worked perfectly! Thank you :)