Question

How to make "Weekly backup" the default selection on PACI screen in the on-line store?

Answer

Standard PBA functionality like 'Sort Order' of the resource rates, including the resources to a special category with the default resource will not work for PACI resources, there is a feature request to #PBA-53130 to add an easy way of setting the resource priorities.

It is possible to achieve the desired result with the layout template modification:

  1. Home> Products> Online Store> Layout Templates > c2u_other_resources

    replace

    {if $state->resConfiguration[$resClass.id] === $resOption.id}
    selected
    {assign var='resOptionDefault' value=$resOption.id}
    {/if}
    

    with

    {if $resClass.id=='backup'}
    <option value="Weekly" selected> {$resOption.title}</option>
    {assign var='resOptionDefault' value=$resOption.id}
    {elseif $state->resConfiguration[$resClass.id] === $resOption.id}
    selected
    {assign var='resOptionDefault' value=$resOption.id}
    {/if}
    
  2. Synchronize the store for changes to apply:

    Home> Products> Online Store

    Synchronize Now

Internal content