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 11-08-2021 01:36 PM

Re: X-Cart reBOOT (reDUX) Template
 
I moved the # of people purchased # of these to under the product image, works well.

Dougrun 11-08-2021 02:15 PM

Re: X-Cart reBOOT (reDUX) Template
 
I want to remove the Qty box and add to cart button from the Related items. I see its the simple_products_list.tpl but is there an easier way. I keep messing up the if/thens.



Also, i need a way to have it not show the price when hovering over an inline radio size. It defeats the MAP policy of showing "add to cart for price".



thanks.

PhilJ 11-10-2021 10:29 AM

Re: X-Cart reBOOT (reDUX) Template
 
@ Doug, try this.

Dougrun 11-10-2021 10:42 AM

Re: X-Cart reBOOT (reDUX) Template
 
thanks, seems to work!

PhilJ 11-10-2021 10:50 AM

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

What is the best way to transfer all the modified reboot database config/languages settings over to my live store?

@Vulcan, not been asked that before, but it's certainly possible.

For template settings (x-cart config entries), you could use PHPMyAdmin to search for the reboot settings with the following SQL...
Code:

SELECT * FROM `xcart_config` WHERE `name` LIKE '%reboot_%' LIMIT 9999;

Then export the results/entries found which will give you an SQL file... note that you'll only need the SQL code between...
Code:

--
-- Dumping data for table `xcart_config`
--


And..
Code:

--
-- Indexes for dumped tables
--

In that SQL code, replace...
Code:

INSERT INTO `xcart_config` (`name`, `comment`, `value`, `category`, `orderby`, `type`, `defvalue`, `variants`, `validation`, `signature`) VALUES

With...
Code:

REPLACE INTO `xcart_config` (`name`, `comment`, `value`, `category`, `orderby`, `type`, `defvalue`, `variants`, `validation`, `signature`) VALUES

I would recommend making a DB backup of your destination site before applying the SQL to it.

Languages are trickier, as not all language entry names contain the word "reboot", but you could export all language entries from your source site to CSV, and import them back into the destination site.

vulcan-works 11-14-2021 06:58 PM

Re: X-Cart reBOOT (reDUX) Template
 
That is what I ended up doing after I realized the config entries had reboot in the name.

Also, how come this template is not compatible with paypal express checkout?
Did not realize this until after I enabled it on my live store.

PhilJ 11-15-2021 12:30 AM

Re: X-Cart reBOOT (reDUX) Template
 
It is compatible with PP Express, we just don't recommend using it (search the forum).

Dougrun 11-15-2021 10:08 AM

Re: X-Cart reBOOT (reDUX) Template
 
Is there any way to set a maximum qty for an item?

PhilJ 11-16-2021 12:35 AM

Re: X-Cart reBOOT (reDUX) Template
 
@ Doug, maximum quantities was added Sept 8th - Demo products.

It's wasn't totally effective, so I've added some extra code this morning, which will be available later on today.

Dougrun 11-16-2021 08:12 AM

Re: X-Cart reBOOT (reDUX) Template
 
I can't find where to enable the max qty option. its not in settings anywhere.


All times are GMT -8. The time now is 07:38 AM.

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