Page 198 of 199 FirstFirst ... 98148188196197198199 LastLast
Results 1,971 to 1,980 of 1988
  1. #1971
    Join Date
    May 2017
    Location
    Stockholm
    Posts
    1
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 Support Thread

    Thanks davewest for your guidance! Will try that,
    Robert

  2. #1972
    Join Date
    Mar 2009
    Posts
    29
    Plugin Contributions
    2

    Default Re: Link Manager 3.0 Support Thread

    Zencart 1.5.6

    Feature request: Add the ability to upload .webp images

    Bug: Turning off "Display Submit Link" does not remove the submit link button from the links page.

    thanks!

  3. #1973
    Join Date
    Dec 2007
    Location
    Payson, AZ
    Posts
    1,076
    Plugin Contributions
    15

    Default Re: Link Manager 3.0 Support Thread

    Quote Originally Posted by MrSpiffy View Post
    Zencart 1.5.6

    Feature request: Add the ability to upload .webp images

    Bug: Turning off "Display Submit Link" does not remove the submit link button from the links page.

    thanks!
    Did you add the extension to maximum Values, Allowed Filename Extensions for uploading... manage the size in settings! Link Manager does not manage uploads, ZC does.

    Turning off/on submit is working for me so I'll need more hints ... I'm up to version 4 so I missed uploading somewhere... well check..
    Dave
    Always forward thinking... Lost my mind!

  4. #1974
    Join Date
    Mar 2009
    Posts
    29
    Plugin Contributions
    2

    Default Re: Link Manager 3.0 Support Thread

    Quote Originally Posted by davewest View Post
    Did you add the extension to maximum Values, Allowed Filename Extensions for uploading... manage the size in settings! Link Manager does not manage uploads, ZC does.
    Thanks for the pointer, Ive added webp to the list. Odd tho, Ive been able to upload webp images with zc, but with link manager was the 1st time it threw an error. Oh well.

    Im using version 3.7.0 of links manager.

    Here's a link to a live example: http://mangatakeout.com/index.php?lP...ain_page=links

    The submit link is removed from the sidebox, but on the links page, its there as a button.

    thanks!

  5. #1975
    Join Date
    Dec 2007
    Location
    Payson, AZ
    Posts
    1,076
    Plugin Contributions
    15

    Default Re: Link Manager 3.0 Support Thread

    Quote Originally Posted by MrSpiffy View Post
    Thanks for the pointer, Ive added webp to the list. Odd tho, Ive been able to upload webp images with zc, but with link manager was the 1st time it threw an error. Oh well.

    Im using version 3.7.0 of links manager.

    Here's a link to a live example: http://mangatakeout.com/index.php?lP...ain_page=links

    The submit link is removed from the sidebox, but on the links page, its there as a button.

    thanks!
    Looking at the rendered html.. it's completely different then what it should be.. check to see if the page was fully uploaded and not changed.

    The button code is
    Code:
    <br class="clearBoth" />     
    <?php if (BOX_DISPLAY_SUBMIT_LINK == 'true') {  ?>
    <div class="buttonRow 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>
    <?php }else{ ?>
     <h2 class="buttonRow forward">Sorry, We are not taking Links at this time.</h2>
    <?php } ?>
    <div class="buttonRow back"><?php echo zen_back_link() . zen_image_button(BUTTON_IMAGE_BACK, BUTTON_BACK_ALT) .'</a>'; ?></div>
              <br class="clearBoth" />
    Dave
    Always forward thinking... Lost my mind!

  6. #1976
    Join Date
    Mar 2009
    Posts
    29
    Plugin Contributions
    2

    Default Re: Link Manager 3.0 Support Thread

    Quote Originally Posted by davewest View Post
    The button code is
    Code:
    <br class="clearBoth" />     
    <?php if (BOX_DISPLAY_SUBMIT_LINK == 'true') {  ?>
    <div class="buttonRow 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>
    <?php }else{ ?>
     <h2 class="buttonRow forward">Sorry, We are not taking Links at this time.</h2>
    <?php } ?>
    <div class="buttonRow back"><?php echo zen_back_link() . zen_image_button(BUTTON_IMAGE_BACK, BUTTON_BACK_ALT) .'</a>'; ?></div>
              <br class="clearBoth" />
    Okay, the problem is in tpl_links_default.php line 118. It has the following code:
    Code:
    <br class="clearBoth" />     
             <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>
    <div class="buttonRow back"><?php echo zen_back_link() . zen_image_button(BUTTON_IMAGE_BACK, BUTTON_BACK_ALT) .'</a>'; ?></div>
              <br class="clearBoth" />
    swapping the above code for the code you supplied fixed my problem. For those clicking on my live link listed previously, you will not see the problem since its now been fixed.

    Is this plugin hosted on github? Do you want me to submit the edited tpl_links_default.php for merging?
    Last edited by MrSpiffy; 17 Apr 2020 at 10:18 PM.

  7. #1977
    Join Date
    Dec 2007
    Location
    Payson, AZ
    Posts
    1,076
    Plugin Contributions
    15

    Default Re: Link Manager 3.0 Support Thread

    Quote Originally Posted by MrSpiffy View Post
    Okay, the problem is in tpl_links_default.php line 118. It has the following code:
    Code:
    <br class="clearBoth" />     
             <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>
    <div class="buttonRow back"><?php echo zen_back_link() . zen_image_button(BUTTON_IMAGE_BACK, BUTTON_BACK_ALT) .'</a>'; ?></div>
              <br class="clearBoth" />
    swapping the above code for the code you supplied fixed my problem. For those clicking on my live link listed previously, you will not see the problem since its now been fixed.

    Is this plugin hosted on github? Do you want me to submit the edited tpl_links_default.php for merging?
    The lines I posted is part of the existing 3.7.0 mod. I have some cleanup to do and post 4 latter next week.
    Dave
    Always forward thinking... Lost my mind!

  8. #1978
    Join Date
    Dec 2007
    Location
    Payson, AZ
    Posts
    1,076
    Plugin Contributions
    15

    Default Re: Link Manager 3.0 Support Thread

    I did find some issues between my code and what was uploaded... So I redesigned it all... just sent in version 4 based on PHP 7.3 to 7.3.7 and ZC 1.5.6 to 1.5.7

    As before, if you don't have a approved link, the sidebox well not get displayed so I added one back to my site in the installer for that reason, but you don't need to keep it.
    Dave
    Always forward thinking... Lost my mind!

  9. #1979
    Join Date
    Jan 2007
    Location
    Illinois, USA
    Posts
    312
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 Support Thread

    Anyone using this with 1.5.7c?
    NTO: building a better network thru collaboration
    www.needtoorder.com | www.coffeewitheinstein.com

  10. #1980
    Join Date
    Dec 2007
    Location
    Payson, AZ
    Posts
    1,076
    Plugin Contributions
    15

    Default Re: Link Manager 3.0 Support Thread

    Quote Originally Posted by Carbonless View Post
    Anyone using this with 1.5.7c?

    version 4 some time belong 157 to 158... set for captcha 157+ not for any other less then 4v..
    Dave
    Always forward thinking... Lost my mind!

 

 

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