• This is specifically related to the Marketing Widget -> Display on product page feature – I have not tested with any other widget, tagline or banner locations.

    Could you please add a priority to the add_action line in \includes\class-wc-zipmoney-payment-gateway-widget.php line: 128 as suggested below:

    add_action('woocommerce_single_product_summary', array($this, 'render_widget_product'));

    change to

    add_action('woocommerce_single_product_summary', array($this, 'render_widget_product'), 15);

    Purpose: I have a requirement for additional information to be displayed between the price and the ZIP widget. Without the priority being set I was unable to achieve this. Adding the priority as 15 allows the ability to add additional actions between displaying the price and the ZIP widget.

  • The topic ‘Marketing Widget Priority’ is closed to new replies.