Page 165 of 199 FirstFirst ... 65115155163164165166167175 ... LastLast
Results 1,641 to 1,650 of 1988
  1. #1641
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Link Manager 3.0 Support Thread

    Quote Originally Posted by pixelpadre View Post
    Is there a mod that will create a sidebox where i can put exclusively external links to my other websites?

    Thanks
    use the "blank sidebox" mod

  2. #1642
    Join Date
    May 2008
    Posts
    97
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 Support Thread

    Quote Originally Posted by clydejones View Post
    That's the only section of Link Manager that I can think of that might cause the conflict.

    But note that it is not called by the sidebox.
    Hi Clyde,

    I was hoping too that this was the fix but is not. Just tested it and no change once the sidebox is activated the Slimbox dies.

    It has something to do with the Links sidebox but I have looked as well through the files (comparisons etc) but could not find anything.

    That's a total weird one.

    Tassos

  3. #1643
    Join Date
    May 2008
    Posts
    97
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 Support Thread

    Quote Originally Posted by hrinfo View Post
    Hi Clyde,

    I was hoping too that this was the fix but is not. Just tested it and no change once the sidebox is activated the Slimbox dies.

    It has something to do with the Links sidebox but I have looked as well through the files (comparisons etc) but could not find anything.

    That's a total weird one.

    Tassos
    Hi Clyde,

    I have found the culprit but I don't know how to fix it so you may have a solution. The problem is in the form in sidebox template file tpl_links_select.php (in the templates folder).

    The following form code produces the error:

    $content.= zen_draw_form('links', zen_href_link(FILENAME_LINKS, '', 'NONSSL', false), 'get');
    $content .= zen_draw_pull_down_menu('lPath', $links_array, (isset($_GET['lPath']) ? $_GET['lPath'] : ''), 'onchange="this.form.submit();" size="' . MAX_LINKS_LIST . '" style="width: 90%; margin: auto;"') . zen_hide_session_id();
    $content .= zen_draw_hidden_field('main_page', FILENAME_LINKS) . '</form>';

    If I remove the form element above then the sidebox still works with only the the text links to view and submit and the Slimbox works fine as well. So it is the code used above that causes it but don't know why.

    Hope that will help you to figure it out and help us

    Tassos

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

    Default Re: Link Manager 3.0 Support Thread

    Quote Originally Posted by hrinfo View Post
    Hi Clyde,

    I have found the culprit but I don't know how to fix it so you may have a solution. The problem is in the form in sidebox template file tpl_links_select.php (in the templates folder).

    The following form code produces the error:

    $content.= zen_draw_form('links', zen_href_link(FILENAME_LINKS, '', 'NONSSL', false), 'get');
    $content .= zen_draw_pull_down_menu('lPath', $links_array, (isset($_GET['lPath']) ? $_GET['lPath'] : ''), 'onchange="this.form.submit();" size="' . MAX_LINKS_LIST . '" style="width: 90%; margin: auto;"') . zen_hide_session_id();
    $content .= zen_draw_hidden_field('main_page', FILENAME_LINKS) . '</form>';

    If I remove the form element above then the sidebox still works with only the the text links to view and submit and the Slimbox works fine as well. So it is the code used above that causes it but don't know why.

    Hope that will help you to figure it out and help us

    Tassos
    The following is the code from the manufacturers sidebox tpl_manufacturers_select.php. I can't see any difference between the the two.

    $content.= zen_draw_form('manufacturers_form', zen_href_link(FILENAME_DEFAULT, '', $request_type, false), 'get');
    $content .= zen_draw_hidden_field('main_page', FILENAME_DEFAULT);
    $content .= zen_draw_pull_down_menu('manufacturers_id', $manufacturer_sidebox_array, (isset($_GET['manufacturers_id']) ? $_GET['manufacturers_id'] : ''), 'onchange="this.form.submit();" size="' . MAX_MANUFACTURERS_LIST . '" style="width: 90%; margin: auto;"') . zen_hide_session_id();
    $content .= '</form>';

    Does that mean that if you use the manufactures sidebox, lightbox (slimbox) doesn't work?

  5. #1645
    Join Date
    May 2008
    Posts
    97
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 Support Thread

    Quote Originally Posted by clydejones View Post
    The following is the code from the manufacturers sidebox tpl_manufacturers_select.php. I can't see any difference between the the two.

    $content.= zen_draw_form('manufacturers_form', zen_href_link(FILENAME_DEFAULT, '', $request_type, false), 'get');
    $content .= zen_draw_hidden_field('main_page', FILENAME_DEFAULT);
    $content .= zen_draw_pull_down_menu('manufacturers_id', $manufacturer_sidebox_array, (isset($_GET['manufacturers_id']) ? $_GET['manufacturers_id'] : ''), 'onchange="this.form.submit();" size="' . MAX_MANUFACTURERS_LIST . '" style="width: 90%; margin: auto;"') . zen_hide_session_id();
    $content .= '</form>';

    Does that mean that if you use the manufactures sidebox, lightbox (slimbox) doesn't work?
    Hi Clyde

    Sorry but manufactures sidebox does not affect the Slimbox. Just tested it and Slimbox worked fine until I turned on Links sidebox.

    I have also looked at it and other sideboxes and the only difference that I could find was that you use $request_type and lPath. So I did remove the lines and basically just left the opening and closing lines for the form creation. Still the Slimbox didn't work. So it is ( I think) the form creation component that creates the problem but I have no idea why.

    I will play a bit around later got to go now but will let you know if I figure anything else.

    Tassos
    PS. you can see the slimbox working here http://conderosa.mybusiness-hosting....&products_id=4

  6. #1646
    Join Date
    Nov 2007
    Location
    Sunny Coast, Australia
    Posts
    3,378
    Plugin Contributions
    9

    Default Re: Link Manager 3.0 Support Thread

    Quote Originally Posted by clydejones View Post
    Here's the fix;

    open includes/modules/pages/popup_links_help

    delete the following file:

    jscript_main.php

    -------

    This fix will be included in the next update of Link Manager
    Opened includes/modules/pages/popup_links_help and renamed jscript_main.php to jscript_main.php.bak

    Then enabled Links sidebox and tested Zen Lightbox.

    Result: Zen Lightbox stops working

  7. #1647
    Join Date
    May 2008
    Posts
    97
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 Support Thread

    Hi Clyde

    Found the bug and fixed it :-)

    In /includes/templates/your_template_/sideboxes/tpl_links_select.php

    Replace line 14:

    $content.= zen_draw_form('links', zen_href_link(FILENAME_LINKS, '', 'NONSSL', false), 'get');

    With:

    $content.= zen_draw_form('links_form', zen_href_link(FILENAME_LINKS, '', 'NONSSL', false), 'get');

    Hope that helps few people but thanks does goes to Clyde for this great module.

    Tassos

  8. #1648
    Join Date
    Nov 2007
    Location
    Sunny Coast, Australia
    Posts
    3,378
    Plugin Contributions
    9

    Default Re: Link Manager 3.0 Support Thread

    Quote Originally Posted by hrinfo View Post
    Hi Clyde

    Found the bug and fixed it :-)

    In /includes/templates/your_template_/sideboxes/tpl_links_select.php

    Replace line 14:

    $content.= zen_draw_form('links', zen_href_link(FILENAME_LINKS, '', 'NONSSL', false), 'get');

    With:

    $content.= zen_draw_form('links_form', zen_href_link(FILENAME_LINKS, '', 'NONSSL', false), 'get');

    Hope that helps few people but thanks does goes to Clyde for this great module.

    Tassos
    Just tested your fix and can confirm that it works

    Links sidebox is turned on and Zen Lightbox works as well

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

    Default Re: Link Manager 3.0 Support Thread

    Quote Originally Posted by hrinfo View Post
    Hi Clyde

    Found the bug and fixed it :-)

    In /includes/templates/your_template_/sideboxes/tpl_links_select.php

    Replace line 14:

    $content.= zen_draw_form('links', zen_href_link(FILENAME_LINKS, '', 'NONSSL', false), 'get');

    With:

    $content.= zen_draw_form('links_form', zen_href_link(FILENAME_LINKS, '', 'NONSSL', false), 'get');

    Hope that helps few people but thanks does goes to Clyde for this great module.

    Tassos
    Quote Originally Posted by frank18 View Post
    Just tested your fix and can confirm that it works

    Links sidebox is turned on and Zen Lightbox works as well
    I'll make sure this gets included in the next upgrade of the module.

  10. #1650
    Join Date
    Feb 2009
    Posts
    44
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 Support Thread

    Hello,
    I would like to remove the category images and have the titles stack in one column. How would I do this?

    Links Page

    Thanks for the help!

 

 

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