I know this is elementary stuff, but would someone mind telling me how to enable my pirvacy policy page? I see it in my admin, but it doeen't show up on the site. If there's an easy answer, I sure would appreciate the help!
Thanks in advance!!
I know this is elementary stuff, but would someone mind telling me how to enable my pirvacy policy page? I see it in my admin, but it doeen't show up on the site. If there's an easy answer, I sure would appreciate the help!
Thanks in advance!!
admin -> configuration -> define pages status -> define privacy status and set to 1
0 - off
1= on
Yep... tha't what I thought, however all the pages are currently set at 1 (on), but the privacy policy page is not showing up on the site. I'm very confused. Any ideas?
do you have a URL so I can take a peek
http://www.beancollection.com
Thanks- I appreceiate the help!
Did you by any chance modify
includes -> modules -> sideboxes -> information.php
This is what the un-modified file should look like
PHP Code:if (DEFINE_SHIPPINGINFO_STATUS <= 1) {
$information[] = '<a href="' . zen_href_link(FILENAME_SHIPPING) . '">' . BOX_INFORMATION_SHIPPING . '</a>';
}
if (DEFINE_PRIVACY_STATUS <= 1) {
$information[] = '<a href="' . zen_href_link(FILENAME_PRIVACY) . '">' . BOX_INFORMATION_PRIVACY . '</a>';
}
if (DEFINE_CONDITIONS_STATUS <= 1) {
$information[] = '<a href="' . zen_href_link(FILENAME_CONDITIONS) . '">' . BOX_INFORMATION_CONDITIONS . '</a>';
}
if (DEFINE_CONTACT_US_STATUS <= 1) {
$information[] = '<a href="' . zen_href_link(FILENAME_CONTACT_US) . '">' . BOX_INFORMATION_CONTACT . '</a>';
}
It's possible that the person who designed the site for me did modify that file. This is what I show now:
// $Id: information.php 1266 2005-04-29 02:51:24Z ajeh $
//
unset($information);
$information[] = '<a href="' . zen_href_link(FILENAME_SHIPPING) . '">' . BOX_INFORMATION_SHIPPING . '</a>';
$information[] = '<a href="' . zen_href_link(FILENAME_PRIVACY) . '">' . BOX_INFORMATION_PRIVACY . '</a>';
$information[] = '<a href="' . zen_href_link(FILENAME_CONDITIONS) . '">' . BOX_INFORMATION_CONDITIONS . '</a>';
$information[] = '<a href="' . zen_href_link(FILENAME_CONTACT_US) . '">' . BOX_INFORMATION_CONTACT . '</a>';
if ( ($sniffer->phpBB['db_installed_config']) && ($sniffer->phpBB['files_installed']) && (PHPBB_LINKS_ENABLED=='true')) {
$information[] = '<a href="' . zen_href_link($sniffer->phpBB['phpbb_url'] . FILENAME_BB_INDEX, '', 'NONSSL', '', '', true, false) . '" target="_blank">' . BOX_BBINDEX . '</a>';
// or: $sniffer->phpBB['phpbb_url'] . FILENAME_BB_INDEX
// or: str_replace(str_replace(DIR_WS_CATALOG, '', DIR_FS_CATALOG), '', DIR_WS_PHPBB)
}
// only show GV FAQ when installed
if (MODULE_ORDER_TOTAL_GV_STATUS=='true') {
$information[] = '<a href="' . zen_href_link(FILENAME_GV_FAQ) . '">' . BOX_INFORMATION_GV . '</a>';
}
if (SHOW_NEWSLETTER_UNSUBSCRIBE_LINK=='true') {
$information[] = '<a href="' . zen_href_link(FILENAME_UNSUBSCRIBE) . '">' . BOX_INFORMATION_UNSUBSCRIBE . '</a>';
}
require($template->get_template_dir('tpl_information.php',DIR_WS_TEMPLATE, $current_page_base,'sideboxes'). '/tpl_information.php');
$title = BOX_HEADING_INFORMATION;
$left_corner = false;
$right_corner = false;
$right_arrow = false;
$title_link = false;
require($template->get_template_dir($column_box_default, DIR_WS_TEMPLATE, $current_page_base,'common') . '/' . $column_box_default);
?>
You also have links to "History" and "Wholesale" that are not included in that file.
Where are they located?
/ home / beancollection.c / www / beancollection.com / includes / modules / sideboxes / bean / information.php
I think this is where the links are located:
// $Id: information.php 1266 2005-04-29 02:51:24Z ajeh $
//
unset($information);
$information[] = '<a href="' . zen_href_link(FILENAME_SHIPPING) . '">' . BOX_INFORMATION_SHIPPING . '</a>';
// $information[] = '<a href="' . zen_href_link(FILENAME_PRIVACY) . '">' . BOX_INFORMATION_PRIVACY . '</a>';
// $information[] = '<a href="' . zen_href_link(FILENAME_CONDITIONS) . '">' . BOX_INFORMATION_CONDITIONS . '</a>';
$information[] = '<a href="' . zen_href_link(FILENAME_CONTACT_US) . '">' . BOX_INFORMATION_CONTACT . '</a>';
$information[] = '<a href="' . zen_href_link(FILENAME_HISTORY) . '">' . BOX_INFORMATION_HISTORY . '</a>';
// $information[] = '<a href="' . zen_href_link(FILENAME_OUR_COFFEES) . '">' . BOX_INFORMATION_OUR_COFFEES . '</a>';
$information[] = '<a href="' . zen_href_link(FILENAME_WHOLESALE) . '">' . BOX_INFORMATION_WHOLESALE . '</a>';
if ( ($sniffer->phpBB['db_installed_config']) && ($sniffer->phpBB['files_installed']) && (PHPBB_LINKS_ENABLED=='true')) {
$information[] = '<a href="' . zen_href_link($sniffer->phpBB['phpbb_url'] . FILENAME_BB_INDEX, '', 'NONSSL', '', '', true, false) . '" target="_blank">' . BOX_BBINDEX . '</a>';
// or: $sniffer->phpBB['phpbb_url'] . FILENAME_BB_INDEX
// or: str_replace(str_replace(DIR_WS_CATALOG, '', DIR_FS_CATALOG), '', DIR_WS_PHPBB)
}
// only show GV FAQ when installed
if (MODULE_ORDER_TOTAL_GV_STATUS=='true') {
$information[] = '<a href="' . zen_href_link(FILENAME_GV_FAQ) . '">' . BOX_INFORMATION_GV . '</a>';
}
if (SHOW_NEWSLETTER_UNSUBSCRIBE_LINK=='true') {
$information[] = '<a href="' . zen_href_link(FILENAME_UNSUBSCRIBE) . '">' . BOX_INFORMATION_UNSUBSCRIBE . '</a>';
}
require($template->get_template_dir('tpl_information.php',DIR_WS_TEMPLATE, $current_page_base,'sideboxes'). '/tpl_information.php');
$title = BOX_HEADING_INFORMATION;
$left_corner = false;
$right_corner = false;
$right_arrow = false;
$title_link = false;
require($template->get_template_dir($column_box_default, DIR_WS_TEMPLATE, $current_page_base,'common') . '/' . $column_box_default);
?>
The Privacy define has been commented out. remove the // in red and that should fix the problem.unset($information);
$information[] = '<a href="' . zen_href_link(FILENAME_SHIPPING) . '">' . BOX_INFORMATION_SHIPPING . '</a>';
// $information[] = '<a href="' . zen_href_link(FILENAME_PRIVACY) . '">' . BOX_INFORMATION_PRIVACY . '</a>';
// $information[] = '<a href="' . zen_href_link(FILENAME_CONDITIONS) . '">' . BOX_INFORMATION_CONDITIONS . '</a>';
$information[] = '<a href="' . zen_href_link(FILENAME_CONTACT_US) . '">' . BOX_INFORMATION_CONTACT . '</a>';
$information[] = '<a href="' . zen_href_link(FILENAME_HISTORY) . '">' . BOX_INFORMATION_HISTORY . '</a>';
// $information[] = '<a href="' . zen_href_link(FILENAME_OUR_COFFEES) . '">' . BOX_INFORMATION_OUR_COFFEES . '</a>';
$information[] = '<a href="' . zen_href_link(FILENAME_WHOLESALE) . '">' . BOX_INFORMATION_WHOLESALE . '</a>';
if ( ($sniffer->phpBB['db_installed_config']) && ($sniffer->phpBB['files_installed']) && (PHPBB_LINKS_ENABLED=='true')) {
$information[] = '<a href="' . zen_href_link($sniffer->phpBB['phpbb_url'] . FILENAME_BB_INDEX, '', 'NONSSL', '', '', true, false) . '" target="_blank">' . BOX_BBINDEX . '</a>';
// or: $sniffer->phpBB['phpbb_url'] . FILENAME_BB_INDEX
// or: str_replace(str_replace(DIR_WS_CATALOG, '', DIR_FS_CATALOG), '', DIR_WS_PHPBB)
}
// only show GV FAQ when installed
if (MODULE_ORDER_TOTAL_GV_STATUS=='true') {
$information[] = '<a href="' . zen_href_link(FILENAME_GV_FAQ) . '">' . BOX_INFORMATION_GV . '</a>';
}