Page 10 of 47 FirstFirst ... 8910111220 ... LastLast
Results 91 to 100 of 461
  1. #91
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,354
    Plugin Contributions
    94

    Default Re: FEEDBACK ON BETA of v1.5.5

    Quote Originally Posted by charmedbytina2 View Post
    Just noticed this: In admin - tools - developer tools.

    I did a search and the results returned look a little wonky. See image attached.

    Attachment 15887
    Yes, that's another side-effect of the change to use either <pre> or <code> to format the results, as I'd mentioned here.

  2. #92
    Join Date
    Mar 2007
    Location
    AZ
    Posts
    1,911
    Plugin Contributions
    2

    Default Re: FEEDBACK ON BETA of v1.5.5

    Quote Originally Posted by lat9 View Post
    Yes, that's another side-effect of the change to use either <pre> or <code> to format the results, as I'd mentioned here.
    Derh! Maybe it's too early for "eggnog"? I guess I should have looked at this thread a little closer - apologies!

  3. #93
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,354
    Plugin Contributions
    94

    Default Re: FEEDBACK ON BETA of v1.5.5

    Quote Originally Posted by charmedbytina2 View Post
    Derh! Maybe it's too early for "eggnog"? I guess I should have looked at this thread a little closer - apologies!
    It's never too early for eggnog! Your posting included the jagged output display (which I was too lazy to include), so it's all good.

  4. #94
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,354
    Plugin Contributions
    94

    Default Re: FEEDBACK ON BETA of v1.5.5

    The file /admin/customers.php has been changed from the ZC1.5.4 base, but the header comments still reflect last-changed in v1.5.4.

  5. #95
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,354
    Plugin Contributions
    94

    Default Re: FEEDBACK ON BETA of v1.5.5

    Quote Originally Posted by lat9 View Post
    Admin, Tools->Developers Tool Kit. It looks like either the CSS or layout was changed so that a mono-type font is now used for the display:
    Attachment 15872
    It's quite ugly (IMO) now and very difficult to read. Can this be changed back?

    P.S. I do like the new highlighting of the searched-for term!
    Quote Originally Posted by charmedbytina2 View Post
    Just noticed this: In admin - tools - developer tools.

    I did a search and the results returned look a little wonky. See image attached.

    Attachment 15887
    FWIW, I changed the file /admin/includes/developers_tool_kit.css, removing the lines highlighted to restore the display to a non-monospaced font:
    Code:
    /*
     * @package Admin 
     * @copyright Copyright 2003-2015 Zen Cart Development Team
     * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
     * @version $Id: Author: DrByte  Modified in v1.6.0 $
     */
    
    .dtk-highlite {font-weight: bold; color: rgb(255, 10, 5);}
    .dtk-foundline, .dtk-foundline-multi {font-family: courier;}
    .dtk-foundline-multi {background-color: rgba(4, 211, 216, 0.12);}
    .dtk-contextline {font-family: courier;}
    .dtk-linenum {font-family: courier;}

  6. #96
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: FEEDBACK ON BETA of v1.5.5

    Code:
    /*
     * @package Admin 
     * @copyright Copyright 2003-2015 Zen Cart Development Team
     * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
     * @version $Id: Author: DrByte  Modified in v1.6.0 $
     */
    
    .dtk-highlite {font-weight: bold; color: rgb(255, 10, 5);}
    .dtk-foundline, .dtk-foundline-multi {font-family: courier;}
    .dtk-foundline-multi {background-color: rgba(4, 211, 216, 0.12);}
    .dtk-contextline {font-family: courier;}
    .dtk-linenum {font-family: courier;}
    You could just change those to Verdanda, sans-serif to cover 90% of the issue ...
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today: v1.5.5]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  7. #97
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,354
    Plugin Contributions
    94

    Default Re: FEEDBACK ON BETA of v1.5.5

    That's, in essence, what the font falls back to with those lines removed!

  8. #98
    Join Date
    Nov 2008
    Posts
    51
    Plugin Contributions
    0

    Default Re: FEEDBACK ON BETA of v1.5.5

    is there any additional documentation on how to install and/or setup the responsive design stuff?

  9. #99
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,354
    Plugin Contributions
    94

    Default Re: FEEDBACK ON BETA of v1.5.5

    What are you trying to setup?

  10. #100
    Join Date
    Jul 2012
    Posts
    16,798
    Plugin Contributions
    17

    Default Re: FEEDBACK ON BETA of v1.5.5

    Changes made to sql statements in includes/functions/functions_lookups did not use $db->bindVars(

    Code:
    function zen_has_product_attributes_downloads_status($products_id) {
      if (!defined('DOWNLOAD_ENABLED') || DOWNLOAD_ENABLED != 'true') {
        return false;
      }
    
      $query = "select pad.products_attributes_id
                  from " . TABLE_PRODUCTS_ATTRIBUTES . " pa
                  inner join " . TABLE_PRODUCTS_ATTRIBUTES_DOWNLOAD . " pad
                  on pad.products_attributes_id = pa.products_attributes_id
                  where pa.products_id = " . (int) $products_id;
    
      global $db;
      return ($db->Execute($query)->RecordCount() > 0);
    }
    Could/should be:

    Code:
    function zen_has_product_attributes_downloads_status($products_id) {
      if (!defined('DOWNLOAD_ENABLED') || DOWNLOAD_ENABLED != 'true') {
        return false;
      }
    
      $query = "select pad.products_attributes_id
                  from " . TABLE_PRODUCTS_ATTRIBUTES . " pa
                  inner join " . TABLE_PRODUCTS_ATTRIBUTES_DOWNLOAD . " pad
                  on pad.products_attributes_id = pa.products_attributes_id
                  where pa.products_id = :products_id:";
    
      global $db;
      $query = $db->bindvars($query, ':products_id:', $products_id, 'integer');
      return ($db->Execute($query)->RecordCount() > 0);
    }
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

 

 
Page 10 of 47 FirstFirst ... 8910111220 ... LastLast

Similar Threads

  1. v155 BETA feedback for Responsive-Classic in v155-beta
    By picaflor-azul in forum Addon Templates
    Replies: 51
    Last Post: 5 Mar 2016, 09:14 PM
  2. Community feedback invited for v155-beta [now closed]
    By DrByte in forum Zen Cart Release Announcements
    Replies: 1
    Last Post: 11 Feb 2016, 01:38 AM
  3. v1.3.9 (Beta now closed. See official release)
    By DrByte in forum Zen Cart Release Announcements
    Replies: 1
    Last Post: 19 Apr 2010, 05:03 PM
  4. Closed Catagory Tree?
    By Camarilladee in forum Basic Configuration
    Replies: 0
    Last Post: 15 Jul 2006, 04:24 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