Thread: Enabling Pages

Page 1 of 2 12 LastLast
Results 1 to 10 of 12
  1. #1
    Join Date
    Oct 2005
    Posts
    19
    Plugin Contributions
    0

    Default Enabling Pages

    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!!

  2. #2
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Enabling Pages

    admin -> configuration -> define pages status -> define privacy status and set to 1

    0 - off
    1= on

  3. #3
    Join Date
    Oct 2005
    Posts
    19
    Plugin Contributions
    0

    Default Re: Enabling Pages

    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?

  4. #4
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Enabling Pages

    do you have a URL so I can take a peek

  5. #5
    Join Date
    Oct 2005
    Posts
    19
    Plugin Contributions
    0

    Default Re: Enabling Pages

    http://www.beancollection.com

    Thanks- I appreceiate the help!

  6. #6
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Enabling Pages

    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>';
      } 

  7. #7
    Join Date
    Oct 2005
    Posts
    19
    Plugin Contributions
    0

    Default Re: Enabling Pages

    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);
    ?>

  8. #8
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Enabling Pages

    You also have links to "History" and "Wholesale" that are not included in that file.

    Where are they located?

  9. #9
    Join Date
    Oct 2005
    Posts
    19
    Plugin Contributions
    0

    Default Re: Enabling Pages

    / 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);
    ?>

  10. #10
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Enabling Pages

    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>';
    }
    The Privacy define has been commented out. remove the // in red and that should fix the problem.

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Enabling SSL for certain pages only
    By heifer in forum General Questions
    Replies: 5
    Last Post: 5 Jan 2010, 07:59 PM
  2. Enabling SSL
    By pod166 in forum General Questions
    Replies: 7
    Last Post: 12 Oct 2007, 12:25 PM
  3. Enabling Sideboxes on Specific Pages
    By ideasgirl in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 10 Jul 2006, 03:30 PM

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