How to add (Download on The App Store) Button in nopCommerce?

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
5 years ago
I'm trying to add (Download on The App Store) buttons (for both the app store and google play) in my nopcommerce website footer? Any idea on how I can get it done?

5 years ago
Hello,

You will have to get the HTML of the button from Apple and Google websites.

For Apple Store: https://developer.apple.com/app-store/marketing/guidelines/#appstore

For Google Play: http://developer.android.com/distribute/tools/promote/brand.html

If you like you can hide them on desktop resolutions with CSS so that they appear only on mobile resolutions. For that you can add this code in your CSS:

@media all and (min-width: 1025px) {
the_name_of_the_button_class_or_id {
display: none;
}
}


I hope I could help,
Nikola.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.