Page 38 of 74 FirstFirst ... 28363738394048 ... LastLast
Results 371 to 380 of 739
  1. #371
    Join Date
    Apr 2008
    Location
    Flint, Michigan
    Posts
    687
    Plugin Contributions
    0

    Default Re: Printable Price list :: support thread

    I had price list working some time ago. I just tried to use it and can not get any products to list.

    Located: http://www.burnerbooks.com//index.php?main=pricelist

    Admin shows:

    Printable Price-list

    Default Profile 2
    Show Profiles true

    Price-list Profile-2

    Enable true
    Group name
    Profile Name A4 Portrait
    Stylesheet a4-portrait
    Use master cats only false
    Main Cats New Page true
    Main Cats New Table true
    No Wrap false
    Max Columns 10
    Max Rows 25
    Printable page height 17cm
    Price true
    Tax Free false
    Specials true
    Specials expiry false
    Model true
    Manufacturer true
    Weight false
    Stock On Hand false
    Notes (A) false
    Notes (B) false
    Show Inactive false
    Sort By products_name
    Asc Desc asc
    All Categories default false
    Category tree main cats only true
    Boxes false
    Debug false
    Images false
    Image height 80
    Image width 100
    Descriptions false
    Truncate descriptions 0
    Extra lines 5
    Logo true
    Headers false
    Footers true
    Show Add to cart button false
    Only Add to cart true
    Button target Cartpage
    Enable

    Any suggestions?

    Thanks, Kim

  2. #372
    Join Date
    Oct 2007
    Location
    Kentucky - USA
    Posts
    428
    Plugin Contributions
    0

    Default Re: Printable Price list :: support thread

    You may want to check your link. I do not think a // is correct after your site. (http://www.burnerbooks.com//index.php?main=pricelist

    You may want to look under the following typical location. http://www.burnerbooks.com/index.php...page=pricelist

    Sawhorse

  3. #373
    Join Date
    Apr 2008
    Location
    Flint, Michigan
    Posts
    687
    Plugin Contributions
    0

    Default Re: Printable Price list :: support thread

    Quote Originally Posted by Sawhorse View Post
    You may want to check your link. I do not think a // is correct after your site. (http://www.burnerbooks.com//index.php?main=pricelist

    You may want to look under the following typical location. http://www.burnerbooks.com/index.php...page=pricelist

    Sawhorse
    I thought the same thing. I tried it both ways and still shows no products or detail.

  4. #374
    Join Date
    Oct 2007
    Location
    Kentucky - USA
    Posts
    428
    Plugin Contributions
    0

    Default Re: Printable Price list :: support thread

    Check your link

    <link href="includes/templates/Kim/pricelist//stylesheet.css" type="text/css" rel="stylesheet">

    I believe it may be incorrect.

    Sawhore

  5. #375
    Join Date
    Apr 2008
    Location
    Flint, Michigan
    Posts
    687
    Plugin Contributions
    0

    Default Re: Printable Price list :: support thread

    Quote Originally Posted by Sawhorse View Post
    Check your link

    <link href="includes/templates/Kim/pricelist//stylesheet.css" type="text/css" rel="stylesheet">

    I believe it may be incorrect.

    Sawhore
    Not sure I am following you. I have includes/templates/kim/pricelist/stylesheet.css file. What am I looking for? replace?

    Thanks, Kim

  6. #376
    Join Date
    Oct 2007
    Location
    Kentucky - USA
    Posts
    428
    Plugin Contributions
    0

    Default Re: Printable Price list :: support thread

    Yes but your call has a double // in it <link href="includes/templates/Kim/pricelist//stylesheet.css" type="text/css" rel="stylesheet">

    Sawhorse

  7. #377
    Join Date
    Apr 2008
    Location
    Flint, Michigan
    Posts
    687
    Plugin Contributions
    0

    Default Re: Printable Price list :: support thread

    Quote Originally Posted by Sawhorse View Post
    Yes but your call has a double // in it <link href="includes/templates/Kim/pricelist//stylesheet.css" type="text/css" rel="stylesheet">

    Sawhorse
    How do I take out the //?

  8. #378
    Join Date
    Oct 2007
    Location
    Kentucky - USA
    Posts
    428
    Plugin Contributions
    0

    Default Re: Printable Price list :: support thread

    Just a guess.

    includes/templates/Kim/pricelist/html_header.php

    Sawhorse

  9. #379
    Join Date
    Apr 2008
    Location
    Flint, Michigan
    Posts
    687
    Plugin Contributions
    0

    Default Re: Printable Price list :: support thread

    Quote Originally Posted by Sawhorse View Post
    Just a guess.

    includes/templates/Kim/pricelist/html_header.php

    Sawhorse
    I am not very good at looking for and changing code. Here is my html_header.php. I did not see pricelist//stylesheet.

    require(DIR_WS_MODULES . 'meta_tags.php');

    ?><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET;
    ?>" >
    <title><?php echo META_TAG_TITLE;
    ?></title>
    <meta name="keywords" content="<?php echo META_TAG_KEYWORDS;
    ?>" >
    <meta name="description" content="<?php echo META_TAG_DESCRIPTION;
    ?>" >
    <base href="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER . DIR_WS_HTTPS_CATALOG : HTTP_SERVER . DIR_WS_CATALOG);
    ?>" >
    <?php
    $directory_array = $template->get_template_part($template->get_template_dir('.css', DIR_WS_TEMPLATE, $current_page_base, 'css'), '/^style/', '.css');

    while (list ($key, $value) = each($directory_array)) {
    echo '<link rel="stylesheet" type="text/css" href="' . $template->get_template_dir('.css', DIR_WS_TEMPLATE, $current_page_base, 'css') . '/' . $value . '" >' . "\n";
    }
    /* load pricelist printing stylesheet */
    if (!(stristr(PL_PRINTING_STYLESHEET, '-x'))) {
    // -x means the profile (admin) says to load a stylesheet named after the profile itself
    echo '<link rel="stylesheet" type="text/css" href="' . $template->get_template_dir('.css', DIR_WS_TEMPLATE, $current_page_base, 'css') . '/profile-' . PL_PRINTING_STYLESHEET . '.css' . '" >' . "\n";
    } else {
    echo '<link rel="stylesheet" type="text/css" href="' . $template->get_template_dir('.css', DIR_WS_TEMPLATE, $current_page_base, 'css') . '/profile-' . PL_PROFILE . '.css' . '" >' . "\n";
    }

    $directory_array = $template->get_template_part($template->get_template_dir('.js', DIR_WS_TEMPLATE, $current_page_base, 'jscript'), '/^jscript_/', '.js');

    while (list ($key, $value) = each($directory_array)) {
    echo '<script language="javascript" src="' . $template->get_template_dir('.js', DIR_WS_TEMPLATE, $current_page_base, 'jscript') . '/' . $value . '"></script>';
    }

    $directory_array = $template->get_template_part($page_directory, '/^jscript_/');

    while (list ($key, $value) = each($directory_array)) {
    require($page_directory . '/' . $value);
    }

    ?>
    <style type="text/css">
    <!--
    <?php
    // here doc
    if (PL_NOWRAP == 'true') {
    echo <<<END
    td.prdPL div, td.manPL div, td.modPL div, td.wgtPL div, td.ntsPL div
    {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    }
    END;
    }
    if(defined('PL_PAGE_HEIGHT') && (trim(PL_PAGE_HEIGHT) != '')){
    $pl_page_height = trim(PL_PAGE_HEIGHT);
    echo <<<PAGE_HEIGHT
    @media print{
    .pagePL, .pageOnePL{
    height: {$pl_page_height};
    }
    }
    PAGE_HEIGHT;
    }

    ?>

    -->
    </style>
    </head>

  10. #380
    Join Date
    Oct 2007
    Location
    Kentucky - USA
    Posts
    428
    Plugin Contributions
    0

    Default Re: Printable Price list :: support thread

    I did not see it. Maybe someone else knows the location. I do know that when you fix this you do get your priceslist.

    Name:  KJV Bibles.jpg
Views: 311
Size:  39.2 KB

    Sawhorse

    PS. you seem to have a great deal of items!!

 

 
Page 38 of 74 FirstFirst ... 28363738394048 ... 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