Page 62 of 75 FirstFirst ... 1252606162636472 ... LastLast
Results 611 to 620 of 741
  1. #611
    Join Date
    Nov 2007
    Location
    Sunny Coast, Australia
    Posts
    3,378
    Plugin Contributions
    9

    Default Re: Printable Price list :: support thread

    Quote Originally Posted by lat9 View Post
    This request has been noted in the plugin's GitHub repository: https://github.com/lat9/printable_price_list/issues/9

    Thank you!

  2. #612
    Join Date
    Mar 2014
    Location
    St. Louis, MO
    Posts
    25
    Plugin Contributions
    0

    Default Re: Printable Price list :: support thread

    I'd love to give this plugin a try. It would be great for our storefront as well. Does it support attributes yet? That's the only thing stopping me

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

    Default Re: Printable Price list :: support thread

    The plugin's current "support" of attributes consists of recognizing that products have attributes and displaying a "More Info..." instead of a buy-now/add-to-cart button.

    What functionality do you expect when you ask "Does it support attributes yet?"?

  4. #614
    Join Date
    Mar 2014
    Location
    St. Louis, MO
    Posts
    25
    Plugin Contributions
    0

    Default Re: Printable Price list :: support thread

    I'm just wondering if it displays the prices of different things.

    On our site we have extracts that come in 1 oz 2 oz 4 oz 8 oz 16 oz 32 oz 1/2 gal 1 gal. If I were to use this plugin would it show the prices for each or just show a "more info"?

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

    Default Re: Printable Price list :: support thread

    Quote Originally Posted by CHerbalist View Post
    I'm just wondering if it displays the prices of different things.

    On our site we have extracts that come in 1 oz 2 oz 4 oz 8 oz 16 oz 32 oz 1/2 gal 1 gal. If I were to use this plugin would it show the prices for each or just show a "more info"?
    The plugin will show the "starting at" price and a "more info" link.

  6. #616
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,410
    Plugin Contributions
    94

    Default Re: Printable Price list :: support thread

    I've reviewed this plugin and, as it has no core- or template-overwrites, it's compatible with Zen Cart 1.5.5.

  7. #617
    Join Date
    Aug 2009
    Location
    UK
    Posts
    71
    Plugin Contributions
    0

    Default Re: Printable Price list :: support thread

    this module seem good but when you ask for just no tax to be in the listing then the prices come up as zero!!! http://www.saving-light-bulbs.co.uk/...list&profile=3
    If you ask for net and with tax then you get both columns with the net figure!!!
    Any idea on how to fix?

  8. #618
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,410
    Plugin Contributions
    94

    Default Re: Printable Price list :: support thread

    I've recorded this as an issue on the plugin's GitHub repository (https://github.com/lat9/printable_price_list/issues/10).

    The issue is that the Price (ex) appears to be tied to the Price (inc), so that if the latter is not displayed as part of the pricelist the former is not calculated.

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

    Default Re: Printable Price list :: support thread

    I've submitted v2.0.2 to the Plugins (https://www.zen-cart.com/downloads.php?do=file&id=173) for review to correct the issue reported by @ptowers49.

    Besides updating the plugin's version number, the pertinent change to correct the problem requires an edit of /includes/modules/pages/pricelist/header_php.php (around line 52), adding the bit in red:
    Code:
        $profile_settings = array (
          array ('PL_GROUP_NAME', 'group_name', 'char'),
          array ('PL_PROFILE_NAME', 'profile_name', 'char'),
          array ('PL_USE_MASTER_CATS_ONLY', 'master_cats_only', 'bool'),
          array ('PL_SHOW_BOXES', 'show_boxes', 'bool'),
          array ('PL_CATEGORY_TREE_MAIN_CATS_ONLY', 'main_cats_only', 'bool'),
          array ('PL_MAINCATS_NEW_PAGE', 'maincats_new_page', 'bool'),
          array ('PL_NOWRAP', 'nowrap', 'bool'),
          array ('PL_SHOW_MODEL', 'show_model', 'bool-col', 'p.products_model'),
          array ('PL_SHOW_MANUFACTURER', 'show_manufacturer', 'bool-col', 'p.manufacturers_id'),
          array ('PL_SHOW_WEIGHT', 'show_weight', 'bool-col', 'p.products_weight'),
          array ('PL_SHOW_SOH', 'show_stock', 'bool-col', 'p.products_quantity'),
          array ('PL_SHOW_NOTES_A', 'show_notes_a', 'bool-col'),
          array ('PL_SHOW_NOTES_B', 'show_notes_b', 'bool-col'),
          array ('PL_SHOW_PRICE', 'show_price', 'bool-col', 'p.products_price'),
          array ('PL_SHOW_TAX_FREE', 'show_taxfree', 'bool-col', 'p.products_price'),
          array ('PL_SHOW_SPECIAL_PRICE', 'show_special_price', 'bool'),
          array ('PL_SHOW_SPECIAL_DATE', 'show_special_date', 'bool'),
          array ('PL_SHOW_ADDTOCART_BUTTON', 'show_cart_button', 'bool-col'),
          array ('PL_ADDTOCART_TARGET', 'add_cart_target', 'char'),
          array ('PL_SHOW_IMAGE', 'show_image', 'bool', 'p.products_image'),
          array ('PL_IMAGE_PRODUCT_HEIGHT', 'image_height', 'int'),
          array ('PL_IMAGE_PRODUCT_WIDTH', 'image_width', 'int'),
          array ('PL_SHOW_DESCRIPTION', 'show_description', 'bool'),
          array ('PL_TRUNCATE_DESCRIPTION', 'truncate_desc', 'int'),
          array ('PL_SHOW_INACTIVE', 'show_inactive', 'bool'),
          array ('PL_SORT_PRODUCTS_BY', 'sort_by', 'char'),
          array ('PL_SORT_ASC_DESC', 'sort_dir', 'char'),
          array ('PL_DEBUG', 'debug', 'bool'),
          array ('PL_HEADER_LOGO', 'show_logo', 'bool'),
          array ('PL_SHOW_PRICELIST_PAGE_HEADERS', 'show_headers', 'bool'),
          array ('PL_SHOW_PRICELIST_PAGE_FOOTERS', 'show_footers', 'bool'),
    
        
        );
    The plugin's zip-file is also available from its github repository (https://github.com/lat9/printable_pr...ses/tag/v2.0.2).

  10. #620
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,410
    Plugin Contributions
    94

    Default Re: Printable Price list :: support thread

    v2.0.2 is now available for download from the Zen Cart Plugins.

 

 
Page 62 of 75 FirstFirst ... 1252606162636472 ... LastLast

Similar Threads

  1. Printable Price List by Paulm
    By helshop in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 25 Jan 2007, 12:27 PM
  2. printable price list
    By sparxs in forum All Other Contributions/Addons
    Replies: 26
    Last Post: 1 Nov 2006, 03:18 PM
  3. printable price list
    By Alik in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 11 Sep 2006, 03:35 PM

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