Widget commands
Widget commands are a set of developer tools that let you preview and test the JS subscription widget. These commands let you change the widget template or preview the widget before publishing it in a store. Recharge is working to expand the functionality of widget commands, and we will continually update this article with new commands.
There are two ways to run widget commands:
Passing commands via query parameter
You can pass the command options via query parameter by appending the widget commands to the store URL.
Example with base product
https://mystore.com?rcTemplate=radio_group
Example with variant
https://mystore.com?variant=123455&rcTemplate=radio_group
Passing commands via console
- Open the browser JavaScript console
- Invoke the Recharge browser object and command module and pass in the template commands as arguments.
Example
window.ReChargeWidget.command('rcTemplate', ‘radio_group’);
Commands reference
Command | Description | Has console command? | Options |
---|---|---|---|
recharge | Displays the widget on a product display page (even if it is unpublished) | No | true |
rcTemplate | Changes the displayed template | No | radio , radio_group , 'button_group, checkbox` |
Updated over 1 year ago