There is an issue with the module.
E.R. After order submit, should redirect to netopia payment page
A.R. After order submit, loads a page .../netopia/payment/redirect/quote/1TtdiIXRjXy7R3BUX9qIGBBxEenPP22J_QT_1761554109246 with empty content block (other elements of the page are loaded: header, footer etc).
The problem:
Layout for redirect (netopia_payment_redirect.xml) should have correct template attribute format.
It should prefix with the module name.
Current, incorrect format:
<block class="Netopia\Netcard\Block\Redirect" name="redirect-Block" template="redirect.phtml"/>
Fixed , works:
<block class="Netopia\Netcard\Block\Redirect" name="redirect-Block" template="Netopia_Netcard::redirect.phtml"/>
Please fix issue so that we don't have to patch the code.
There is an issue with the module.
E.R. After order submit, should redirect to netopia payment page
A.R. After order submit, loads a page .../netopia/payment/redirect/quote/1TtdiIXRjXy7R3BUX9qIGBBxEenPP22J_QT_1761554109246 with empty content block (other elements of the page are loaded: header, footer etc).
The problem:
Layout for redirect (netopia_payment_redirect.xml) should have correct template attribute format.
It should prefix with the module name.
Current, incorrect format:
<block class="Netopia\Netcard\Block\Redirect" name="redirect-Block" template="redirect.phtml"/>Fixed , works:
<block class="Netopia\Netcard\Block\Redirect" name="redirect-Block" template="Netopia_Netcard::redirect.phtml"/>Please fix issue so that we don't have to patch the code.