...
Expand | ||
---|---|---|
| ||
After installing the plug in, it is time to set it up.
|
The IntelliCart plugin includes a dedicated frontpage.php
file that enables you to display the Products Catalog on the LMS system's homepage, whereas the default LMS file only allows placement on a sidebar. To make this file the primary one for the LMS, the client needs to configure the config
file by adding the following line:$CFG->customfrontpageinclude = __DIR__ . '/local/intellicart/catalog/frontpage.php';
Once this configuration is completed, the client will be able to display the Products Catalog as the main content on the LMS homepage, similar to how content is presented on the Dashboard.
Guest Checkout
The Guest Checkout allows customers to review products and form their cart without need to login. The sign up/in will be required only before payment (when guest clicks on Proceed to checkout button from the cart). After the sign up/in user will be linked to the Home page, so he would need to click on Proceed to checkout again. If you wish users to be navigated to the checkout page after login, you'll need to set up an IntelliCart Authentication in addition.NOTE: As a Products Catalog usually added on the Dashboard (URL ends with "/my" after main LMS URL), the link with "/my" should be provided to guests. E.g., https://moodle.intelliboard.net/my
...