Page 57 of 199 FirstFirst ... 747555657585967107157 ... LastLast
Results 561 to 570 of 1988
  1. #561
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Link Manager 3.0 release

    Quote Originally Posted by oxicottin View Post
    Before captcha, I was goofing with it on my running site and noticed that I never recieved an email just the person submitting the link to me does. I can see it was submited in the admin section but that is it. Why an i suposed to get an email?

    Thanks,
    Chad
    You should receive an e-mail that says:

    A new link was submitted at SITE NAME. It is not yet approved. Please verify this link and activate.

  2. #562
    Join Date
    Aug 2006
    Location
    West Virginia
    Posts
    321
    Plugin Contributions
    1

    Default Re: Link Manager 3.0 release

    No I never recieved one? I did a test entry again and the person asking gets an email but the admin doesnt? Thanks!

  3. #563
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Link Manager 3.0 release

    Quote Originally Posted by oxicottin View Post
    No I never recieved one? I did a test entry again and the person asking gets an email but the admin doesnt? Thanks!
    make sure the following section of code is in:
    includes/modules/pages/links_submit/header_php.php

    PHP Code:
    // build the message content
          
    $name $links_contact_name;
          
    $email_text sprintf(EMAIL_GREET_NONE$name);
          
    $html_msg['EMAIL_GREETING'] = str_replace('\n','',$email_text);
          
    $email_text .= EMAIL_WELCOME;
          
    $html_msg['EMAIL_WELCOME'] = str_replace('\n','',EMAIL_WELCOME);
          
    $email_text .= EMAIL_TEXT EMAIL_CONTACT EMAIL_WARNING;
          
    $email_store_text EMAIL_OWNER_TEXT $links_title "\n\n" $links_url "\n\n" $links_description;
    // Prepare HTML-portion of message
          
    $html_msg['EMAIL_MESSAGE_HTML'] =  str_replace('\n','',EMAIL_TEXT);
          
    $html_msg['CONTACT_US_OFFICE_FROM'] = OFFICE_FROM ' ' $name '<br />' OFFICE_EMAIL '(' $links_contact_email ')';
          
    $html_msg['EXTRA_INFO'] = $extra_info['HTML'];

          
    zen_mail($name$links_contact_emailEMAIL_SUBJECT$email_textSTORE_OWNERSTORE_OWNER_EMAIL_ADDRESS$html_msg'Link Exchange');

          
    zen_mail(STORE_OWNERSTORE_OWNER_EMAIL_ADDRESSEMAIL_OWNER_SUBJECT$email_store_text$name$links_contact_email$html_msg'Link Exchange'); 

  4. #564
    Join Date
    Aug 2006
    Location
    West Virginia
    Posts
    321
    Plugin Contributions
    1

    Default Re: Link Manager 3.0 release

    Yep, This is what i have:

    PHP Code:
    // build the message content
          
    $name $links_contact_name;
          
    $email_text sprintf(EMAIL_GREET_NONE$name);
          
    $email_text .= EMAIL_WELCOME;
          
    $email_text .= EMAIL_TEXT EMAIL_CONTACT EMAIL_WARNING;
          
    $email_store_text EMAIL_OWNER_TEXT $links_title "\n\n" $links_url "\n\n" $links_description;
    // Prepare HTML-portion of message
          
    $html_msg['EMAIL_GREETING'] = str_replace('\n','',$email_text);
          
    $html_msg['EMAIL_WELCOME'] = str_replace('\n','',EMAIL_WELCOME);
          
    $html_msg['EMAIL_MESSAGE_HTML'] =  str_replace('\n','',EMAIL_TEXT);
          
    $html_msg['CONTACT_US_OFFICE_FROM'] = OFFICE_FROM ' ' $name '<br />' OFFICE_EMAIL '(' $links_contact_email ')';
          
    $html_msg['EXTRA_INFO'] = $extra_info['HTML'];

          
    zen_mail($name$links_contact_emailEMAIL_SUBJECT$email_textSTORE_OWNERSTORE_OWNER_EMAIL_ADDRESS$html_msg'Link Exchange');

          
    zen_mail(STORE_OWNERSTORE_OWNER_EMAIL_ADDRESSEMAIL_OWNER_SUBJECT$email_store_text$name$links_contact_email$html_msg'Link Exchange');
          
          
    zen_redirect(zen_href_link(FILENAME_LINKS_SUBMIT'action=success'));
        }
    }
      
    // links breadcrumb 

  5. #565
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Link Manager 3.0 release

    Quote Originally Posted by oxicottin View Post
    Yep, This is what i have:

    PHP Code:
    // build the message content
          
    $name $links_contact_name;
          
    $email_text sprintf(EMAIL_GREET_NONE$name);
          
    $email_text .= EMAIL_WELCOME;
          
    $email_text .= EMAIL_TEXT EMAIL_CONTACT EMAIL_WARNING;
          
    $email_store_text EMAIL_OWNER_TEXT $links_title "\n\n" $links_url "\n\n" $links_description;
    // Prepare HTML-portion of message
          
    $html_msg['EMAIL_GREETING'] = str_replace('\n','',$email_text);
          
    $html_msg['EMAIL_WELCOME'] = str_replace('\n','',EMAIL_WELCOME);
          
    $html_msg['EMAIL_MESSAGE_HTML'] =  str_replace('\n','',EMAIL_TEXT);
          
    $html_msg['CONTACT_US_OFFICE_FROM'] = OFFICE_FROM ' ' $name '<br />' OFFICE_EMAIL '(' $links_contact_email ')';
          
    $html_msg['EXTRA_INFO'] = $extra_info['HTML'];

          
    zen_mail($name$links_contact_emailEMAIL_SUBJECT$email_textSTORE_OWNERSTORE_OWNER_EMAIL_ADDRESS$html_msg'Link Exchange');

          
    zen_mail(STORE_OWNERSTORE_OWNER_EMAIL_ADDRESSEMAIL_OWNER_SUBJECT$email_store_text$name$links_contact_email$html_msg'Link Exchange');
          
          
    zen_redirect(zen_href_link(FILENAME_LINKS_SUBMIT'action=success'));
        }
    }
      
    // links breadcrumb 
    Double check your e-mail settings:

    admin -> configuration -> e-mail options

  6. #566
    Join Date
    Aug 2006
    Location
    West Virginia
    Posts
    321
    Plugin Contributions
    1

    Default Re: Link Manager 3.0 release

    Clyde, I feel like a ######## now When the web host set up my Zencart they must have miss typed my email...... I was woundering why I never recieve an email...... thanks agian your a life saver!

  7. #567
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Link Manager 3.0 release

    Quote Originally Posted by oxicottin View Post
    Clyde, I feel like a ######## now When the web host set up my Zencart they must have miss typed my email...... I was woundering why I never recieve an email...... thanks agian your a life saver!
    Not at all

  8. #568
    Join Date
    Oct 2004
    Posts
    43
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 release

    Quote Originally Posted by clydejones View Post
    Do you want to delete or just replace the image?

    You're missing the links.css and links_submit.css stylesheets
    Thank you for finding this and letting me know.
    I have fixed this and have been trying to add the box at the bottom to add the image url by the person submitting. I followed the advice you gave oxycottin
    "Add the necessary define statements for that field to:
    includes/languages/english/extra_definitions/links_manager_defines.php

    Add the code necessary to draw the field in:
    includes/templates/YOUR_TEMPLATE/templates/tpl_links_submit_default.php"
    and I am still unable to get the box to show up..

    DAISIE

    any advice?

    Thank you for your time and assistance!

  9. #569
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Link Manager 3.0 release

    Quote Originally Posted by youniquephotos View Post
    Thank you for finding this and letting me know.
    I have fixed this and have been trying to add the box at the bottom to add the image url by the person submitting. I followed the advice you gave oxycottin
    "Add the necessary define statements for that field to:
    includes/languages/english/extra_definitions/links_manager_defines.php

    Add the code necessary to draw the field in:
    includes/templates/YOUR_TEMPLATE/templates/tpl_links_submit_default.php"
    and I am still unable to get the box to show up..

    DAISIE

    any advice?

    Thank you for your time and assistance!


    Just unzip the attached and upload the includes folder to your server
    Attachment 2612
    Last edited by clydejones; 31 Dec 2009 at 02:31 AM.

  10. #570
    Join Date
    Oct 2004
    Posts
    43
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 release

    Thank you for sending this. I did as you instructed and I am still unable to see the box. Have I done something wrong?

    Thank you,

 

 

Similar Threads

  1. Testimonial Manager Support Thread
    By clydejones in forum All Other Contributions/Addons
    Replies: 1500
    Last Post: 4 Feb 2021, 04:12 PM
  2. v154 News Box Manager v2.0.0 [Support Thread]
    By lat9 in forum All Other Contributions/Addons
    Replies: 84
    Last Post: 19 Jan 2021, 04:17 PM
  3. Download File Manager Support Thread
    By balihr in forum All Other Contributions/Addons
    Replies: 24
    Last Post: 17 Aug 2017, 10:32 PM
  4. Poll Manager Support Thread
    By boudewijn in forum Addon Sideboxes
    Replies: 148
    Last Post: 27 Jan 2016, 09:53 AM
  5. Empty Cart Manager [support thread]
    By Steven300 in forum All Other Contributions/Addons
    Replies: 49
    Last Post: 26 May 2010, 10:26 AM

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
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR