Page 8 of 199 FirstFirst ... 6789101858108 ... LastLast
Results 71 to 80 of 1988
  1. #71
    Join Date
    Jun 2006
    Location
    My family and I live in Brighton, England
    Posts
    982
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 release

    Clyde - Thanks so much for this impressive module, it's a very complete package!

    My Question concerns the links_submit_success page, where I see following:

    Shop Home :: Links :: NAVBAR_TITLE

    For the life of me I can't find where that NAVBAR_TITLE might be so that I could correct it. Any thoughts?

    Thanks! Tim

  2. #72
    Join Date
    Jun 2006
    Location
    My family and I live in Brighton, England
    Posts
    982
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 release

    Two other quick questions:
    In admin/extra/links when I edit a link there is a check-box for: Rating:
    What is that and it's purpose?

    And secondly, in admin/configuration/links manager: To correctly answer this question, for example:
    Display Link Image & Title?
    I must put in a number that is an indicator of my choice, correct? 0 means none, 1 is link only etc. Is that correct?

    thanks again -

  3. #73
    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 MeltDown View Post
    Clyde - Thanks so much for this impressive module, it's a very complete package!

    My Question concerns the links_submit_success page, where I see following:

    Shop Home :: Links :: NAVBAR_TITLE

    For the life of me I can't find where that NAVBAR_TITLE might be so that I could correct it. Any thoughts?

    Thanks! Tim
    go to includes/languages/english/YOUR_TEMPLATE and open links_submit_success.php You'll find the following:

    define('NAVBAR_TITLE_2', 'Success');

    delete the highlighted portion save the file and upload to your server.

    NB: the update version I'm working on will eliminate the need for this page. It will also include a few extras including a modified version of the CAPTCHA contribution.

    Quote Originally Posted by MeltDown View Post
    Two other quick questions:
    In admin/extra/links when I edit a link there is a check-box for: Rating:
    What is that and it's purpose?

    And secondly, in admin/configuration/links manager: To correctly answer this question, for example:
    Display Link Image & Title?
    I must put in a number that is an indicator of my choice, correct? 0 means none, 1 is link only etc. Is that correct?

    thanks again -
    The rating is legacy code from a really old version of links manager and can safely be ignored (just leave it set to 0.) It will be removed in the update.

    The numbering of these three options:

    Display Link Image & Title 1
    Display Link Description 2
    Display Link Click Count 3

    is actually their sort order. Again, this is being addressed in the update.

    Hope this helps.

  4. #74
    Join Date
    Jun 2006
    Location
    My family and I live in Brighton, England
    Posts
    982
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 release

    That took care of it, Clyde

    I'm looking forward to the new version, as well. I realize that it must be on the complicated side trying to get all the bits and pieces to mesh. Thanks for the effort!

    Tim

  5. #75

    help question Re: Link Manager 3.0 release

    Quote Originally Posted by titangen View Post
    Hi,

    Just to inform you that this contrib doesn't work in a multilingual site
    ( I have a site with 4 languages and the categories are showing 4 times on the sidebox) ... doesn't look good

    Do you think that is possible to solve , ??

    Thanks in advance Chris

    [FONT=Times New Roman]I have 3 languages and the same pr blem. I like to show only the English link.[/FONT]
    [FONT=Times New Roman]The customer can at a new link from all languages to the English page. [/FONT]

    [FONT=Times New Roman]Is this possible? [/FONT]

    [FONT=Times New Roman]Thanks for supp rt .[/FONT]
    Listen to the music of the Earth, Dance to the rhythm of Life. -- www.naspex.info -- www.bamboomoon.at --

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

    Default Re: Link Manager 3.0 release

    Is there any way to prevent the links side box from "growing" when you enter a long catagory name?

    I've made up on as an example at my site HERE
    I Think, Therefore I Zen. I Zen, Therefore, I AM!
    Personalized Flowers!
    Flowertown Speaking Roses
    using version 1.5.7-06232020

  7. #77
    Join Date
    Aug 2004
    Location
    Saint Petersburg, Russia
    Posts
    1,786
    Plugin Contributions
    13

    Default Re: Link Manager 3.0 release

    2faristababa
    sideboxes/links.php
    Find (~23 line)
    Code:
    $links_query= ("select lc.link_categories_id, lc.link_categories_sort_order, lcd.link_categories_id, lcd.link_categories_name from " . TABLE_LINK_CATEGORIES . " lc, " . TABLE_LINK_CATEGORIES_DESCRIPTION . " lcd where lc.link_categories_status = '1' and lc.link_categories_id = lcd.link_categories_id order by lc.link_categories_sort_order, lcd.link_categories_name");
    Replace by
    Code:
      $links_query= ("SELECT lc.link_categories_id, lc.link_categories_sort_order, lcd.link_categories_id, lcd.link_categories_name 
                      FROM " . TABLE_LINK_CATEGORIES . " lc, " . TABLE_LINK_CATEGORIES_DESCRIPTION . " lcd 
                      WHERE lc.link_categories_status = '1' 
                        AND lc.link_categories_id = lcd.link_categories_id 
                        AND lcd.language_id = '" . (int)$_SESSION['languages_id'] . "'
                      ORDER BY lc.link_categories_sort_order, lcd.link_categories_name");

  8. #78
    Join Date
    Feb 2006
    Posts
    656
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 release

    Never mind, I figured out that in admin-configuration-links manager you can adjust maximum length of link category name to display from 20 to a smaller number, say, 15. Longer names will truncate, and the sidebox will not expand.
    I Think, Therefore I Zen. I Zen, Therefore, I AM!
    Personalized Flowers!
    Flowertown Speaking Roses
    using version 1.5.7-06232020

  9. #79
    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 a_berezin View Post
    2faristababa
    sideboxes/links.php
    Find (~23 line)
    Code:
    $links_query= ("select lc.link_categories_id, lc.link_categories_sort_order, lcd.link_categories_id, lcd.link_categories_name from " . TABLE_LINK_CATEGORIES . " lc, " . TABLE_LINK_CATEGORIES_DESCRIPTION . " lcd where lc.link_categories_status = '1' and lc.link_categories_id = lcd.link_categories_id order by lc.link_categories_sort_order, lcd.link_categories_name");
    Replace by
    Code:
      $links_query= ("SELECT lc.link_categories_id, lc.link_categories_sort_order, lcd.link_categories_id, lcd.link_categories_name 
                      FROM " . TABLE_LINK_CATEGORIES . " lc, " . TABLE_LINK_CATEGORIES_DESCRIPTION . " lcd 
                      WHERE lc.link_categories_status = '1' 
                        AND lc.link_categories_id = lcd.link_categories_id 
                        AND lcd.language_id = '" . (int)$_SESSION['languages_id'] . "'
                      ORDER BY lc.link_categories_sort_order, lcd.link_categories_name");
    a_berezin,

    Thanks, I've included the change in the update version.

    The only thing left now is to get the "all links display page" working correctly.

  10. #80
    Join Date
    Aug 2004
    Location
    Saint Petersburg, Russia
    Posts
    1,786
    Plugin Contributions
    13

    Default Re: Link Manager 3.0 release

    Quote Originally Posted by clydejones View Post
    I've included the change in the update version.
    May be you include updated install sql?
    Quote Originally Posted by clydejones View Post
    The only thing left now is to get the "all links display page" working correctly.
    What a problem?
    Attached Files Attached Files

 

 
Page 8 of 199 FirstFirst ... 6789101858108 ... LastLast

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