This is where LiteCart themes shine for the right audience.
Step 1: Copy the default theme
Rename it to your new theme name, e.g., mytheme:
cp -r public_html/sites/default public_html/sites/mytheme
Step 2: Update theme metadata
Edit public_html/sites/mytheme/theme.inc.php and change: litecart themes
define('THEME_NAME', 'My Custom Theme');
define('THEME_AUTHOR', 'Your Name');
define('THEME_WEBSITE', 'https://yoursite.com');
Step 3: Select your theme in Admin
Go to Settings → Appearance in LiteCart admin panel, choose your new theme.
Step 4: Enable development mode (optional)
In includes/config.inc.php: This is where LiteCart themes shine for the right audience
define('DEVELOPMENT_MODE', true);
This disables template caching for real-time edits.
LiteCart’s default skin is built on Bootstrap. Most third-party themes rely on this framework as well. Step 3: Select your theme in Admin Go
Finding official themes requires knowing the right communities. Here are the best sources:
| Problem | Solution |
| :--- | :--- |
| Images not displaying | Check file paths. Theme images should be in /ext/your_theme/images/ |
| Broken layout after update | Clear LiteCart cache and browser cache |
| Checkout page looks wrong | Verify that your theme includes pages/checkout.inc.php – fall back to default if missing |
| Slow loading | Disable unnecessary theme features like sliders or use a CDN for images |