Как отключить оформление заказа в Joomla 1.7? - PullRequest
1 голос
/ 09 февраля 2012

Как отключить функцию оформления заказа.Это довольно бесполезно в моем случае, и единственный способ проверить это с бэкэнда.OpenGlobal не работал.

Ответы [ 2 ]

1 голос
/ 13 февраля 2012

Вы можете сделать это самостоятельно в бэкэнде: отредактируйте файл библиотеки / joomla / application / component / controllerform.php

отметьте следующие строки, как я это сделал:

     // Attempt to check-out the new record for editing and redirect.
/*      if ($checkin && !$model->checkout($recordId)) {
                // Check-out failed, display a notice but allow the user to see the record.
                $this->setError(JText::sprintf('JLIB_APPLICATION_ERROR_CHECKOUT_FAILED', $model->getError()));
                $this->setMessage($this->getError(), 'error');
                $this->setRedirect('index.php?option='.$this->option.'&view='.$this->view_item.$this->getRedirectToItemAppend($recordId, $urlVar));

                return false;
        }
        else {*/
                // Check-out succeeded, push the new record id into the session.
                $this->holdEditId($context, $recordId);
                $app->setUserState($context.'.data', null);
                $this->setRedirect('index.php?option='.$this->option.'&view='.$this->view_item.$this->getRedirectToItemAppend($recordId, $urlVar));

                return true;
//      }
}
0 голосов
/ 25 июня 2013

А как насчет плагина Autocheckin для Joomla 2.5? Похоже, работает на Joomla 3.0, а также. Может быть, для 1,7 тоже.

http://www.joomlaplugin.org/autocheckin-plugin/

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...