Hi Stevesh,
I've created one page called E-Juice using EZ-pages. The page ID is 5.
While this page now shows up under the heading "important links" (I don't want it there). I want it under the heading Tips and Tricks.
I can't get it to show up under my Tips and Tricks heading???
In my includes/languages/English/extra_definitions/blank_sidebox_defines.php. I have the following:
<?php
/**
* blank sidebox definitions - text for inclusion in a new blank sidebox
*
* @package templateSystem
* @copyright 2007 Kuroi Web Design
* @copyright Portions Copyright 2003-2007 Zen Cart Development Team
* @license <http://www.zen-cart.com/license/2_0.txt> GNU Public License V2.0
* @version $Id: blank_sidebox.php 2007-05-26 kuroi $
*/
define('BOX_HEADING_BLANK_SIDEBOX', 'Tips_and_Tricks');
define('TEXT_Tips and Tricks_SIDEBOX', '<a href="http://www.lovetovape.com.au/index.php?main_page=page&id=5">E-Juice</a>');
?>
In my includes/templates/template_default/sideboxes/tpl_blank_sidebox.php ** I have the following:
<?php
/
- blank sidebox - allows a blank sidebox to be added to your site
- @package templateSystem
- @copyright 2007 Kuroi Web Design
- @copyright Portions Copyright 2003-2007 Zen Cart Development Team
- @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
- @version $Id: blank_sidebox.php 2007-05-26 kuroi $
*/
$content = '';
$content .= '<div id="' . str_replace('_', '-', $box_id . 'Content') . '" class="sideBoxContent">';
// Replace the text and HTML tags between the apostophes on lines 19 and 20.
// Use as many or as few lines using this model as you need for your custom content.
// If you have a multilingual site define your text in the languages/YOUR_LANGUAGE/extra_definitions/blank_sidebox_defines.php and include it as shown in line 19.
// If your site is monolingual, you can put the text right here as shown on line 20 (and nobody will know!)
$content .= '<p>' .Tips_and_Tricks . '</p>';
$content .= '<p>www.lovetovape.com.au/index.php?main_page=page&id=5</p>';
$content .= '</div>';
?>
What do I need to change to get E-Juice as a link under my Tips and Tricks heading.
Thanks,
Maxy