Jump to content

ps 1.7.4.2 customer footer links


ps2k11

Recommended Posts

Does anybody know where the customer links are in the footer ?

want to remove credit slips, useless to my site

can remove from account but not from footer

They are not in the link widgets, only products and shop, why ? its a mystery

does anybody use 1.7 ? very little info searching google, frustrating

Link to comment
Share on other sites

5 hours ago, Our origin said:

Can you stop all the negative comments here please? It is very annoying.

when I find solutions to problems

maybe if you had spent close to $600 trying to make ps 1.6 and 1.7 work better and still have problems you would have negative comments too. was able to get a partial refund from an addon that was causing problems, from another one wasn't able to, they couldnt fix it but by the time I found a problem it was too late to get refund.  had to get store manager because couldn't upload data in database. still having some things to fix but no solutions. now you know why negative comments. The demos on the addons are ok but until you install it you cannot really test it properly.

Edited by ps2k11
more info (see edit history)
Link to comment
Share on other sites

Hi, In Prestashop 1.7+

you can open file: modules\ps_customeraccountlinks\ps_customeraccountlinks.php

remove

 3 => array(
                'title' => $this->trans('Credit slips', array(), 'Modules.Customeraccountlinks.Admin'),
                'url' => $link->getPageLink('order-slip', true),
            ),

Link to comment
Share on other sites

14 hours ago, tdsoft said:

Hi, In Prestashop 1.7+

you can open file: modules\ps_customeraccountlinks\ps_customeraccountlinks.php

remove

 3 => array(
                'title' => $this->trans('Credit slips', array(), 'Modules.Customeraccountlinks.Admin'),
                'url' => $link->getPageLink('order-slip', true),
            ),

thank you, it works

Edited by ps2k11
change (see edit history)
Link to comment
Share on other sites

  • 9 months later...
On 9/20/2018 at 12:11 PM, tdsoft said:

Hi, In Prestashop 1.7+

you can open file: modules\ps_customeraccountlinks\ps_customeraccountlinks.php

remove

 3 => array(
                'title' => $this->trans('Credit slips', array(), 'Modules.Customeraccountlinks.Admin'),
                'url' => $link->getPageLink('order-slip', true),
            ),

Hi tdsoft,

where do i go at the dashboard to find this:  modules\ps_customeraccountlinks\ps_customeraccountlinks.php   ?

thank you

Link to comment
Share on other sites

9 hours ago, prana888 said:

Hi tdsoft,

where do i go at the dashboard to find this:  modules\ps_customeraccountlinks\ps_customeraccountlinks.php   ?

thank you

You can logged in with your FTP account or logged in your hosting >> go to Files Manager

Link to comment
Share on other sites

  • 9 months later...

How can i add new URL Link 

i want to add wish list page i've added the bellow code but it's not working 

just want to know is there any other file for containing the Url(s) list of all the links

 3 => array(
                'title' => $this->trans('My Wishlist', array(), 'Modules.Customeraccountlinks.Admin'),
                'url' => $link->getPageLink('mywishlist', true),
            ),

Link to comment
Share on other sites

  • 1 month later...

You also can go in your template file themes/YOURTHEME/modules/ps_customeraccountlinks/ps_customeraccountlinks.tpl

If you want to remove an item by key, for example, credit slips which is id 3 :

{foreach from=$my_account_urls item=my_account_url key=k}
        {if $k !== 3}
          <li>
            <a href="{$my_account_url.url}" title="{$my_account_url.title}" rel="nofollow">
              {$my_account_url.title}
            </a>
          </li>
        {/if}
    {/foreach}

you can also remove by title of link by doing {if $my_account_url.title !== "theTitleToRemove"}

  • Like 1
Link to comment
Share on other sites

  • 9 months later...

Hello,

this is clear and thanks for the instruction.

But what is when I want to add a href/link there?

e.x
- this removes the Credit Slip when I delete it:
3 => array(
                'title' => $this->trans('Credit slips', array(), 'Modules.Customeraccountlinks.Admin'),
                'url' => $link->getPageLink('order-slip', true),
            ),

- but how can I add another link?
for example: I want to add Password forgotten
3 => array(
                'title' => $this->trans('Password forgotten', array(), '????  which module or what to enter here???'),
                'url' => $link->getPageLink('????  which module or what to enter here???' true),
            ),

How to do this when I have a href instead of a module?

Would be great to know this.
Thanks

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...