How do we move the carousel so it's under the slider

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

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...

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.

Show me the code of the file: includes/templates/"your-theme".catalog/pages/index.inc.php

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>

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].

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?

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?

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

@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

vmod

Bekijk de code op GitHub