2Checkout Payment Extension Magento Ошибка "href of undefined" prototype.js:612:64)
Я пытаюсь использовать 2Checkout Payment Extension Magento. Я получил ошибку при обработке платежа. Любой знает проблему.
prototype.js:828 Uncaught TypeError: Cannot set property 'href' of undefined
at eval (eval at <anonymous> (https://example.com/js/prototype/prototype.js:612:64), <anonymous>:4:55)
at https://example.com/js/prototype/prototype.js:612:64
at https://example.com/js/prototype/prototype.js:865:29
at https://example.com/js/prototype/prototype.js:825:18
at Array.forEach (native)
at Array.each (https://example.com/js/prototype/prototype.js:824:12)
at Array.collect (https://example.com/js/prototype/prototype.js:864:10)
at String.evalScripts (https://example.com/js/prototype/prototype.js:612:34)
at Function.<anonymous> (https://example.com/js/prototype/prototype.js:391:23)
at https://example.com/js/prototype/prototype.js:416:23
(anonymous) @ VM297:4
(anonymous) @ prototype.js:612
(anonymous) @ prototype.js:865
(anonymous) @ prototype.js:825
each @ prototype.js:824
collect @ prototype.js:864
evalScripts @ prototype.js:612
(anonymous) @ prototype.js:391
(anonymous) @ prototype.js:416
1 ответ
Решение
Наконец-то я исправил эту ошибку. Я изменил код в Observer.php. Он находится в / app / code / local / Craig / Tco / Model / Наблюдатель.php
под if (Mage::getStoreConfig('payment/tco/inline')
if ($$("a.top-link-cart")) { //old observer.php line 70
Я изменил это на
if ($$("a.top-link-cart").length) {
а также то же самое в другом
if ($$("a.top-link-cart")) {
в
if ($$("a.top-link-cart").length) {
Вы можете найти больше об этой ошибке на 2Checkout-Magento-Error