X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Third Party Add-Ons for X-Cart 4 (https://forum.x-cart.com/forumdisplay.php?f=45)
-   -   X-Cart reBOOT (reDUX) Template (https://forum.x-cart.com/showthread.php?t=77655)

Dougrun 10-06-2022 08:32 AM

Re: X-Cart reBOOT (reDUX) Template
 
Quote:

Originally Posted by PhilJ
Adjust the CSS class in /skin/reboot/css/reboot.css




nevrmind, i found it.

Dougrun 10-06-2022 08:37 AM

Re: X-Cart reBOOT (reDUX) Template
 
nevermind, found it in subcategories.tpl

sinobest 10-06-2022 07:38 PM

Re: X-Cart reBOOT (reDUX) Template
 
how to remove the second category description title, pls?

PhilJ 10-06-2022 11:20 PM

Re: X-Cart reBOOT (reDUX) Template
 
Edit /skin/reboot/customer/main/subcategories.tpl

Replace the code at the bottom with... (additional code highlighted in red)
Code:

{if $current_category.seo ne "" && $config.Reboot.reboot_category_descr_2 ne ""}
  {if $config.Reboot.reboot_category_descr_2 eq "default"}
    {include file="customer/main/subcategory_descr.tpl" field=$current_category.seo br=true nodialog=true}
  {elseif $config.Reboot.reboot_category_descr_2 eq "truncated"}
    {include file="customer/main/subcategory_descr.tpl" field=$current_category.seo truncate=500 br=true nodialog=true}
  {elseif $config.Reboot.reboot_category_descr_2 eq "scroller"}
    {include file="customer/main/subcategory_descr.tpl" field=$current_category.seo scroller=300 nofade=false br=true nodialog=true}
    {/if}
{/if}

See also template settings > catalog > "Category description 2" to change display type.

sinobest 10-07-2022 07:23 AM

Re: X-Cart reBOOT (reDUX) Template
 
By default, each row displays 6 products on the categories page, how to only display 3 on the desktop, pls?

PhilJ 10-07-2022 08:35 AM

Re: X-Cart reBOOT (reDUX) Template
 
Assuming you're set the template settings > catalog > Products display to "Switchable Grid"

You set the columns in /skin/reboot/js/reboot.js

You can adjust the col-x-x values

Code:

    if ($('#body-container').hasClass('container-fluid')){  <----- Meaning the layout is set to full width
        if (has_sidebar){
            $list_cols = 'col-'+p_cols_mob+' col-sm-6 col-md-6 col-lg-6 col-xl-4 col-xxl-3';
        } else {
            $list_cols = 'col-'+p_cols_mob+' col-sm-6 col-md-6 col-lg-4 col-xl-3 col-xxl--5 col-xxxl--2';
        }
    } else {
        if (has_sidebar){
            $list_cols = 'col-'+p_cols_mob+' col-sm-6 col-md-6 col-lg-6 col-xl-4';
        } else {
            $list_cols = 'col-'+p_cols_mob+' col-sm-6 col-md-6 col-lg-4 col-xl-3';
        }
    }



If you've set the template settings > catalog > Products display to "Masonry"

You can change the columns by editing /skin/reboot/customer/main/products_t.tpl

Code:

{assign var="masonry_cols" value="col-12 col-sm-6 col-md-3 col-md-4 col-lg-4 col-xl-4"}
Info at https://getbootstrap.com/docs/4.6/layout/grid/

sinobest 10-07-2022 03:12 PM

Re: X-Cart reBOOT (reDUX) Template
 
https://www.helloeyewear.com/


when i enable 'New Arrivals' module, the footer will not display properly.

sinobest 10-07-2022 05:22 PM

Re: X-Cart reBOOT (reDUX) Template
 
https://www.helloeyewear.com/meridian-tortoiseshyell-eyeglasses/
Related Products is too small.


How to change related product image size, pls?
how to set 3 products per row as product list, pls

jmccunep 11-11-2022 02:24 PM

Re: X-Cart reBOOT (reDUX) Template
 
How to upgrade from Google Universal Analytics to Google Analytics 4.0?

My site is running reBOOT (should be up-to-date) on x-cart 4.7.11.

Under skin/common_files/modules/Google_Analytics I find the following 3 template files:

ga_code.tpl
ga_code_async.tpl
ga_code_universal.tpl

Dougrun 11-11-2022 02:57 PM

Re: X-Cart reBOOT (reDUX) Template
 
Quote:

Originally Posted by jmccunep
How to upgrade from Google Universal Analytics to Google Analytics 4.0?

My site is running reBOOT (should be up-to-date) on x-cart 4.7.11.

Under skin/common_files/modules/Google_Analytics I find the following 3 template files:

ga_code.tpl
ga_code_async.tpl
ga_code_universal.tpl





start reading here:

https://forum.x-cart.com/showpost.php?p=416682&postcount=18


All times are GMT -8. The time now is 03:20 AM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.