My_Account_Links_Advanced.tpl

On the footer menu, i want "my reward points" to be shown in "my account list".
Below is the templates / blocks / static_templates / my_account_links_advanced.tpl
How should i edit it?
{if $auth.user_id}
  • {__("orders")}
  • {__("profile_details")}
  • {else}
  • {__("sign_in")}
  • {__("create_account")}
  • {/if}

    How I would do it is to first add an SEO name for reward-points. Use this query in phpMyAdmin

    REPLACE INTO ?:seo_names SET name='reward-points', object_id=0, company_id=1, type='s',  dispatch='reward_points.userlog', lang_code='en'

    Note that company_id and lang_code may be different for your environment.

    Then above the line that looks like:

  • {__("orders")}

  • Insert a line of:

  • {__("reward_points")}
  • You can skip the adding of the SEO name if you want. But it makes it easier for a customer to remember how to get there.

    How I would do it is to first add an SEO name for reward-points. Use this query in phpMyAdmin

    REPLACE INTO ?:seo_names SET name='reward-points', object_id=0, company_id=1, type='s',  dispatch='reward_points.userlog', lang_code='en'

    Note that it can be also done from the Website -> SEO -> SEO rules page in the admin panel

    Thank you both!