Results 1 to 10 of 1988

Hybrid View

  1. #1
    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 Doodlebuckets View Post
    Clyde, let me know what you think of it. It's in its infancy but it works nicely.
    Amy
    Will do!

  2. #2
    Join Date
    Mar 2007
    Posts
    106
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 release

    Hello
    on the Links Submission page I don't have the option to upload a banner image (as saw on Clyde's Test Site).

    I've been throught most of the pages of this thread but haven't found the solution.

    All the rest looks like is working fine.
    Thanks for any help

    marcap

    http://www.italianleatherbags.it/ind...41d9d5045114e1

  3. #3
    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 marcap View Post
    Hello
    on the Links Submission page I don't have the option to upload a banner image (as saw on Clyde's Test Site).

    I've been throught most of the pages of this thread but haven't found the solution.

    All the rest looks like is working fine.
    Thanks for any help

    marcap

    http://www.italianleatherbags.it/ind...41d9d5045114e1
    Thats still being worked on and will be included in the next upgrade.

  4. #4
    Join Date
    Mar 2007
    Posts
    106
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 release

    Quote Originally Posted by clydejones View Post
    Thats still being worked on and will be included in the next upgrade.

    Ok thank you. It's a very usefull option.

  5. #5
    Join Date
    Mar 2007
    Posts
    86
    Plugin Contributions
    0

    help question Re: Link Manager 3.0 release

    Hi Clyde,

    I have a small problem and I don't seem to be able to fix it. My popup help window is useing the background image even though I have changed the tpl_main_page.php file to:
    ?>
    <body id="popuplinkshelp">
    <div>
    <p><a href="javascript:window.close();"><?php echo TEXT_CURRENT_CLOSE_WINDOW; ?></a></p>
    </div>
    </body>

    I have also changed my css file to:
    }
    #popupShippingEstimator, #popupLinksHelp, #popupSearchHelp, #popupAdditionalImage, #popupImage, #popupCVVHelp, #popupCouponHelp, #popupAtrribsQuantityPricesHelp, #infoShoppingCart {
    background-color : #eee8aa;
    background-image: none;
    }

    I have no idea what is happening as my other popup windowa are working fine and they are useing the background colour as per above of #eee8aa. Can you throw any light on what may be happening. Thanks

    Rottie

  6. #6
    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 rottiejoe View Post
    Hi Clyde,

    I have a small problem and I don't seem to be able to fix it. My popup help window is useing the background image even though I have changed the tpl_main_page.php file to:
    ?>
    <body id="popuplinkshelp">
    <div>
    <p><a href="javascript:window.close();"><?php echo TEXT_CURRENT_CLOSE_WINDOW; ?></a></p>
    </div>
    </body>

    I have also changed my css file to:
    }
    #popupShippingEstimator, #popupLinksHelp, #popupSearchHelp, #popupAdditionalImage, #popupImage, #popupCVVHelp, #popupCouponHelp, #popupAtrribsQuantityPricesHelp, #infoShoppingCart {
    background-color : #eee8aa;
    background-image: none;
    }

    I have no idea what is happening as my other popup windowa are working fine and they are useing the background colour as per above of #eee8aa. Can you throw any light on what may be happening. Thanks

    Rottie
    this may help:

    open the tpl_main_page.php file and find:

    PHP Code:
    <div class="centerColumn" id="ezPageDefault"
    and change to:

    PHP Code:
    <div class="centerColumn" id="popupLinksHelp"

  7. #7
    Join Date
    Mar 2007
    Posts
    86
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 release

    Thanks Clyde, it now works I realised what I did wrong.


    Rottie

  8. #8
    Join Date
    Jan 2008
    Location
    Warner Robins, GA
    Posts
    32
    Plugin Contributions
    1

    Default Links Manager v3.4.1 - Category Sort Order

    On the Admin->Extras->Links Categories page the Sort Order works properly and the categories are displayed in sort order. However, when viewing the categories list from the catalog they are listed in alphabetical order.

    I have looked in the configurations but have not been able to locate any options for this display.

  9. #9
    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 Asgoroth View Post
    On the Admin->Extras->Links Categories page the Sort Order works properly and the categories are displayed in sort order. However, when viewing the categories list from the catalog they are listed in alphabetical order.

    I have looked in the configurations but have not been able to locate any options for this display.
    Open includes/templates/YOUR_TEMPLATE/templates/tpl_links_default.php

    find the following line of code (around line 19):
    PHP Code:
    $categories_query $db->Execute("select lc.link_categories_id, lcd.link_categories_name, lcd.link_categories_description, lc.link_categories_image from " TABLE_LINK_CATEGORIES " lc, " TABLE_LINK_CATEGORIES_DESCRIPTION " lcd where lc.link_categories_id = lcd.link_categories_id and lc.link_categories_status = '1' and lcd.language_id = '" . (int)$_SESSION['languages_id'] . "' order by lcd.link_categories_name"); 
    and replace it with this line:

    PHP Code:
    $categories_query $db->Execute("select lc.link_categories_id, lcd.link_categories_name, lcd.link_categories_description, lc.link_categories_image from " TABLE_LINK_CATEGORIES " lc, " TABLE_LINK_CATEGORIES_DESCRIPTION " lcd where lc.link_categories_id = lcd.link_categories_id and lc.link_categories_status = '1' and lcd.language_id = '" . (int)$_SESSION['languages_id'] . "' order by lcd.link_categories_sort_order"); 

  10. #10
    Join Date
    Dec 2006
    Posts
    102
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 release

    Quote Originally Posted by clydejones View Post
    Open includes/templates/YOUR_TEMPLATE/templates/tpl_links_default.php

    find the following line of code (around line 19):
    PHP Code:
    $categories_query $db->Execute("select lc.link_categories_id, lcd.link_categories_name, lcd.link_categories_description, lc.link_categories_image from " TABLE_LINK_CATEGORIES " lc, " TABLE_LINK_CATEGORIES_DESCRIPTION " lcd where lc.link_categories_id = lcd.link_categories_id and lc.link_categories_status = '1' and lcd.language_id = '" . (int)$_SESSION['languages_id'] . "' order by lcd.link_categories_name"); 
    and replace it with this line:

    PHP Code:
    $categories_query $db->Execute("select lc.link_categories_id, lcd.link_categories_name, lcd.link_categories_description, lc.link_categories_image from " TABLE_LINK_CATEGORIES " lc, " TABLE_LINK_CATEGORIES_DESCRIPTION " lcd where lc.link_categories_id = lcd.link_categories_id and lc.link_categories_status = '1' and lcd.language_id = '" . (int)$_SESSION['languages_id'] . "' order by lcd.link_categories_sort_order"); 
    I tried this fix on 2 sites
    it fixes the sort order for the online catalog, but no in the admin area

    both site also get this error when you click on "view all link"
    1054 Unknown column 'lcd.link_categories_sort_order' in 'order clause'
    in:
    [select lc.link_categories_id, lcd.link_categories_name, lcd.link_categories_description, lc.link_categories_image from link_categories lc, link_categories_description lcd where lc.link_categories_id = lcd.link_categories_id and lc.link_categories_status = '1' and lcd.language_id = '1' order by lcd.link_categories_sort_order]

 

 

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