Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Adding Footer Information Pages?


Dnj1964

Recommended Posts

Need some input please...

 

I wanted to add 2 pages to the foooter information.

I used privacy.php but assume conditions,php or shipping.php would work the same.

 

Lets say that I wanted to add a Vision Statement to the information section...

I renamed a copy of catalog/privacy.php to catalog/vision.php

<?php
/*
  $Id$

  osCommerce, Open Source E-Commerce Solutions
  http://www.oscommerce.com

  Copyright (c) 2018 osCommerce

  Released under the GNU General Public License
*/

  require('includes/application_top.php');

  require('includes/languages/' . $language . '/vision.php'); //changed privacy to vision

  $breadcrumb->add(NAVBAR_TITLE, tep_href_link('vision.php')); //changed privacy to vision

  require('includes/template_top.php');
?>

<h1 class="display-4"><?php echo HEADING_TITLE; ?></h1>

<div class="contentContainer">
  <?php echo TEXT_INFORMATION; ?>

  <div class="buttonSet">
    <div class="text-right"><?php echo tep_draw_button(IMAGE_BUTTON_CONTINUE, 'fa fa-angle-right', tep_href_link('index.php'), null, null, 'btn-light btn-block btn-lg'); ?></div>
  </div>
</div>

<?php
  require('includes/template_bottom.php');
  require('includes/application_bottom.php');
?>

 

 

 

In includes/languages/english -> privacy.php to vision.php

<?php
/*
  $Id$

  osCommerce, Open Source E-Commerce Solutions
  http://www.oscommerce.com

  Copyright (c) 2002 osCommerce

  Released under the GNU General Public License
*/

define('NAVBAR_TITLE', 'Vision Statement'); // Changed Privacy Notice to Vision Statement (Or whatever filename you choose)
define('HEADING_TITLE', 'Vision Statement'); // Changed Privacy Notice to Vision Statement (Or whatever filename you choose)

define('TEXT_INFORMATION', 'Put here your Vision Statement Here!!!!! Add text here.....');// Any text with ' becomes \'
?>

 

 

 

In \includes\languages\english\modules\content\footer\cm_footer_information_links

<?php
/*
  Copyright (c) 2018, G Burton
  All rights reserved.

  Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

  2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

  3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

  define('MODULE_CONTENT_FOOTER_INFORMATION_TITLE', 'Information Links Block');
  define('MODULE_CONTENT_FOOTER_INFORMATION_DESCRIPTION', 'Adds Information Links Block to the Footer Area of your site');

  define('MODULE_CONTENT_FOOTER_INFORMATION_HEADING_TITLE', 'Information');

  const MODULE_CONTENT_FOOTER_INFORMATION_DATA = array(
    'privacy.php' => 'Privacy &amp; Cookie Policy',
    'conditions.php' => 'Terms &amp; Conditions',
    'vision.php' => 'Vision Statement', // Add link to vision.php in footer!
    'shipping.php' => 'Shipping &amp; Returns',
    'contact_us.php' => 'Contact Us'
  );

Just wondering if there is anything I am missing?

I  am trying...

Ever so slowly to learn a bit of php.

Thanks for any input...

Now wanting to combine footer and footer suffix and remove the boxes and have grid full width with information box and copyright in a table rather than a column and remove the suffix icons as well

Link to comment
Share on other sites

It looks like you have a mix of files there....you didn't say what version of osC your using but did you have a look at...

/includes/modules/content/footer/templates/tpl_cm_footer_information_links.php

and add a link there?  Assuming you even have that file of course.

Dan

Link to comment
Share on other sites

Assuming your using CE Frozen BS3!

edit,

public_html/includes/modules/content/footer/templates/tpl_cm_footer_information_links.php

<div class="col-sm-<?php echo $content_width; ?> cm-footer-information-links">
  <div class="footerbox information">
    <h2 class="h3"><?php echo MODULE_CONTENT_FOOTER_INFORMATION_HEADING_TITLE; ?></h2>
    <ul class="nav nav-pills nav-stacked">
      <li><a href="<?php echo tep_href_link('contact_us.php'); ?>"><?php echo MODULE_CONTENT_FOOTER_INFORMATION_CONTACT; ?></a></li>
      <li><a href="<?php echo tep_href_link('privacy.php'); ?>"><?php echo MODULE_CONTENT_FOOTER_INFORMATION_PRIVACY; ?></a></li>
      <li><a href="<?php echo tep_href_link('conditions.php'); ?>"><?php echo MODULE_CONTENT_FOOTER_INFORMATION_CONDITIONS; ?></a></li>
      <li><a href="<?php echo tep_href_link('shipping.php'); ?>"><?php echo MODULE_CONTENT_FOOTER_INFORMATION_SHIPPING; ?></a></li>
      <li><a href="<?php echo tep_href_link('vision.php'); ?>"><?php echo MODULE_CONTENT_FOOTER_INFORMATION_VISION; ?></a></li>
     
     </ul>  
  </div>
</div>

Now you need to edit public_html/includes/languages/english/modules/content/footer/cm_footer_information_links.php

<?php
/*
  $Id$

  osCommerce, Open Source E-Commerce Solutions
  http://www.oscommerce.com

  Copyright (c) 2014 osCommerce

  Released under the GNU General Public License
*/

  define('MODULE_CONTENT_FOOTER_INFORMATION_TITLE', 'Information Links Block');
  define('MODULE_CONTENT_FOOTER_INFORMATION_DESCRIPTION', 'Adds Information Links Block to the Footer Area of your site');

  define('MODULE_CONTENT_FOOTER_INFORMATION_HEADING_TITLE', 'Information');

  define('MODULE_CONTENT_FOOTER_INFORMATION_SHIPPING', 'Shipping & Returns');
  define('MODULE_CONTENT_FOOTER_INFORMATION_PRIVACY', 'Privacy & Cookie Policy');
  define('MODULE_CONTENT_FOOTER_INFORMATION_CONDITIONS', 'Terms & Conditions');
  define('MODULE_CONTENT_FOOTER_INFORMATION_CONTACT', 'Contact Us');
  define('MODULE_CONTENT_FOOTER_INFORMATION_VISION', 'Our Vision');

Then you need to add your new file vision.php in root or shop depending on how you installed just copy shipping.php and edit.

  osCommerce, Open Source E-Commerce Solutions
  http://www.oscommerce.com

  Copyright (c) 2010 osCommerce

  Released under the GNU General Public License
*/

  require('includes/application_top.php');

  require('includes/languages/' . $language . '/vision.php');

  $breadcrumb->add(NAVBAR_TITLE, tep_href_link('vision.php'));

  require('includes/template_top.php');
?>

<div class="page-header">
  <h1 class="h3"><?php echo HEADING_TITLE; ?></h1>
</div>

<div class="contentContainer">
  <div class="contentText">
    <?php echo TEXT_INFORMATION; ?>
  </div>

  <div class="buttonSet">
    <div class="text-right"><?php echo tep_draw_button(IMAGE_BUTTON_CONTINUE, 'fa fa-angle-right', tep_href_link('index.php')); ?></div>
  </div>
</div>

<?php
  require('includes/template_bottom.php');
  require('includes/application_bottom.php');
?>

and now you need to do the last bit in languges. Again you can copy and edit the shipping.php

so edit this public_html/includes/languages/english/vision.php

<?php
/*
  $Id$

  osCommerce, Open Source E-Commerce Solutions
  http://www.oscommerce.com

  Copyright (c) 2002 osCommerce

  Released under the GNU General Public License
*/

define('NAVBAR_TITLE', 'Our Vision');
define('HEADING_TITLE', 'Our Vision');

define('TEXT_INFORMATION', 'Put your vision statment here. It can be plain text or html to make it look nice');
?>

Do all that and your new link will how in the information footer. If your using BS4 then it's a little simpler but that's another story.

 

Link to comment
Share on other sites

4 hours ago, Dnj1964 said:

In \includes\languages\english\modules\content\footer\cm_footer_information_links

The CONST code you pasted from this file exists only in EDGE after October 2018, so you must be using BSv4 version CE ?

Link to comment
Share on other sites

4 hours ago, Dnj1964 said:

Just wondering if there is anything I am missing?

No with BS4 that should be all you need you should see your new link in the footer. Just clear your browser cache if it's not showing.

 

4 hours ago, Dnj1964 said:

Now wanting to combine footer and footer suffix and remove the boxes and have grid full width with information box and copyright in a table rather than a column and remove the suffix icons as well

simplest way is turn off footer sufix. To remove boxes again just turn off. For the grid go to admin /confuguration/bootstrap setup and make sure you are set to content value 8 and your site body should be full width.

The copyright then will need to be added as a new footer module. I'm not sure what you mean by information as table? They are a list in BS4

<ul class="list-unstyled list-tap-target">

 

Link to comment
Share on other sites

If your  looking to do somthing like this, Then your going to need more than css. The html is mixed up in the php so you will need to edit

/public_html/includes/modules/content/footer/cm_footer_information_links.php

image.thumb.png.6dc1db1f1aed8849d2fbbdbdee36c17f.png

Many ways to do this so it's up to you. this was done by adding a new div with class, Why well this way it will go back to list on small screens.

 $cm_footer_information_links = null;      
      foreach (MODULE_CONTENT_FOOTER_INFORMATION_DATA as $a => $b) {
        $cm_footer_information_links .= '<div class="col-sm"><li><a href="' . tep_href_link($a) . '">' . $b . '</a></li></div>' . PHP_EOL; 
      }

Then you need to add a new div and class in ,

public_html/includes/modules/content/footer/templates/tpl_cm_footer_information_links.php

<div class="col-sm-6 col-md-<?php echo $content_width; ?> cm-footer-information-links">
  <h4><?php echo MODULE_CONTENT_FOOTER_INFORMATION_HEADING_TITLE; ?></h4>
  <ul class="list-unstyled list-tap-target">
      <div class="row">
      <?php echo $cm_footer_information_links; ?>
      </div>
  </ul>  
</div>

Not a BS expert so others may have more elagent solution. I personaly would simply make a new footer module and turn off current and turn on new. Make one for each file and you can then change them around with sort order and add or remove as many as you like.

 

Link to comment
Share on other sites

20 hours ago, Dan Cole said:

It looks like you have a mix of files there....you didn't say what version of osC your using but did you have a look at...

/includes/modules/content/footer/templates/tpl_cm_footer_information_links.php

and add a link there?  Assuming you even have that file of course.

Dan

I am using Edge BS4 - those are files that were in the download.

Link to comment
Share on other sites

19 hours ago, burt said:

The CONST code you pasted from this file exists only in EDGE after October 2018, so you must be using BSv4 version CE ?

Yes I am using Edge BS4.

Haven't been diligent on keeping up with the new commits but downloaded it in late December so only see 2 new changes.

Thanks.

 

Link to comment
Share on other sites

18 hours ago, JcMagpie said:

If your  looking to do somthing like this, Then your going to need more than css. The html is mixed up in the php so you will need to edit

/public_html/includes/modules/content/footer/cm_footer_information_links.php

image.thumb.png.6dc1db1f1aed8849d2fbbdbdee36c17f.png

Many ways to do this so it's up to you. this was done by adding a new div with class, Why well this way it will go back to list on small screens.


 $cm_footer_information_links = null;      
      foreach (MODULE_CONTENT_FOOTER_INFORMATION_DATA as $a => $b) {
        $cm_footer_information_links .= '<div class="col-sm"><li><a href="' . tep_href_link($a) . '">' . $b . '</a></li></div>' . PHP_EOL; 
      }

Then you need to add a new div and class in ,

public_html/includes/modules/content/footer/templates/tpl_cm_footer_information_links.php


<div class="col-sm-6 col-md-<?php echo $content_width; ?> cm-footer-information-links">
  <h4><?php echo MODULE_CONTENT_FOOTER_INFORMATION_HEADING_TITLE; ?></h4>
  <ul class="list-unstyled list-tap-target">
      <div class="row">
      <?php echo $cm_footer_information_links; ?>
      </div>
  </ul>  
</div>

Not a BS expert so others may have more elagent solution. I personaly would simply make a new footer module and turn off current and turn on new. Make one for each file and you can then change them around with sort order and add or remove as many as you like.

Thanks, I get the gist of the code you posted and do understand about making a whole group of footer modules

Link to comment
Share on other sites

<h4><?php echo MODULE_CONTENT_FOOTER_INFORMATION_HEADING_TITLE; ?></h4>

or should we use

<h1 class="h4"><?php echo MODULE_CONTENT_FOOTER_INFORMATION_HEADING_TITLE; ?></h1>

so it reads from css

Link to comment
Share on other sites

35 minutes ago, Dnj1964 said:

<h4><?php echo MODULE_CONTENT_FOOTER_INFORMATION_HEADING_TITLE; ?></h4>

or should we use


<h1 class="h4"><?php echo MODULE_CONTENT_FOOTER_INFORMATION_HEADING_TITLE; ?></h1>

so it reads from css

use <h4>

Link to comment
Share on other sites

1 hour ago, Dnj1964 said:

Yes I am using Edge BS4.

Haven't been diligent on keeping up with the new commits but downloaded it in late December so only see 2 new changes.

Thanks.

 

There's about 20 - 25 changes since then - keep on top of it if you can.

Link to comment
Share on other sites

54 minutes ago, Dnj1964 said:

<h4><?php echo MODULE_CONTENT_FOOTER_INFORMATION_HEADING_TITLE; ?></h4>

or should we use


<h1 class="h4"><?php echo MODULE_CONTENT_FOOTER_INFORMATION_HEADING_TITLE; ?></h1>

so it reads from css

<h1 class="h4"> make a h1 heading look like a h4 heading.

So you need to work out what you want to do prior to doing it. 

  • Do you want these headings to have an important weight?  Use h1 or h2. 
  • Do you want them to have a less important weight?  Use or h5 h6. 
  • Do you want them to have a certain weight, but look important?  Use (eg) 'h4 class=h2'

That's oversimplified the concept, but it's a good learning experience to look into it and understand more about what you're doing.

https://getbootstrap.com/docs/4.0/content/typography/#headings

Link to comment
Share on other sites

4 hours ago, burt said:

<h1 class="h4"> make a h1 heading look like a h4 heading.

So you need to work out what you want to do prior to doing it. 

  • Do you want these headings to have an important weight?  Use h1 or h2. 
  • Do you want them to have a less important weight?  Use or h5 h6. 
  • Do you want them to have a certain weight, but look important?  Use (eg) 'h4 class=h2'

That's oversimplified the concept, but it's a good learning experience to look into it and understand more about what you're doing.

https://getbootstrap.com/docs/4.0/content/typography/#headings

Thank you for the bootstrap link. Reading it over and it explains a lot about css.  Have a lot of reading ahead to breach the learning curve.

 

Thanks again.

Link to comment
Share on other sites

So in order to be compliant with bootstrap I take it that all code has to follow the bootstrap style.

I added tables into the product info and used <td valign="top"> but see that it has been abandon for <td class="align-text-top">

I'm assuming I have make all the changes plus many more with list properties as well in keeping with bootstrap.

Would using these old html tags cause issue with validators - I assume so as well.

They always say...Learn to walk before you run.

Relying on old knowledge is a big mistake.

Link to comment
Share on other sites

We all have to learn new tricks! 😊 use one of the many editors to get the basic stuff done! lots available both free and paid

I personaly use

https://pingendo.com/

It's a paid version for BS4

Or just use the bootstrap resources.

if you're feeling adventurous and wish to do new page layouts and other stuff then use something more powerfull such as

https://mobirise.com/bootstrap-builder/

You can then chop out the bits of code you need and use them. The options are endless.

 

Link to comment
Share on other sites

 

Used the code as is below and it worked perfect to place the information links in a row across the 12 columns

/public_html/includes/modules/content/footer/cm_footer_information_links.php

Many ways to do this so it's up to you. this was done by adding a new div with class
Why well this way it will go back to list on small screens.

 $cm_footer_information_links = null;      
      foreach (MODULE_CONTENT_FOOTER_INFORMATION_DATA as $a => $b) {
        $cm_footer_information_links .= '<div class="col-sm"><li><a href="' . tep_href_link($a) . '">' . $b . '</a></li></div>' . PHP_EOL; 
      }





Then you need to add a new div and class
public_html/includes/modules/content/footer/templates/tpl_cm_footer_information_links.php


<div class="col-sm-6 col-md-<?php echo $content_width; ?> cm-footer-information-links">
  <h4><?php echo MODULE_CONTENT_FOOTER_INFORMATION_HEADING_TITLE; ?></h4>
  <ul class="list-unstyled list-tap-target">
      <div class="row">
      <?php echo $cm_footer_information_links; ?>
      </div>
  </ul>  
</div>

 

image.png.79c1f5ee8ee23049d7f1299a076a4b61.png

 

Do I need to create modules in order to have 2 rows of 3 equally divided across the 12 columns?

That would the text in would need to be left justified.

Looking at /public_html/includes/languages/english/modules/content/footer/cm_footer_information_links.php

 

<?php
/*
  Copyright (c) 2018, G Burton
  All rights reserved.

  Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

  2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

  3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

  define('MODULE_CONTENT_FOOTER_INFORMATION_TITLE', 'Information Links Block');
  define('MODULE_CONTENT_FOOTER_INFORMATION_DESCRIPTION', 'Adds Information Links Block to the Footer Area of your site');

  define('MODULE_CONTENT_FOOTER_INFORMATION_HEADING_TITLE', '');

  const MODULE_CONTENT_FOOTER_INFORMATION_DATA = array(
    'mission.php' => 'Mission Statement',
	'vision.php' => 'Vision Statement',
	'contact_us.php' => 'Contact Us',
	'privacy.php' => 'Privacy &amp; Cookie Policy',
    'conditions.php' => 'Terms &amp; Conditions',
    'shipping.php' => 'Shipping &amp; Returns',
    
  );

 

 

 

Link to comment
Share on other sites

What you want is a NEW module based on that footer_links module. 

In this module have a NAV (note this is different from a Navbar).

<nav class="nav nav-fill">
  <a class="nav-item nav-link" href="#">Link</a>
  <a class="nav-item nav-link" href="#">Link</a>
  <a class="nav-item nav-link" href="#">Link</a>
  <a class="nav-item nav-link" href="#">Link</a>
</nav>

So:

foreach (MODULE_CONTENT_FOOTER_WHATEVER_BLAH as $a => $b) {
  $_links .= '<a class="nav-item nav-link" href="' . tep_href_link($a) . '">' . $b . '</a>' . PHP_EOL;
}

and:

<nav class="nav nav-fill">
  <?php echo $_links; ?>
</nav> 

More reading:

https://getbootstrap.com/docs/4.0/components/navs/#base-nav

Link to comment
Share on other sites

Thank you very much.

I will go and read and read some more.

Maybe someday I will actually know where to look for the information I need.

Very much appreciated.

 

Link to comment
Share on other sites

Without the code below I would have never made this work.

After a lot of reading and multiple mistakes I finally got it to work.

image.png.05a2dcfddc5a550144a84d95d316c066.png

13 hours ago, burt said:

What you want is a NEW module based on that footer_links module. 

In this module have a NAV (note this is different from a Navbar).


<nav class="nav nav-fill">
  <a class="nav-item nav-link" href="#">Link</a>
  <a class="nav-item nav-link" href="#">Link</a>
  <a class="nav-item nav-link" href="#">Link</a>
  <a class="nav-item nav-link" href="#">Link</a>
</nav>

So:


foreach (MODULE_CONTENT_FOOTER_WHATEVER_BLAH as $a => $b) {
  $_links .= '<a class="nav-item nav-link" href="' . tep_href_link($a) . '">' . $b . '</a>' . PHP_EOL;
}

and:


<nav class="nav nav-fill">
  <?php echo $_links; ?>
</nav> 

More reading:

https://getbootstrap.com/docs/4.0/components/navs/#base-nav

 

Thinking I had to cheat a little on it though

/public_html/includes/modules/content/footer/templates/tpl_cm_footer_infonav_links.php

Guessing it should have been with <ul> & <li> but for now just happy it works.

A huge thanks.

Found another site as well that has a lot of good info as well https://stackoverflow.com/

 

<div class="col-sm-6 col-md-<?php echo $content_width; ?> cm-footer-infonav-links">

<nav class="nav nav-fill">
 <?php echo $_links; ?>
 </nav>


<div>
<nav class="nav nav-fill">
  <a class="nav-item nav-link" href="mission.php">Our Mission</a>
  <a class="nav-item nav-link" href="vision.php">Our Vision</a>
  <a class="nav-item nav-link" href="contact_us.php">Contact Us</a>
</nav>
</div>

<div>
<nav class="nav nav-fill">
  <a class="nav-item nav-link" href="privacy.php">Privacy Commitment</a>
  <a class="nav-item nav-link" href="conditions.php">Terms &amp; Conditions</a>
  <a class="nav-item nav-link" href="shipping.php">Shipping &amp; Returns</a>
</nav>
</div>
</div>





<?php
/*
  Copyright (c) 2018, G Burton
  All rights reserved.

  Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

  2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

  3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
?>

 

 

 

 

 

Link to comment
Share on other sites

15 hours ago, JcMagpie said:

For anyone not upto editing the code or making a new module you can try this.

https://apps.oscommerce.com/lJywS&amp;jcm-footer-more-information-v1-0-ce

Thanks for the link to the add-on!

While it may take longer, and may involve a lot of mistakes and a number of questions a long the way...

Constantly adding add-on solutions provided by others while greatly appreciated does nothing to further one's own learning and ability to at minimum manipulate the code provided by others.

Don't ever want to belittle the kindness, support and help provided by not only yourself but @burt and numerous others. Without that support and help I would be no where near the point I am at with my site design.

I could have opted to download Frozen as suggested as it is touted as being stable and as @burt relays Edge Gold or Edge Master is his playground.

As @burt suggested earlier in this discussion....

Try and keep up with the commits. (Really never worried or gave this any consideration before).

Of all the forum choices, I choose to post in "General Support"

Asking for help/advice is a two-sided venture, you must believe that the individual offering the help/advice is doing so in good faith and with interst of furthering the community...

Oscommerce is mamzing that way. Never seems to be a shortage of people to help no matter your level of experience.

As in anything, you can choose to accept the help or advice or ignore it. Personally I choose to accept it as being open to change is the best way to achieve your goals.

If I constantly ignored the advice/help of those that I requested it from then I'm the idiot and Edge (Master) Gold + Extra Commits would be stuck back at a January snapshot instead of being current as of March 1, 2019.

To all the newbies requesting help, support, advice...

Take time to express your appreciation for the dedication and hard work from the people and the community at whole that is helping you with not only your web site problems but with realizing your dream!

 

 

 

 

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...