Results 1 to 10 of 1988

Hybrid View

  1. #1
    Join Date
    Jun 2007
    Location
    Eustis, Florida, USA, EARTH
    Posts
    836
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 Support Thread

    Quote Originally Posted by frank18 View Post
    Temporary solution:

    1. disable Links Sidebox
    2. create EZ pages links
    index.php?main_page=links_submit
    index.php?main_page=links
    and both mods are working
    Is there a mod that will create a sidebox where i can put exclusively external links to my other websites?

    Thanks

  2. #2
    Join Date
    Apr 2006
    Location
    Texas
    Posts
    6,196
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 Support Thread

    Thanks Clyde for the fix..

  3. #3
    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 haredo View Post
    Thanks Clyde for the fix..
    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.

  4. #4
    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

  5. #5
    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

  6. #6
    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

  7. #7
    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?

  8. #8
    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

 

 

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

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