How do I upload multiple product images?
Loomis-Pay only supports one product image. If you want multiple images, you can upload them in Magento. Go to the product page in Magento and scroll to "Images and videos". Here you will see the image from Loomis-Pay as the main image, and you can upload multiple images. Remember to save after the images are uploaded.
How do I upload a video?
Magento supports YouTube videos on products. Full setup and user guides can be found in Magento's own documentation. https://docs.magento.com/user-guide/v2.3/catalog/product-video.html
How do I change banners on the front page?
Go to Panteon > Banner in Magento. Select the current store. In the list you will see all the banners that are used. Compare with the front page of your store to see where each of the images is used. Here you can upload new images and optionally enter a web address that the user is sent to when he clicks on the image.
B2C
Image1: 756x425px (displays large on the left)
Image2: 364x205px (displays small on the right, top)
Image3: 222x142px (displays small on the right, bottom)
B2B
The images for B2B are different whether a user is logged in or not.
Image1: 1170x480px
Image2: 300x410px (mobile view)
Image3: 1170x480px (shown to logged in user)
Image4: 300x410px (shown to logged in user, mobile view)
How do I edit text pages?
You can edit pages like terms and conditions, about us, etc. by logging into Magento and going to Content > Pages > Select Edit. Note that you must clear the cache for new text to be visible.
How do I add related products?
You can actually add related products in Magento. To do this, open the product page in Magento, go to "Related Products, Up-Sells, and Cross-Sells". See all the details in Magento's own documentation
https://docs.magento.com/user-guide/v2.3/catalog/settings-advanced-related-products.html
How do I get chat?
Magento supports several different chat solutions. Many people use Facebook's solution. To manage the setup, go to Magento admin -> Stores -> Facebook Chat. Here you enter your Page ID, color code and what message the user should see. The message can be different whether the user is logged in or not.
Caching
Magento has a very unique way of caching data. This is a logic you need to be familiar with when working with Magento. The cache is updated automatically as Magento is set up, but this can also be done manually if you want to push an update immediately. Go to System > Tools > Cache management to find the overview of caches. Select Flush Magento cache to clear all cache, or you can select just some of the lines to clear the cache of specific data. You can read more about best practices in Magento's own https://docs.magento.com/user-guide/v2.3/system/cache-management.html#best-practices-for-caching
Magento uses full-page caching on the server to quickly display category, product, and CMS pages. Full-page caching improves response time and reduces the load on the server. Without caching, each page might need to run blocks of code and retrieve information from the database. However, with full-page caching enabled, a fully-generated page can be read directly from the cache.
Cached content can be used to process the requests from similar types of visits. As a result, pages shown to a casual visitor might differ from those shown to a customer. For the purposes of caching, each visit is one of three types:
Non-sessioned - During a non-sessioned visit, a shopper views pages, but does not interact with the store. The system caches the content of each page viewed and serves them to other non-session shoppers.
Sessioned - During a sessioned visit, shoppers who interact with the store — through activities such as comparing products or adding products to the shopping cart — are assigned a session ID. Cached pages that are generated during the session are used only by that shopper during the session.
Customer - Customer sessions are created for those who have registered for an account with your store and shop while logged in to their accounts. During the session, customers can be presented with special offers, promotions, and prices that are based on their assigned customer group.
The Magento page cache library contains a simple PHP reverse proxy that enables full page caching out of the box. A reverse proxy acts as an intermediary between visitors and your application and can reduce the load on your server.