Jump to content

Looking for a module to show in client's page, my "Downloads".


Recommended Posts

I have a website selling digital products. Every time someone want to download a previous product, they need to write me asking for a new link . I would like the clients have in their page a place that show all their previous purchases with a link to download the product.

Is there any plugin for this or should I hire someone to make it?

Any advice will be very welcome. Thanks!!

D.

Link to comment
Share on other sites

  • 2 weeks later...

do not forget to hook this position from module hook position 

public function hookdisplayCustomerAccount($params){

	return $this->display(__FILE__, 'all-customer-downloads.tpl');
}

and in template i use 

<a class="col-lg-4 col-md-6 col-sm-6 col-xs-12" href="{$module_dir}alldownloads-page.php" > 
    <span class="link-item">
        <i class="material-icons">account_box</i>{l s='My downloads' mod='alldownloads'}
    </span>
</a>

Then it will look like 

 

Thank you

ps-mydownload-image.png

alldownloads.zip

Edited by SmartDataSoft (see edit history)
  • Like 1
  • Thanks 1
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...