Follow us on Twitter X-Cart on Facebook Wiki
Shopping cart software Solutions for online shops and malls

Powered by X-Cart

 
Reply
   X-Cart forums > X-Cart 5 > Dev Questions (X-Cart 5)
 
Thread Tools Search this Thread
  #1  
Old 08-04-2018, 01:36 AM
  James60's Avatar 
James60 James60 is offline
 

Advanced Member
  
Join Date: Aug 2014
Posts: 33
 

Default Powered by X-Cart

Can you help in removing the link in the footer "All rights reserved. Powered by X-Cart"


I am using the Standard Template with Business 5.3.3.7 version.


Thanks ..
__________________
Business 5.3.3.7
Reply With Quote
  #2  
Old 08-04-2018, 06:04 AM
  qualiteam's Avatar 
qualiteam qualiteam is offline
 

X-Guru
  
Join Date: Dec 2010
Posts: 6,373
 

Default Re: Powered by X-Cart

Hi there.
Here's an article that explains how to do this.
https://kb.x-cart.com/look_and_feel/removing_the_powered_by_notice.html
__________________
Alex Solovev,
Qualiteam

---

User manual Video tutorials X-Cart FAQ

You are welcome to press "Thanks" button
if you find this post useful

Click here to learn how to apply patches

X-Cart Extensions
Reply With Quote
  #3  
Old 08-04-2018, 07:35 AM
  cflsystems's Avatar 
cflsystems cflsystems is offline
 

Veteran
  
Join Date: Apr 2007
Posts: 14,190
 

Default Re: Powered by X-Cart

This article is somewhat misleading and will not remove the notice. It will hide it with css. So you can't see it but the "Power By X-Cart" label and the link will still be present in the html code.

This will remove it - https://www.cflsystems.com/remove-branding-for-x-cart-5.html
__________________
Steve Stoyanov
CFLSystems.com
Web Development
Reply With Quote
  #4  
Old 08-04-2018, 09:29 AM
  qualiteam's Avatar 
qualiteam qualiteam is offline
 

X-Guru
  
Join Date: Dec 2010
Posts: 6,373
 

Default Re: Powered by X-Cart

Quote:
Originally Posted by cflsystems
This article is somewhat misleading and will not remove the notice. It will hide it with css. So you can't see it but the "Power By X-Cart" label and the link will still be present in the html code.

This will remove it - https://www.cflsystems.com/remove-branding-for-x-cart-5.html


That is true, the label will be invisible but still be present in the html code.
If the topic starter wants to remove it completely he can as well use the embedded webmaster mode.
Here's the article on how to use the webmaster mode.
https://kb.x-cart.com/look_and_feel/theme_tweaker/template_editor.html
__________________
Alex Solovev,
Qualiteam

---

User manual Video tutorials X-Cart FAQ

You are welcome to press "Thanks" button
if you find this post useful

Click here to learn how to apply patches

X-Cart Extensions
Reply With Quote
  #5  
Old 08-04-2018, 10:50 AM
  James60's Avatar 
James60 James60 is offline
 

Advanced Member
  
Join Date: Aug 2014
Posts: 33
 

Default Re: Powered by X-Cart

Quote:
Originally Posted by cflsystems
This article is somewhat misleading and will not remove the notice. It will hide it with css. So you can't see it but the "Power By X-Cart" label and the link will still be present in the html code.

This will remove it - https://www.cflsystems.com/remove-branding-for-x-cart-5.html




Thanks, but why would i want to spend 60 bucks to remove a small amount of code?
__________________
Business 5.3.3.7
Reply With Quote
  #6  
Old 08-04-2018, 10:51 AM
  James60's Avatar 
James60 James60 is offline
 

Advanced Member
  
Join Date: Aug 2014
Posts: 33
 

Default Re: Powered by X-Cart

Quote:
Originally Posted by qualiteam
That is true, the label will be invisible but still be present in the html code.
If the topic starter wants to remove it completely he can as well use the embedded webmaster mode.
Here's the article on how to use the webmaster mode.
https://kb.x-cart.com/look_and_feel/theme_tweaker/template_editor.html




A bit over my head to be honest. Tried using the code from the above post regarding the CSS, but still shows up in the footer ..
__________________
Business 5.3.3.7
Reply With Quote
  #7  
Old 08-04-2018, 11:05 AM
  James60's Avatar 
James60 James60 is offline
 

Advanced Member
  
Join Date: Aug 2014
Posts: 33
 

Default Re: Powered by X-Cart

Here is what shows in the Custom CSS & JS Area .. I have been adding the code to the bottom?


Code:
/** * Top menu main block styling */ .navbar-inverse { background-color: red; border-color: #44596f; } .navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus { color: #ffffff; background-color: #44596f; } .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus { color: #ffffff; background-color: #44596f; } /** * Main blocks of the sidebar (Top categories, Sale, New arrivals Recently viewed and so on) */ .sidebar div.block { padding: 0px; border-color: #bdd5eb; border-width: 2px; } /** * Header of the main blocks in the sidebar */ .sidebar .block .head-h2 { padding: 14px 20px 14px 20px; margin: 0px; border-color: #bdd5eb; border-radius: 5px; color: #5e6266; } /** * Content of the main blocks in the sidebar */ .sidebar div.block div.content { padding: 0px 20px 20px 20px; border-radius: 5px; } /** * Styles for the links inside the main blocks of the sidebar */ .sidebar ul.menu a { border-top: 1px solid #daedfc; } /** * Specific styles for the Top categories block in the side bar */ .sidebar div.block.block-product-filter div.content { padding: 0px 10px 20px 10px; } /** * Specific styles for the Top categories block in the side bar */ .sidebar .block.block-top-categories .head-h2 { background: #f7fcff; } .sidebar div.block.block-top-categories div.content { background: #f7fcff; } .sidebar div.block.block-top-categories div.content a { color: #6f9cd9; } /** * Header for specific side-bar box ("New arrivals" products) */ .sidebar .block.block-new-arrivals .head-h2 { border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; background: #f7fcff; background: -moz-linear-gradient(top, #f7fcff 0%, #d9edfc 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f7fcff), color-stop(100%,#d9edfc)); background: -webkit-linear-gradient(top, #f7fcff 0%,#d9edfc 100%); background: -o-linear-gradient(top, #f7fcff 0%,#d9edfc 100%); background: -ms-linear-gradient(top, #f7fcff 0%,#d9edfc 100%); background: linear-gradient(to bottom, #f7fcff 0%,#d9edfc 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7fcff', endColorstr='#d9edfc',GradientType=0 ); } /** * Price info block in the "New arrivals" product list in the side-bar box */ .sidebar .block.block-new-arrivals div.product-price { margin-top: 10px; } /** * Price info text in the "New arrivals" product list in the side-bar box */ .sidebar .block.block-new-arrivals .products-sidebar-small-thumbnails span.product-price { font-size: 26px; } /** * The last product element block in the New arrivals list */ .sidebar .block.block-new-arrivals ul.products-sidebar li.last { padding-bottom: 10px; } /** * The last element block in the New arrivals list (There is a link "All new products") */ .sidebar .block.block-new-arrivals ul.products-sidebar li:last-child { padding-bottom: 10px; }
__________________
Business 5.3.3.7
Reply With Quote
  #8  
Old 08-04-2018, 11:48 AM
  qualiteam's Avatar 
qualiteam qualiteam is offline
 

X-Guru
  
Join Date: Dec 2010
Posts: 6,373
 

Default Re: Powered by X-Cart

I'm pretty sure you can just erase the existing content.
__________________
Alex Solovev,
Qualiteam

---

User manual Video tutorials X-Cart FAQ

You are welcome to press "Thanks" button
if you find this post useful

Click here to learn how to apply patches

X-Cart Extensions
Reply With Quote

The following user thanks qualiteam for this useful post:
James60 (08-04-2018)
Reply
   X-Cart forums > X-Cart 5 > Dev Questions (X-Cart 5)


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -8. The time now is 08:08 AM.

   

 
X-Cart forums © 2001-2020