AbanteCart Community

Shopping Cart Operations => Support => Topic started by: emanuelben616 on July 06, 2015, 11:08:39 AM

Title: removing the powered by Abante Cart from the bottom right hand side
Post by: emanuelben616 on July 06, 2015, 11:08:39 AM
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
Title: Re: removing the powered by AbanteCart Cart from the bottom right hand side
Post by: alfaromora on July 06, 2015, 11:50:31 AM
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>
Title: Re: removing the powered by AbanteCart Cart from the bottom right hand side
Post by: emanuelben616 on July 06, 2015, 03:03:12 PM
Thank you! Do you know if i can put my own thing of there like my website name
Title: Re: removing the powered by AbanteCart Cart from the bottom right hand side
Post by: Basara on July 07, 2015, 03:20:50 AM
Try http://marketplace.abantecart.com/whitelabel-abantecart-remove-labels-from-footer
this extension allow you to remove link without code modification
Title: Re: removing the powered by AbanteCart Cart from the bottom right hand side
Post by: emanuelben616 on July 07, 2015, 08:00:24 AM
Thank you so much or help. Really do appreciate it!!
Title: Re: removing the powered by AbanteCart Cart from the bottom right hand side
Post by: codmall on August 15, 2016, 10:46:23 AM
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">&nbsp;</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>
Title: Re: removing the powered by AbanteCart Cart from the bottom right hand side
Post by: MessEleven on September 05, 2016, 02:21:56 AM
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?