Quick question.
I have some other sections I would like to create as new global tabs. They are sections that are based on other modules, similar to the Cross-Sell or Reviews sections.
Are there any tutorials like that???
Thanks
Printable View
Quick question.
I have some other sections I would like to create as new global tabs. They are sections that are based on other modules, similar to the Cross-Sell or Reviews sections.
Are there any tutorials like that???
Thanks
Hi, for some reason found this mod on my instation i was wondering how i could uninstall this mod, would anybody here know the SQL to uninstall this mod, Thanks for your help :bigups:
Hi, I just installed this mod and guess what happened? Take a look at this site: http://develop.centuriongames.se...
This feels weird, I don't know what's wrong..
I have a quick question I hope someone can help me with.
I am using Tabbed Products Pro with the Cross Sell mod.
In the Products Description tab open the page displays perfectly.
With my custom tab that displays after the Product Description the page displays perfect.
With the Details tab there is no blank line (white space) between the horizontal line below the Details tab and the writing.
The same is true for the Cross Sell images.
Can someone please tell me how to put a blank line in these areas?
DAve
Hi,
Does anyone have a link to show this mod in action? It sounds like what I need, but the only links I can find on here that work are the ones which show undesirable effects of the mod!
Thanks!
You may take a look here at my site
I know in the past I've seen posts in here somewhere about adding extra/custom tabs, but I can't seem to locate them.
I'd like to have a tab of additional info called "Attribute Details" that i can use to give a detailed description of attributes listed for a specific product.
Ideally I'd like to keep it separate from the Description entry by having it served up in a separate tab either from a html doc or php doc.
Can someone point me to documentation for this?
Thanks!
Hi,
I have now spent a week reading, comparing and merging and besides the fact that the wife and kids want to kill me I have made no headway. :frusty:
Zen Cart V1.3.9h
TPP V1.0.7
Everything seems OK until I enable Minify. After this my CSS files are not loaded but this ONLY happens when viewing a product. On other screens the CSS is loaded.
If I replace /includes/templates/MY_TEMPLATE/common/html_header.php with the default version my CSS loads but I obviously don't have tabs.
My version is as follows:Can anyone see any problems? There are no errors produced by the way in the cache directory.PHP Code:
<?php
/**
* Common Template
*
* outputs the html header. i,e, everything that comes before the \</head\> tag <br />
*
* @package templateSystem
* @copyright Copyright 2003-2010 Zen Cart Development Team
* @copyright Portions Copyright 2003 osCommerce
* @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
* @version $Id: html_header.php 15761 2010-03-31 19:31:27Z drbyte $
*/
/**
* load the module for generating page meta-tags
*/
require(DIR_WS_MODULES . zen_get_module_directory('meta_tags.php'));
/**
* output main page HEAD tag and related headers/meta-tags, etc
*/
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" <?php echo HTML_PARAMS; ?>>
<head>
<title><?php echo META_TAG_TITLE; ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>" />
<meta name="keywords" content="<?php echo META_TAG_KEYWORDS; ?>" />
<meta name="description" content="<?php echo META_TAG_DESCRIPTION; ?>" />
<meta http-equiv="imagetoolbar" content="no" />
<meta name="author" content="The Zen Cart™ Team and others" />
<meta name="generator" content="shopping cart program by Zen Cart™, http://www.zen-cart.com eCommerce" />
<?php if (defined('ROBOTS_PAGES_TO_SKIP') && in_array($current_page_base,explode(",",constant('ROBOTS_PAGES_TO_SKIP'))) || $current_page_base=='down_for_maintenance' || $robotsNoIndex === true) { ?>
<meta name="robots" content="noindex, nofollow" />
<?php } ?>
<?php if (defined('FAVICON')) { ?>
<link rel="icon" href="<?php echo FAVICON; ?>" type="image/x-icon" />
<link rel="shortcut icon" href="<?php echo FAVICON; ?>" type="image/x-icon" />
<?php } //endif FAVICON ?>
<base href="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER . DIR_WS_HTTPS_CATALOG : HTTP_SERVER . DIR_WS_CATALOG ); ?>" />
<?php if (isset($canonicalLink) && $canonicalLink != '') { ?>
<link rel="canonical" href="<?php echo $canonicalLink; ?>" />
<?php } ?>
<?php
$jscript_files_to_load = $css_files_to_load = array();
/**
* load all template-specific stylesheets, named like "style*.css", alphabetically
*/
$directory_array = $template->get_template_part($template->get_template_dir('.css',DIR_WS_TEMPLATE, $current_page_base,'css'), '/^style/', '.css');
$load_order = -300;
while(list ($key, $value) = each($directory_array)) {
$css_files_to_load[$value] = $load_order++;
}
/**
* load stylesheets on a per-page/per-language/per-product/per-manufacturer/per-category basis. Concept by Juxi Zoza.
*/
$manufacturers_id = (isset($_GET['manufacturers_id'])) ? $_GET['manufacturers_id'] : '';
$tmp_products_id = (isset($_GET['products_id'])) ? (int)$_GET['products_id'] : '';
$tmp_pagename = ($this_is_home_page) ? 'index_home' : $current_page_base;
if ($current_page_base == 'page' && isset($ezpage_id)) $tmp_pagename = $current_page_base . (int)$ezpage_id;
$sheets_array = array('/' . $_SESSION['language'] . '_stylesheet',
'/' . $tmp_pagename,
'/' . $_SESSION['language'] . '_' . $tmp_pagename,
'/c_' . $cPath,
'/' . $_SESSION['language'] . '_c_' . $cPath,
'/m_' . $manufacturers_id,
'/' . $_SESSION['language'] . '_m_' . (int)$manufacturers_id,
'/p_' . $tmp_products_id,
'/' . $_SESSION['language'] . '_p_' . $tmp_products_id
);
$load_order = -200;
while(list ($key, $value) = each($sheets_array)) {
//echo "<!--looking for: $value-->\n";
$perpagefile = $template->get_template_dir('.css', DIR_WS_TEMPLATE, $current_page_base, 'css') . $value . '.css';
if (file_exists($perpagefile)) $css_files_to_load[trim($value, '/').'.css'] = $load_order++;
}
/**
* load printer-friendly stylesheets -- named like "print*.css", alphabetically
*/
$directory_array = $template->get_template_part($template->get_template_dir('.css',DIR_WS_TEMPLATE, $current_page_base,'css'), '/^print/', '.css');
sort($directory_array);
while(list ($key, $value) = each($directory_array)) {
echo '<link rel="stylesheet" type="text/css" media="print" href="' . $template->get_template_dir('.css',DIR_WS_TEMPLATE, $current_page_base,'css') . '/' . $value . '" />'."\n";
}
if (file_exists(DIR_WS_CLASSES . 'browser.php')) {
include(DIR_WS_CLASSES . 'browser.php');
$browser = new _Browser();
$browser_name = preg_replace("/[^a-zA-Z0-9s]/", "-", strtolower($browser->getBrowser()));
$browser_version = floor($browser->getVersion());
// this is to make it compatible with the other ie css hack
if ($browser->getBrowser() == $browser->BROWSER_IE) {
$browser_name = 'ie';
}
// get the browser specific files
$directory_array = $template->get_template_part($template->get_template_dir('.css',DIR_WS_TEMPLATE, $current_page_base,'css'), "/^{$browser_name}-/", '.css');
$js_directory_array = $template->get_template_part($template->get_template_dir('.js',DIR_WS_TEMPLATE, $current_page_base,'js'), "/^{$browser_name}-/", '.js');
$load_order = -100;
while(list ($key, $value) = each($directory_array )) {
$css_files_to_load[$value] = $load_order++;
}
$load_order = -500;
while(list ($key, $value) = each($js_directory_array )) {
$jscript_files_to_load[$value] = $load_order++;
}
// get the version specific files
$directory_array = $template->get_template_part($template->get_template_dir('.css',DIR_WS_TEMPLATE, $current_page_base,'css'), "/^{$browser_name}{$browser_version}-/", '.css');
$js_directory_array = $template->get_template_part($template->get_template_dir('.js',DIR_WS_TEMPLATE, $current_page_base,'js'), "/^{$browser_name}{$browser_version}-/", '.js');
$load_order = -100;
while(list ($key, $value) = each($directory_array )) {
$css_files_to_load[$value] = $load_order++;
}
$load_order = -500;
while(list ($key, $value) = each($js_directory_array )) {
$jscript_files_to_load[$value] = $load_order++;
}
}
/**
* load all site-wide jscript_*.js files from includes/templates/YOURTEMPLATE/jscript, alphabetically
*/
$directory_array = $template->get_template_part($template->get_template_dir('.js',DIR_WS_TEMPLATE, $current_page_base,'jscript'), '/^jscript_/', '.js');
$load_order = -400;
while(list ($key, $value) = each($directory_array)) {
$jscript_files_to_load[$value] = $load_order++;
}
/**
* load all page-specific jscript_*.js files from includes/modules/pages/PAGENAME, alphabetically
*/
$directory_array = $template->get_template_part($page_directory, '/^jscript_/', '.js');
$load_order = -300;
while(list ($key, $value) = each($directory_array)) {
$jscript_files_to_load["$page_directory/$value"] = $load_order++;
}
/**
* load all site-wide jscript_*.php files from includes/templates/YOURTEMPLATE/jscript, alphabetically
*/
$directory_array = $template->get_template_part($template->get_template_dir('.php',DIR_WS_TEMPLATE, $current_page_base,'jscript'), '/^jscript_/', '.php');
$load_order = -200;
while(list ($key, $value) = each($directory_array)) {
/**
* include content from all site-wide jscript_*.php files from includes/templates/YOURTEMPLATE/jscript, alphabetically.
* These .PHP files can be manipulated by PHP when they're called, and are copied in-full to the browser page
*/
$jscript_files_to_load[$value] = $load_order++;
}
/**
* include content from all page-specific jscript_*.php files from includes/modules/pages/PAGENAME, alphabetically.
*/
$directory_array = $template->get_template_part($page_directory, '/^jscript_/');
$load_order = -100;
while(list ($key, $value) = each($directory_array)) {
/**
* include content from all page-specific jscript_*.php files from includes/modules/pages/PAGENAME, alphabetically.
* These .PHP files can be manipulated by PHP when they're called, and are copied in-full to the browser page
*/
$jscript_files_to_load["$page_directory/$value"] = $load_order++;
}
$files = loadCssJsFiles($css_files_to_load, $jscript_files_to_load);
foreach($files['css'] as $file)
if($file['include']) include($file['string']);
else echo $file['string'];
foreach($files['js'] as $file)
if($file['include']) include($file['string']);
else echo $file['string'];
//DEBUG: echo '<!-- I SEE cat: ' . $current_category_id . ' || vs cpath: ' . $cPath . ' || page: ' . $current_page . ' || template: ' . $current_template . ' || main = ' . ($this_is_home_page ? 'YES' : 'NO') . ' -->';
?>
<!--bof Simple Google Analytics -->
<?php
if (GOOGLE_ANALYTICS_TRACKING_TYPE == "Asynchronous") {
require($template->get_template_dir('.php',DIR_WS_TEMPLATE, $current_page_base,'google_analytics') . '/google_analytics.php');
}
?>
<!--eof Simple Google Analytics -->
</head>
<?php // NOTE: Blank line following is intended: ?>
Hopefully I can regain my sanity.
Kind regards,
Brent