Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Expand
titleIntelliCart Plug Set Up

After installing the plug in, it is time to set it up.

  1. Go to Site Administration > Plugins > Blocks > Manage Blocks.

    Make sure "Products Catalog" is enabled.

    image-20240513-162624.png

  2. Go to Site Administration > Plugins > Enrollments > Manage enrol plugins.

    Make sure "IntelliCart enrollments" is enabled.

    image-20240513-162638.png

  3. Go to Site Administration > Plugins > Local plugins > IntelliCart > License.

    Double check to see if your license saved.

    NOTE: Click on "Save changes" for being sure.

    image-20240513-162658.png

  4. Go to Site Administration > Appearance > Default Dashboard page.

    Click on "Blocks editing on" button in the top right corner.

    Click on "Add a block" in the nav menu and select "Products Catalog".

    image-20240513-162717.png

  5. On the appeared block click on the arrow and select "Configure Available Products block".

    image-20240513-162732.png

  6. From the "Default region" drop-down select "content" option.

    From the "Region" drop-down select "content" option.

    Click on "Save changes".

    image-20240513-162748.png

  7. Click on "Reset Dashboard for all users" button in the top right corner.

    Then click on "Blocks editing off" button.

    image-20240513-162804.png

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

...