X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Changing design (https://forum.x-cart.com/forumdisplay.php?f=51)
-   -   HOW TO REMOVE "Powered by X-Cart ecommerce shopping cart software" (https://forum.x-cart.com/showthread.php?t=50702)

thesaint_nexus 11-12-2009 11:13 PM

HOW TO REMOVE "Powered by X-Cart ecommerce shopping cart software"
 
Can anyone tell me how to remove "Powered by X-Cart ecommerce shopping cart software" from the bottom of my site?

Thanks.

pauldodman 11-13-2009 01:09 AM

Re: HOW TO REMOVE "Powered by X-Cart ecommerce shopping cart software"
 
Edit skin1/customer/bottom.tpl and remove:
<div class="left">{include file="main/prnotice.tpl"}</div>

thesaint_nexus 11-13-2009 01:30 AM

Re: HOW TO REMOVE "Powered by X-Cart ecommerce shopping cart software"
 
Quote:

Originally Posted by pauldodman
Edit skin1/customer/bottom.tpl and remove:
<div class="left">{include file="main/prnotice.tpl"}</div>

Problem Solved! :D Thanks dude!

balinor 11-13-2009 05:19 AM

Re: HOW TO REMOVE "Powered by X-Cart ecommerce shopping cart software"
 
FYI: http://forum.x-cart.com/showthread.php?t=20303

suseela 01-31-2013 03:01 AM

Re: HOW TO REMOVE "Powered by X-Cart ecommerce shopping cart software"
 
Thanks, i have removed powered by xcart ecommerce. I have little knowledge of html. However, just wanted to check with you, if done the right way.

Opened bottom.tpl. Xcart opens in editor. i simply selected <div class="left">{include file="main/prnotice.tpl"}</div> and deleted. Hope I have done this correctly.

pauldodman 01-31-2013 03:53 AM

Re: HOW TO REMOVE "Powered by X-Cart ecommerce shopping cart software"
 
Yes, that should do - just check your site/footer still looks ok and job done.

carpeperdiem 01-31-2013 06:03 AM

Re: HOW TO REMOVE "Powered by X-Cart ecommerce shopping cart software"
 
Quote:

Originally Posted by suseela
Thanks, i have removed powered by xcart ecommerce. I have little knowledge of html. However, just wanted to check with you, if done the right way.

Opened bottom.tpl. Xcart opens in editor. i simply selected <div class="left">{include file="main/prnotice.tpl"}</div> and deleted. Hope I have done this correctly.


2 suggestions:

1. instead of editing inside x-cart, you should seriously consider using an FTP client with integrated text editor.

2. Instead of deleting template code, it's always a good idea to comment the code out while testing - so you can easily restore if something doesn't work as expected. In a template file, to comment something out, surround the code with {* i want to comment all of this code out *}

so instead of deleting the prnotice.tpl include, it would looks like this:

Code:

{* <div class="left">{include file="main/prnotice.tpl"}</div> *}

Using comments helps you understand the edits you made - gives you an easier path to restore if need be, and in case someone else is looking at the code someday, the next person will see what you did (even if the next person is you!). It's very good practice to comment the daylights out of your code edits. You may remember what you did and why today, but come back in a year or 3 years -- WTF did I do that? Ah... it's commented.

There are different ways to comment templats (smarty) vs. php or html files. This method is for smarty templates (anything in x-cart that is .tpl)

HTH

J

suseela 01-31-2013 09:28 PM

Re: HOW TO REMOVE "Powered by X-Cart ecommerce shopping cart software"
 
Thanks much. I shall do that henceforth. Now i am looking at moving the social sharing buttons, which are at the bottom (in the same line of powered by xcart) to a top location.

Please help

suseela 01-31-2013 09:32 PM

Re: HOW TO REMOVE "Powered by X-Cart ecommerce shopping cart software"
 
also if can tell me a popular FTP client with integrated text editor...it would be great

cflsystems 02-01-2013 12:34 AM

Re: HOW TO REMOVE "Powered by X-Cart ecommerce shopping cart software"
 
You can use WinFTP, CuteFTP, Filezilla... there are number of FTP clients

kevfromwiganinlancashire 02-02-2013 01:53 PM

Re: HOW TO REMOVE "Powered by X-Cart ecommerce shopping cart software"
 
WiseFTP is another, I use it in SFTP, has a quick view and options to use own editor or external (but its paid for)

drheath 02-05-2013 03:11 PM

Re: HOW TO REMOVE "Powered by X-Cart ecommerce shopping cart software"
 
If you are a Mac user, Coda is light and fast and most importantly, intuitive. I've used several of the others mentioned, but I have found Coda to be my favorite by far. It is a pay app, but worth it.

carpeperdiem 02-05-2013 03:44 PM

Re: HOW TO REMOVE "Powered by X-Cart ecommerce shopping cart software"
 
Quote:

Originally Posted by drheath
If you are a Mac user, Coda is light and fast and most importantly, intuitive. I've used several of the others mentioned, but I have found Coda to be my favorite by far. It is a pay app, but worth it.


I love Coda, but... I am an old-school guy and I was never able to get my head around the Coda paradigm. I went back to Transmit w/ TextWrangler for day-to-day work. :-)

I still use Coda for css. It's pretty amazing.

suseela 02-06-2013 01:50 AM

Store front is visible to customers
 
My storefront is visible to customers even though the storefront is closed in the admn panel. Please help. What could be the reason?

typeav 08-21-2013 06:13 AM

Re: HOW TO REMOVE "Powered by X-Cart ecommerce shopping cart software"
 
It works, thanks!

neonrider 08-06-2017 04:27 PM

Re: HOW TO REMOVE "Powered by X-Cart ecommerce shopping cart software"
 
Quote:

Originally Posted by carpeperdiem
2 suggestions:

1. instead of editing inside x-cart, you should seriously consider using an FTP client with integrated text editor.

2. Instead of deleting template code, it's always a good idea to comment the code out while testing - so you can easily restore if something doesn't work as expected. In a template file, to comment something out, surround the code with {* i want to comment all of this code out *}

so instead of deleting the prnotice.tpl include, it would looks like this:

Code:

{* <div class="left">{include file="main/prnotice.tpl"}</div> *}

Using comments helps you understand the edits you made - gives you an easier path to restore if need be, and in case someone else is looking at the code someday, the next person will see what you did (even if the next person is you!). It's very good practice to comment the daylights out of your code edits. You may remember what you did and why today, but come back in a year or 3 years -- WTF did I do that? Ah... it's commented.

There are different ways to comment templats (smarty) vs. php or html files. This method is for smarty templates (anything in x-cart that is .tpl)

HTH

J


I commented my code out on X-cart 4.7.8 but it did not change anything:

{* <td class="Bottom" align="left">
{include

file="main/prnotice.tpl"}
</td>
*}

How do I EDIT the text (I am able to edit the URL within it) instead of commenting out or deleting it?

neonrider 08-06-2017 04:29 PM

Re: Store front is visible to customers
 
Quote:

Originally Posted by suseela
My storefront is visible to customers even though the storefront is closed in the admn panel. Please help. What could be the reason?


I had this problem too, with Firefox browser only. Cleared the cache, rebooted the PC and it stoped doing it, but sometimes it still happens. No one exactly knows why. I will call Ghostbusters.

neonrider 08-12-2017 06:38 PM

Re: HOW TO REMOVE "Powered by X-Cart ecommerce shopping cart software"
 
I EDITED it instead of removing. Found out by poking blindly on code. Here are the steps:

1. Admin >> Content >> Edit Templates

2. Go to: /common_files/main/prnotice.tpl

3. Replace {$sm_prnotice_txt} with your own text. Replace it everywhere including replacing the URL with yours.

4. Or you can comment it out (to hide it) like this:

{*{$sm_prnotice_txt}*}

{* comment this text or code out *}

By surrounding text or code by these:

{* *}

voodoo1967 12-04-2017 03:38 AM

Re: HOW TO REMOVE "Powered by X-Cart ecommerce shopping cart software"
 
This isnt available to me : I do not have that file,

I have a poweredby.tpl though - I have xcart gold 4.7.8 (paid for licence)

I would have thought this would be in the menu system AND disabled for licenced owners.

qualiteam 12-13-2017 11:47 PM

Re: HOW TO REMOVE "Powered by X-Cart ecommerce shopping cart software"
 
I've downloaded the most recent distributive pack for X-Cart v4.7.8, and there is skin/common_files/main/prnotice.tpl file.


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

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.