Page 25 of 199 FirstFirst ... 1523242526273575125 ... LastLast
Results 241 to 250 of 1988
  1. #241
    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 wtashby View Post
    Thanks, that fixed that problem. However, My Submit Link button is not showing up, and when I click on properties for the image (the infamous red x) I get this path:

    Any thoughts?
    open includes/templates/YOUR_TEMPLATE/templates/tpl_links_default.php

    Find this line of code (around line 126)

    Code:
    <div class="forward"><?php echo '<a href="' . zen_href_link(FILENAME_LINKS_SUBMIT, zen_get_all_get_params()) . '">' . zen_image_button(BUTTON_SUBMIT_LINK, BUTTON_SUBMIT_LINK_ALT) . '</a>'; ?></div>
    and replace it with this line:

    Code:
    <div class="forward"><?php echo '<a href="' . zen_href_link(FILENAME_LINKS_SUBMIT, zen_get_all_get_params()) . '">' . zen_image_button(BUTTON_IMAGE_SUBMIT_LINK, BUTTON_SUBMIT_LINK_ALT) . '</a>'; ?></div>

  2. #242
    Join Date
    May 2005
    Location
    Brussels belgium
    Posts
    203
    Plugin Contributions
    0

    help question Re: Link Manager 3.0 release

    Hello Clyde,

    I've put your correction to the right place but I still recieve this error

    maybe the error come from the option (don't come on screen)

    see the attatch


    tahnks for your help

    Chris
    Attached Images Attached Images  
    Zen cart or nothing !!

  3. #243
    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 titangen View Post
    Hello Clyde,

    I've put your correction to the right place but I still recieve this error

    maybe the error come from the option (don't come on screen)

    see the attatch


    tahnks for your help

    Chris
    try running the following SQL script

    copy and paste it into admin -> tools -> install sql patches


    Code:
    DROP TABLE IF EXISTS `links_status`;
    CREATE TABLE `links_status` (
      `links_status_id` int(11) NOT NULL default '0',
      `language_id` int(11) NOT NULL default '1',
      `links_status_name` varchar(32) NOT NULL default '',
      PRIMARY KEY  (`links_status_id`,`language_id`),
      KEY `idx_links_status_name` (`links_status_name`)
    ) ENGINE=MyISAM;
    
    INSERT INTO `links_status` VALUES (1, 1, 'Pending');
    INSERT INTO `links_status` VALUES (2, 1, 'Approved');
    INSERT INTO `links_status` VALUES (3, 1, 'Disabled');

  4. #244
    Join Date
    Feb 2006
    Posts
    656
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 release

    Quote Originally Posted by clydejones View Post
    open includes/templates/YOUR_TEMPLATE/templates/tpl_links_default.php

    Find this line of code (around line 126)

    Code:
    <div class="forward"><?php echo '<a href="' . zen_href_link(FILENAME_LINKS_SUBMIT, zen_get_all_get_params()) . '">' . zen_image_button(BUTTON_SUBMIT_LINK, BUTTON_SUBMIT_LINK_ALT) . '</a>'; ?></div>
    and replace it with this line:

    Code:
    <div class="forward"><?php echo '<a href="' . zen_href_link(FILENAME_LINKS_SUBMIT, zen_get_all_get_params()) . '">' . zen_image_button(BUTTON_IMAGE_SUBMIT_LINK, BUTTON_SUBMIT_LINK_ALT) . '</a>'; ?></div>
    Perfect! My submit link button shows now!

    Now, however, on the submit a link page, I have this:
    ENTRY_LINKS_RECIPROCAL_HELP
    instead of the Help link for the popup.

    Also, This phrase shows up twice, one after the other:
    Please choose the most appropriate category for your link. The Real As Seen On TV reserves the right to change the category or edit your description, if needed.
    Thanks for your help!
    I Think, Therefore I Zen. I Zen, Therefore, I AM!
    Personalized Flowers!
    Flowertown Speaking Roses
    using version 1.5.7-06232020

  5. #245
    Join Date
    Feb 2006
    Posts
    656
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 release

    I spoke too soon about the submit link button. It still isn't showing up on the Links pages. I get the red x, and it's path is still The previous fix only fixed the problem on the Submit a Link page.
    I Think, Therefore I Zen. I Zen, Therefore, I AM!
    Personalized Flowers!
    Flowertown Speaking Roses
    using version 1.5.7-06232020

  6. #246
    Join Date
    Feb 2006
    Posts
    656
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 release

    Ok, I fixed it. There are 2(two) instances of
    <div class="forward"><?php echo '<a href="' . zen_href_link(FILENAME_LINKS_SUBMIT, zen_get_all_get_params()) . '">' . zen_image_button(BUTTON_SUBMIT_LINK, BUTTON_SUBMIT_LINK_ALT) . '</a>'; ?></div>
    in the affore mentioned file, so I replaced them both. Now all is well in Link-Land
    I Think, Therefore I Zen. I Zen, Therefore, I AM!
    Personalized Flowers!
    Flowertown Speaking Roses
    using version 1.5.7-06232020

  7. #247
    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 wtashby View Post
    Perfect! My submit link button shows now!

    Now, however, on the submit a link page, I have this:
    instead of the Help link for the popup.

    Also, This phrase shows up twice, one after the other:


    Thanks for your help!
    Try this fix

    Attachment 1735
    Last edited by clydejones; 31 Dec 2009 at 02:31 AM.

  8. #248
    Join Date
    Feb 2007
    Location
    Los Angeles
    Posts
    359
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 release

    Hi

    i use the 1.37 version and i just download this one
    Version: 3.1
    Zen Cart™ Version: v1.3.7
    Update added on Apr 04 2007
    Download Now!
    File size: 270938 bytes

    but whan i open it all the file are duplicate, i could go ahead and use the latest ones , but i think i wait untill some one tell me before i install wrong file

    ty

  9. #249
    Join Date
    Feb 2006
    Posts
    656
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 release

    Quote Originally Posted by clydejones View Post
    Try this fix

    Attachment 1735
    I do believe that has done the trick. Thanks so much for your time and help clydejones!
    I Think, Therefore I Zen. I Zen, Therefore, I AM!
    Personalized Flowers!
    Flowertown Speaking Roses
    using version 1.5.7-06232020

  10. #250
    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 motti View Post
    Hi

    i use the 1.37 version and i just download this one
    Version: 3.1
    Zen Cart™ Version: v1.3.7
    Update added on Apr 04 2007
    Download Now!
    File size: 270938 bytes

    but whan i open it all the file are duplicate, i could go ahead and use the latest ones , but i think i wait untill some one tell me before i install wrong file

    ty
    There ARE two sets of files in the MOD.

    one for a new install and the other for upgrading from a previous version.

    If you are installing the mod for the first time follow the instructions in the install.txt.

 

 

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