I’m having issues locating and activating my theme...
# suitecommerce
j
I’m having issues locating and activating my theme under the Netsuite Extension Manager. I am editing my themes after doing the following Gulp commands: 1. gulp theme:deploy –create 2. Edit files 3. gulp theme:deploy Afterwards, I receive instructions that the deployment process is not yet finished. And that I have to go to the Extension Management Panel in Setup > SuiteCommerce Advanced > Extension Management. After doing so and selecting the proper website and domain, the theme I uploaded is nowhere to be found
s
The most obvious reason is because of a version mismatch
In your manifest you specify what versions the theme is compatible with and if your site doesn't qualify it will not show up
If you are working on 20.1, then you should set it to:
Copy code
target_version: {
SCA: ">=20.1.0",
SCS: ">=20.1.0"
},
Where
>=
means "this version or higher"
j
that solved the issue, thanks for your insight!