Hi,
Ive been trying to remove the powered by AbanteCart on the lower right had side but I've not been successful. Anyone know how to remove it. Thanks for the help
Hi, you must comment or delete the lines from 33 to 47 of the file ./public_html/storefront/view/default/template/common/footer.tpl
<section class="copyrightbottom align_center">
<div class="container-fluid">
<div class="pull-left mt10">
<?php echo ${$children_blocks[6]}; ?>
</div>
<div class="pull-right align_center">
<?php echo $text_project_label ?>
<br />
<?php echo $text_copy; ?>
</div>
<div class="pull-right mr20 mt10">
<?php echo ${$children_blocks[7]}; ?>
</div>
</div>
</section>
Thank you! Do you know if i can put my own thing of there like my website name
Try http://marketplace.abantecart.com/whitelabel-abantecart-remove-labels-from-footer
this extension allow you to remove link without code modification
Thank you so much or help. Really do appreciate it!!
Hi all,
Simpy find these codes in /storefront/view/default/template/common/footer.tpl then delete the line <?php echo $text_project_label ?>. This method will only delete the powered by AbanteCart... not the copyright.
<section class="copyrightbottom align_center">
<h2 class="hidden"> </h2>
<div class="container-fluid">
<div class="pull-left mt5">
<?php echo ${$children_blocks[6]}; ?>
</div>
<div class="pull-right align_center">
<?php echo $text_project_label ?>
<br/>
<?php echo $text_copy; ?>
</div>
<div class="pull-right mr20 mt5">
<?php echo ${$children_blocks[7]}; ?>
</div>
</div>
</section>
In which file is <div class="pull-right align_center"> located? Like others here, I would like to center the Store copyright in the footer. Will I be able to do this by changing the float positioning to center?