Need to add a couple of blocks in the Drupal UBERCAR shopping basket, in which file can I add the code?
1 answer
If you need to add to the step / cart - then through:hook_tapir_table_alter
orhook_form_alter
for form_id = 'uc_cart_view_form'
.
For step / cart / checkout:hook_uc_cart_checkout_review
or hook_form_uc_cart_checkout_form_alter
(immediately indicating the form, for example, as an alternative to the first option)
|