Page 109 of 199 FirstFirst ... 95999107108109110111119159 ... LastLast
Results 1,081 to 1,090 of 1988
  1. #1081
    Join Date
    Dec 2005
    Location
    Australia
    Posts
    772
    Plugin Contributions
    0

    red flag Re: Link Manager 3.0 release

    Hi,

    Thanks for your suggestion. Are you saying that I should work out the sort order of links by displaying the newest pending links first on the admin page? I went to the page you told me to look at. Is this what I am supposed to do? Please advise.

    open admin/links.php

    find this line of code (around line 556)
    Code:
    $links_query_raw = "select l.links_id, l.links_url, l.links_image_url, l.links_date_added, l.links_last_modified, l.links_status, l.links_clicked, ld.links_title, ld.links_description, l.links_contact_name, l.links_contact_email, l.links_reciprocal_url, l.links_status from " . TABLE_LINKS . " l left join " . TABLE_LINKS_DESCRIPTION . " ld on l.links_id = ld.links_id where ld.language_id = '" . $_SESSION['languages_id'] . "'" . $search . " order by ld.links_title, l.links_url";
    and replace with this line
    Code:
    $links_query_raw = "select l.links_id, l.links_url, l.links_image_url, l.links_date_added, l.links_last_modified, l.links_status, l.links_clicked, ld.links_title, ld.links_description, l.links_contact_name, l.links_contact_email, l.links_reciprocal_url, l.links_status from " . TABLE_LINKS . " l left join " . TABLE_LINKS_DESCRIPTION . " ld on l.links_id = ld.links_id where ld.language_id = '" . $_SESSION['languages_id'] . "'" . $search . " order by l.links_date_added DESC, ld.links_title, l.links_url";
    ##############################___
    Using zencart v.1.3.9e
    Website: http://www.dealbyethan.com
    Email: admin AT dealbyethan DOT com

  2. #1082
    Join Date
    Dec 2006
    Posts
    102
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 release

    Quote Originally Posted by dealbyethan.com View Post
    Hi,

    Thanks for your suggestion. Are you saying that I should work out the sort order of links by displaying the newest pending links first on the admin page? I went to the page you told me to look at. Is this what I am supposed to do? Please advise.

    open admin/links.php

    find this line of code (around line 556)
    Code:
    $links_query_raw = "select l.links_id, l.links_url, l.links_image_url, l.links_date_added, l.links_last_modified, l.links_status, l.links_clicked, ld.links_title, ld.links_description, l.links_contact_name, l.links_contact_email, l.links_reciprocal_url, l.links_status from " . TABLE_LINKS . " l left join " . TABLE_LINKS_DESCRIPTION . " ld on l.links_id = ld.links_id where ld.language_id = '" . $_SESSION['languages_id'] . "'" . $search . " order by ld.links_title, l.links_url";
    and replace with this line
    Code:
    $links_query_raw = "select l.links_id, l.links_url, l.links_image_url, l.links_date_added, l.links_last_modified, l.links_status, l.links_clicked, ld.links_title, ld.links_description, l.links_contact_name, l.links_contact_email, l.links_reciprocal_url, l.links_status from " . TABLE_LINKS . " l left join " . TABLE_LINKS_DESCRIPTION . " ld on l.links_id = ld.links_id where ld.language_id = '" . $_SESSION['languages_id'] . "'" . $search . " order by l.links_date_added DESC, ld.links_title, l.links_url";
    ##############################___
    yes, thats what I did and it works great

  3. #1083
    Join Date
    May 2008
    Posts
    36
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 release

    Hi, I added the links manager to my site, thank you for this add on! I want to take the box off my page though, and just have "View All Links" without "submit link." I would also like to change the "view all links" text to "resources." I cannot figure out how to do this! Can you help?

    Thanks!

    www.theshoppingboutique.com

  4. #1084
    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 abcoombe View Post
    Hi, I added the links manager to my site, thank you for this add on! I want to take the box off my page though, and just have "View All Links" without "submit link." I would also like to change the "view all links" text to "resources." I cannot figure out how to do this! Can you help?

    Thanks!

    www.theshoppingboutique.com
    For part 1 try this fix:
    Attachment 4358
    Unzip the file:

    run this sql patch using the Zen-Cart Sql Patches tool
    (admin -> tools -> install sql patches)
    copy-and-paste the code into the query field and press 'Send'.

    rename the YOUR_TEMPLATE folder to match the name of your custom template

    upload the entire includes folder to your server.

    In admin -> configuration -> links manager
    Links Box - Display Links in Sidebox (set to false)
    Links Box - Display Submit Link (set to false)
    ------
    For part 2:
    open includes/languages/english/extra_definitions/YOUR_TEMPLATE/links_manager_defines.php

    find the following:
    define('BOX_INFORMATION_VIEW_ALL_LINKS', 'View All Links');

    Change the highlighted portion to whatever you need.
    Save the file and upload to your server.
    Last edited by clydejones; 31 Dec 2009 at 02:32 AM.

  5. #1085
    Join Date
    May 2008
    Posts
    36
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 release

    Clyde,

    Thank you so much for your help. It worked perfectly, except the "Resources" link is now way below my other items in my information column. Can I change that?

    www.theshoppingboutique.com

  6. #1086
    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 abcoombe View Post
    Clyde,

    Thank you so much for your help. It worked perfectly, except the "Resources" link is now way below my other items in my information column. Can I change that?

    www.theshoppingboutique.com
    It sits in its own sidebox and you've modified that sidebox so that the heading has been eliminated. (That's why it appears as it does.)

  7. #1087
    Join Date
    May 2008
    Posts
    36
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 release

    Okay, apparently I'm confused about the difference between a sidebox and a link that appears in my information list. Is there a way to alter what I have to make it part of that list, or do I need to be using something different? Sorry I'm being difficult, I'm in a little over my head...

    Thanks!

  8. #1088
    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 abcoombe View Post
    Okay, apparently I'm confused about the difference between a sidebox and a link that appears in my information list. Is there a way to alter what I have to make it part of that list, or do I need to be using something different? Sorry I'm being difficult, I'm in a little over my head...

    Thanks!
    If you want just a link in your information box then you need to do the following:

    open includes/modules/sideboxes/YOUR_TEMPLATE/information.php

    add the following where you wish the link to appear

    $information[] = '<a href="' . zen_href_link(FILENAME_LINKS) . '">' . BOX_INFORMATION_VIEW_ALL_LINKS . '</a>';

    Save the file and upload to your server.

  9. #1089
    Join Date
    May 2008
    Posts
    36
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 release

    Thank you so much Clyde, I appreciate your help. It's amazing to me that you just know where to find everything!

    If you are in the Springs, we are only about 20 minutes north of you! I'm in Castle Rock today. I'm originally from the Springs, so it's nice to see it on here!

  10. #1090
    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 abcoombe View Post
    Thank you so much Clyde, I appreciate your help. It's amazing to me that you just know where to find everything!

    If you are in the Springs, we are only about 20 minutes north of you! I'm in Castle Rock today. I'm originally from the Springs, so it's nice to see it on here!
    Glad you got it sorted.

    Working with Zen Cart and answering questions on the forum will do that.

    There a few coloradians on the forum.

 

 

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