Ranking Widget

Add this where you want the widget to appear:

<!-- ranking engine -->
<pleasepoint-recommendation
        account-id="my_account_id"
        num-recommendations="4"
        cols="2"
        show-slider <!-- optional, default false -->
        ranking-engine=""
        business-rule=""
        business-rule-params='{"param1": ["value1", "value2"]}' <!-- optional -->
        user-reference-id="" <!-- OR --> email=""
        session-id="" <!-- optional -->
        product-list="prod1,prod2"
        event-source-page="" <!-- optional -->
        event-source-block="" <!-- optional -->
></pleasepoint-recommendation>

Or use the following Javascript code to create a widget programmatically:

// item-item engine
const widget = pleasepointWidget.create('recommendation', {
    accountId: 'my_account_id',
    numRecommendations: 4,
    cols: 2,
    showSlider: true, // optional, default false
    itemItemEngine: '',
    businessRule: '',
    businessRuleParams: {"param1": ["value1", "value2"]}, // optional
    productReferenceId: '',
    userReferenceId: '', /* OR */ email: '', // both optional
    sessionId: '', // optional
    eventSourcePage: '', // optional
    eventSourceBlock: '', // optional
});