danshea LiteCart Fan از کشور United States عضو از فوریه 2024 danshea 22 مارس 2024 16:07 Good Morning, How do we move the carousel so that it is under the slider instead of the bottom of the page? Thanks in Advance, Dan
jackmaessen LiteCart Fan از کشور Netherlands عضو از دسامبر 2022 jackmaessen 22 مارس 2024 23:21 in the vmod, file: [b]includes/templates/*.catalog/pages/index.inc.php[/b] There you can see all the boxes which are present at the homepage. At the right side, you can see: <?php include vmod::check(FS_DIR_APP . 'includes/boxes/box_latest_products.inc.php'); ?> That means: under this box, the carousel will be visible. Change this line to another line you can see on the left side...
danshea LiteCart Fan از کشور United States عضو از فوریه 2024 danshea 23 مارس 2024 15:42 Hi Jack, I don't see the carousel in that file. The carousel is working on tsmparts.net , but it must be the theme we are using.
jackmaessen LiteCart Fan از کشور Netherlands عضو از دسامبر 2022 jackmaessen 24 مارس 2024 09:33 Show me the code of the file: includes/templates/"your-theme".catalog/pages/index.inc.php
danshea LiteCart Fan از کشور United States عضو از فوریه 2024 danshea 24 مارس 2024 14:30 Here ya go Jack. <div id="content"> <?php include vmod::check(FS_DIR_TEMPLATE . 'views/modal.inc.php'); ?> <?php include vmod::check(FS_DIR_TEMPLATE . 'views/sale_banners.inc.php'); ?> <?php include vmod::check(FS_DIR_APP . 'includes/boxes/box_categories.inc.php'); ?> <?php include vmod::check(FS_DIR_TEMPLATE . 'views/banners.inc.php'); ?> <?php include vmod::check(FS_DIR_APP . 'includes/boxes/box_campaign_products.inc.php'); ?> <?php include vmod::check(FS_DIR_APP . 'includes/boxes/box_featured_category.inc.php'); ?> <?php include vmod::check(FS_DIR_APP . 'includes/boxes/box_popular_products.inc.php'); ?> <?php include vmod::check(FS_DIR_APP . 'includes/boxes/box_latest_products.inc.php'); ?> <?php include vmod::check(FS_DIR_TEMPLATE . 'views/about.inc.php'); ?> </div>
jackmaessen LiteCart Fan از کشور Netherlands عضو از دسامبر 2022 jackmaessen 24 مارس 2024 16:03 Look below image of the vmod (this is my vmod): [img=1000x560]https://develop2301.izzys.nl/images/test/snapvmod.jpg[/img] Above is my code on the left side, you have other code. On the left side is the code which generates the sequence of the boxes for the homepage( slider. categories, popular products, latest products and so on....) Find in your code on the left side the the box under which you want the carousel to appear. Example: if you want to appear the carousel under the slider, then fill in on the right side under Find: <?php include vmod::check(FS_DIR_APP . 'includes/boxes/box_slides.inc.php'); ?> The vmod will place the code under [i]Insert[/i] virtually after the code under [i]Find[/i].
adamchaczka LiteCart Fan از کشور Poland عضو از اکتبر 2023 adamchaczka 18 نوامبر 2024 14:17 Jackmaessen You have a great effect on the page. This is f.....g awesome and it doesn't slow down the site much How did you make those falling snowflakes? By the way, does anyone know how to make the banner appear not only on the main page but on all subpages for the selected language?
jackmaessen LiteCart Fan از کشور Netherlands عضو از دسامبر 2022 jackmaessen 18 نوامبر 2024 19:31 in file "includes/templates/*.catalog/layouts/default.inc.php" add <script src="https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.3/modernizr.js"></script> <link rel="stylesheet" href="<?php echo document::href_rlink(FS_DIR_APP . 'ext/christmas/snowflakes.css'); ?>" /> Then in folder ext: create a folder christmas and put snowflakes.css in it (attachment) Which banner do you mean? snowflakes.zip
adamchaczka LiteCart Fan از کشور Poland عضو از اکتبر 2023 adamchaczka 21 نوامبر 2024 08:31 Thank You jackmaessen for the tip on making snowflakes :D I mean slider on the main page. I would like to add a separate banner that would be displayed on the blog, product and product category pages. I want to place information about current promotional campaigns on this banner, such as Black Friday obviously, I don't want it on the shopping cart page, purchase confirmation page, etc. I really miss a slider that follows the customer, which can be linked to any page
jackmaessen LiteCart Fan از کشور Netherlands عضو از دسامبر 2022 jackmaessen 25 نوامبر 2024 18:23 @adamchaczka I created a new main slider which i think you can use. I created in the vmod this for page "categories".In the vmod, do this for all pages where you want to appear the slider slider2.zip