Page 1 of 1

How do I remove links in Account Column Right in OpenCart 3.0.2.0 ?

Posted: Thu May 03, 2018 7:10 pm
by saleh411
Hello there,

Using 3.0.2.0

How do I remove the links from the column right in the account area?

I want to remove these:
Downloads
Recurring Payment

Hope somebody can help!

Re: How do I remove links in Account Column Right in OpenCart 3.0.2.0 ?

Posted: Thu May 03, 2018 9:21 pm
by DigitCart
Hi,

For default theme, in this file:

Code: Select all

catalog\view\theme\default\template\extension\module\account.twig
Remove:

Code: Select all

<a href="{{ download }}" class="list-group-item">{{ text_download }}</a><a href="{{ recurring }}" class="list-group-item">{{ text_recurring }}</a> 
Then clear your caches.

Re: How do I remove links in Account Column Right in OpenCart 3.0.2.0 ?

Posted: Fri May 04, 2018 6:01 am
by saleh411
Thank you for your reply.
i did your solution(removing th e code and clearing caches) but it is not working. the links still shown.
is there a solution ?

Re: How do I remove links in Account Column Right in OpenCart 3.0.2.0 ?

Posted: Fri May 04, 2018 1:00 pm
by DigitCart
Hi,
if you're using a custom theme, do the same for your theme.
Make sure you've cleared your caches. (twig cache, modifications).

Re: How do I remove links in Account Column Right in OpenCart 3.0.2.0 ?

Posted: Fri May 04, 2018 6:42 pm
by saleh411
Thank you for your reply.

i dont have custome theme. but i cleared the browser caches , how do i clear (twig cache, modifications)?

Re: How do I remove links in Account Column Right in OpenCart 3.0.2.0 ?

Posted: Fri May 04, 2018 7:10 pm
by DigitCart
For twig:
https://stackoverflow.com/questions/452 ... opencart-3

For Modifications:
Go to extensions / modifications / click refresh icon.

Re: How do I remove links in Account Column Right in OpenCart 3.0.2.0 ?

Posted: Sat May 05, 2018 3:32 pm
by saleh411
Thank you very much it is working good.

Re: How do I remove links in Account Column Right in OpenCart 3.0.2.0 ?

Posted: Sat May 05, 2018 3:36 pm
by DigitCart
You're welcome!

Re: How do I remove links in Account Column Right in OpenCart 3.0.2.0 ?

Posted: Sat May 05, 2018 5:18 pm
by saleh411
how can I remove it from the same page (account page) at the left side ?

Re: How do I remove links in Account Column Right in OpenCart 3.0.2.0 ?

Posted: Sat May 05, 2018 5:35 pm
by DigitCart
Edit this file:

Code: Select all

catalog\view\theme\default\template\account\account.twig

Re: How do I remove links in Account Column Right in OpenCart 3.0.2.0 ?

Posted: Sat May 05, 2018 5:50 pm
by saleh411
Thank you very much it is working good. you are really expert.

Re: How do I remove links in Account Column Right in OpenCart 3.0.2.0 ?

Posted: Sat May 05, 2018 11:19 pm
by viethemes
You may like my extension Visual Theme Editor to hide these links :)

Re: How do I remove links in Account Column Right in OpenCart 3.0.2.0 ?

Posted: Sun May 06, 2018 12:33 am
by saleh411
Great works