Results 1 to 1 of 1

Thread: Add senders / requesters photo to private photo request email.

  1. #1
    Prometheus
    Guest

    Default Add senders / requesters photo to private photo request email.

    Adds reqesters / senders thumbnail or pic 1 to private photo request email.

    This not only adds the members pic but makes it a clickable hyper link to their profile.

    Code:
    in your photo_gallery.php
    
    
    
    find:
    
    $r_arr = db_arr("SELECT ID, NickName, Email, EmailFlag FROM Profiles WHERE ID = ".$_COOKIE['memberID'] );
    
    
    
    replace with:
    
    $r_arr = db_arr("SELECT * FROM Profiles WHERE ID = ".$_COOKIE['memberID'] );
    
    
    add below it:
    
    
    //------------------------------------------
    
    $nickname = $r_arr['NickName'];
    
    if ( $r_arr['Pic_1_addon'] < "1" )
    	    {
    
    		    $thumbnail = '<a href='.$site[url].$nickname.'><img border=0 src='.$site[url].'templates/tmpl_ae3/images_ae3/pic_not_avail.gif></a>';
    	    }
    
    	else
    	    {
    
    		$thumbnail = '<a href='.$site[url].$nickname.'><img border=0 src='.$site[url].'id_img/'.$r_arr['ID'].'_1_'.$r_arr['Pic_1_addon'].'.jpg></a>';
    
    	    }
    
    
    
    //------------------------------------------
    
    
    
    
    
    find:
    
    
    $subject = getParam('t_PrivPhotosRequest_subject');
    
    
    
    add below:
    
    
    $body = str_replace( "<Thumbnail>", $thumbnail, $body);
    
    
    
    In your "Request for Private Photos template" email template add <Thumbnail>  to your template wherever you what the picture to appear.
    
    If you want to display the thumbnail instead of Pic 1 replace all occurances of Pic_1_addon with Pic_0_addon and change _1_ to _0_
    Attached Images Attached Images

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Photo Upload Failed (Photo Error) - Photo Module
    By Page7 in forum Boonex Dolphin 7
    Replies: 4
    Last Post: 03-24-2010, 09:28 PM
  2. Private Photo
    By n1c02 in forum Dolphin General Discussion v6.00 and above
    Replies: 2
    Last Post: 12-06-2009, 11:14 AM
  3. I need Private Photo & Photo Album Mode for 6.1.4
    By SexyPhoto in forum Free Mod Exchange
    Replies: 15
    Last Post: 01-27-2009, 10:36 PM
  4. Does anyone have the private photo mod for v6?
    By HW-David in forum Free Mod Exchange
    Replies: 4
    Last Post: 01-16-2008, 03:22 AM
  5. Rate Photo Private Photo bug
    By Prometheus in forum Bugs aeDating v4.1.2
    Replies: 2
    Last Post: 10-14-2006, 11:17 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •