|
Remove Powered by TomatoCart 1 Year, 7 Months ago
|
Karma: 0
|
|
Is it allowed under any circumstances to remove "Powered by TomatoCart" at the bottom of the front page?
Thanks
|
|
|
|
|
|
|
Re:Remove Powered by TomatoCart 1 Year, 7 Months ago
|
Karma: 1
|
|
I think you can remove it in the front-end but not in the backend.
Greets,
E-volutions
|
|
|
|
|
|
|
Re:Remove Powered by TomatoCart 1 Year, 7 Months ago
|
Karma: 0
|
|
How do I remove it from the front-end?
|
|
|
|
|
|
|
Re:Remove Powered by TomatoCart 1 Year, 7 Months ago
|
Karma: 1
|
Nucleus wrote:
How do I remove it from the front-end?
You can see the code of the template in the index.php file in your template directory.
Example ./templates/glass_gray/index.php
You can see the following code, you can modify this code
| Code: |
<?php
if ($osC_Template->hasPageFooter()) {
?>
<div id="pageFooter">
<ul>
<?php
echo '<li>' . osc_link_object(osc_href_link(FILENAME_DEFAULT, 'index'), $osC_Language->get('home')) . '<span>|<span></li>' .
'<li>' . osc_link_object(osc_href_link(FILENAME_PRODUCTS, 'specials'), $osC_Language->get('specials')) . '<span>|<span></li>' .
'<li>' . osc_link_object(osc_href_link(FILENAME_PRODUCTS, 'new'), $osC_Language->get('new_products')) . '<span>|<span></li>' .
'<li>' . osc_link_object(osc_href_link(FILENAME_ACCOUNT, null, 'SSL'), $osC_Language->get('my_account')) . '<span>|<span></li>' .
'<li>' . osc_link_object(osc_href_link(FILENAME_ACCOUNT, 'wishlist', 'SSL'), $osC_Language->get('my_wishlist')) . '<span>|<span></li>' .
'<li>' . osc_link_object(osc_href_link(FILENAME_CHECKOUT, null, 'SSL'), $osC_Language->get('cart_contents')) . '<span>|<span></li>' .
'<li>' . osc_link_object(osc_href_link(FILENAME_CHECKOUT, 'checkout', 'SSL'), $osC_Language->get('checkout')) . '<span>|<span></li>' .
'<li>' . osc_link_object(osc_href_link(FILENAME_INFO, 'contact'), $osC_Language->get('contact_us')) . '<span>|<span></li>'.
'<li>' . osc_link_object(osc_href_link(FILENAME_DEFAULT, 'rss'), osc_image(DIR_WS_IMAGES . 'rss16x16.png') . '<span>RSS</span>') . '</li>';
?>
</ul>
<div style="clear:both"></div>
<p style="margin: 3px;">
<?php
echo sprintf($osC_Language->get('footer'), date('Y'), osc_href_link(FILENAME_DEFAULT), STORE_NAME);
?>
</p>
</div>
<?php
if ($osC_Services->isStarted('banner') && $osC_Banner->exists('468x60')) {
echo '<p align="center">' . $osC_Banner->display() . '</p>';
}
}
?>
|
|
|
|
|
|
|
|
Re:Remove Powered by TomatoCart 1 Year, 7 Months ago
|
Karma: 0
|
I'm guessing the part I want to remove is somewhere between
| Code: |
<?php
echo sprintf($osC_Language->get('footer'), date('Y'), osc_href_link(FILENAME_DEFAULT), STORE_NAME);
?>
</p>
</div>
|
and
| Code: |
<?php
if ($osC_Services->isStarted('banner') && $osC_Banner->exists('468x60')) {
echo '<p align="center">' . $osC_Banner->display() . '</p>';
}
}
?>
|
But I just can't figure it out 
|
|
|
|
|
|
|
Re:Remove Powered by TomatoCart 1 Year, 7 Months ago
|
Karma: 1
|
I think you have to remove the following code:
| Code: |
<p style="margin: 3px;">
<?php
echo sprintf($osC_Language->get('footer'), date('Y'), osc_href_link(FILENAME_DEFAULT), STORE_NAME);
?>
</p>
|
|
|
|
|
|
|
|