-
Notifications
You must be signed in to change notification settings - Fork 7.3k
How to activate a fullPage.js extension
- Access https://alvarotrigo.com/fullPage/extensions/activationKey.html. (Which is the URL that was sent to your email address when purchasing the extension)
- Introduce the license key that was given to you when purchasing the item. Also in available in your purchase confirmation email.
- A domain name might be required in order to obtain the activation key for your product.
- Once you have the activation key for your extension and domain (generated on the previous steps) you'll need to add an option in the fullpage.js initialization with the form
nameOfExtension + "Key": key
.
For example:
new fullPage('#fullpage', {
fadingEffect: true,
fadingEffectKey: 'ACTIVATION KEY SHOULD BE HERE',
});
Same for the rest of extensions if you are using them. These are are all the extension key options at the moment:
fadingEffectKey
responsiveSlidesKey
continuousHorizontalKey
interlockedSlidesKey
scrollHorizontallyKey
resetSlidersKey
offsetSectionsKey
dragAndMoveKey
parallaxKey
Remember the use of extensions requires the use of fullpage.extensions.min.js
instead of the usual fullPage.js file (fullpage.js
) as explained in the use of extensions.
No activation key is necessary for localhost and 127.0.0.1. Any other staging domains will require a license (Professional or Business) that allows to generate a new key for those.
If you have a license that allows you to generate multiple activation keys you might want to use the same JS code for all of them. In this case you can use an array with the different keys for each domain, for example, if we are using the scrollHorizontally
extension for 3 domains, we can do the following:
new fullPage('#fullpage', {
scrollHorizontally: true,
scrollHorizontallyKey: ['domain1_key', 'domain2_key', 'domain3_key']
});
This way the extension can be used in any of those 3 domains.
Both are different keys.
- You get the license key when purchasing any extension.
- You get the activation key when activating your extension for a particular domain (unless using the Business License). In order to generate it you need the license key.
The license key is composed by 4 groups of 8 characters each (XXXXXXXX-XXXXXXXX-XXXXXXXX-XXXXXXXX
) and the activation key has a variable length and it is not composed by separated groups (XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
)
It is important not to confuse each other.