When this module is configured on a website scope that module does not work.
Solution: respect store view scopes in app/code/Netopia/Netcard/Block/Redirect.php
code is:
public function getConfigData($field)
{
$str = 'payment/net_card/'.$field;
return $this->_scopeConfig->getValue($str);
}
should be:
public function getConfigData($field)
{
$str = 'payment/net_card/'.$field;
return $this->_scopeConfig->getValue($str, \Magento\Store\Model\ScopeInterface::SCOPE_STORE);
}
When this module is configured on a website scope that module does not work.
Solution: respect store view scopes in app/code/Netopia/Netcard/Block/Redirect.php
code is:
public function getConfigData($field)
{
$str = 'payment/net_card/'.$field;
return $this->_scopeConfig->getValue($str);
}
should be: