Yes but your call has a double // in it <link href="includes/templates/Kim/pricelist//stylesheet.css" type="text/css" rel="stylesheet">
Sawhorse
Yes but your call has a double // in it <link href="includes/templates/Kim/pricelist//stylesheet.css" type="text/css" rel="stylesheet">
Sawhorse
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>
How did you get the pdf file? Yes, I have a little over 10,000 products. It can be difficult to keep track with price changes and product deletions without the price list.
I used the developers tool kit and could not locate it either. Does anyone know where this would be located? I really need to get to this file.
Thanks, Kim
It is not a pdf file of your Printable Price list, but a jpg of your first page.
I used firebug and made the corrections and I took an image of the results.
Sawhorse