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 - Responsive Template (https://forum.x-cart.com/showthread.php?t=66570)

jmccunep 05-23-2018 09:27 AM

Re: X-Cart - reBOOT - Responsive Template
 
Quote:

Originally Posted by PhilJ
Hiya, GDPR files attached for reBOOT v4.7.9. Get the GDPR module files for your version here.

Any problems, please let me know.

Always a good idea to get yourself a decent file comparison tool - KDiff - WinMerge - Beyond Compare - etc.

Thanks for your patience re. reDUX, temporary demo here.


Our store sells ONLY to be shipped to customers within the US.

A customer from outside US however could order from us, for items to be shipped within the US.

So, must we still conform to GDPR in this situation?

mcupka 05-23-2018 10:15 AM

Re: X-Cart - reBOOT - Responsive Template
 
Quote:

Originally Posted by jmccunep
Our store sells ONLY to be shipped to customers within the US.

A customer from outside US however could order from us, for items to be shipped within the US.

So, must we still conform to GDPR in this situation?

Not unless they are buying from the EU. In that case I'd set up location tracking and make an {if} statement based on that to include GDPR compliance for only those customers.

Hope that helps a little bit.

mcupka 05-23-2018 10:17 AM

Re: X-Cart - reBOOT - Responsive Template
 
"A major change made by the GDPR is the territorial scope of the new law. The GDPR replaces the 1995 EU Data Protection Directive which generally did not regulate businesses based outside the EU. However, now even if a US-based business has no employees or offices within the boundaries of the EU, the GDPR may still apply.

Under Article 3 of the GDPR, your company is subject to the new law if it processes personal data of an individual residing in the EU when the data is accessed. This is the case where the processing relates to the offering of good or services or the monitoring of behavior that takes place in the EU.

Thus, the GDPR can apply even if no financial transaction occurs. For example, if your organization is a US company with an Internet presence, selling or marketing products over the Web, or even merely offering a marketing survey globally, you may be subject to the GDPR. That said, general global marketing does not usually apply. If you use Google Adwords and a French resident stumbles upon your webpage, the GDPR likely would not apply to the company solely on that basis. If, however, your website pursues EU residents – accepts the currency of an EU country, has a domain suffix for an EU country, offers shipping services to an EU country, provides translation in the language of an EU country, or markets in the language of an EU country, the GDPR will apply to your company. Likewise, if your company is engaged in monitoring the behavior of EU residents (e.g. tracking and collecting information about EU users to predict their online behavior), the GDPR likely will apply to your company.

US-based companies with no physical presence in the EU, but in industries such as e-commerce, logistics, software services, travel and hospitality with business in the EU should already be in the process of ensuring GDPR compliance. However, all US-based companies, especially those with a strong Internet presence, should assess whether their business activity falls within the territorial scope of the GDPR."

elmirage001 05-23-2018 01:52 PM

Re: X-Cart - reBOOT - Responsive Template
 
We tried to find a way to opt out but there is none. Phil has made it easy for reBOOT to work with the X-Cart GPDR mod.

Everyone should read Chapter 8 of the GDPR regulations.
https://gdpr-info.eu/chapter-8/

jmccunep 06-18-2018 07:39 AM

Re: X-Cart - reBOOT - Responsive Template
 
TESTIMONIALS. Testmonials work fine on my site, with latest x-cart 4.x and latest reBOOT template matching the x-cart version.

How to change WHICH testimonials are displayed on the front end?

How to change HOW MANY testimonials are displayed on the front end in the rotator, if that can be done at all?

Possible changes to this template mentioned on your site's FAQ don't appear to offer any help:

Testimonials Rotator - skin/reboot/custom/footer/footer_content_TR.tpl

PhilJ 06-18-2018 07:56 AM

Re: X-Cart - reBOOT - Responsive Template
 
They're random, with a limit of 5 by default. See reboot_get_testimonials.php

If you'd prefer the most recent displayed, with a limit of 10, replace...
Code:

$qry = "SELECT * FROM reboot_testimonials WHERE approved='Y' ORDER BY RAND() LIMIT 5";
With...
Code:

$qry = "SELECT * FROM reboot_testimonials WHERE approved='Y' ORDER BY added DESC LIMIT 10";
If you only want 10 star reviews displayed, use...
Code:

$qry = "SELECT * FROM reboot_testimonials WHERE approved='Y' AND rating='10' ORDER BY added DESC LIMIT 10";

floracal 07-04-2018 12:58 PM

Re: X-Cart - reBOOT - Responsive Template
 
Hi PhilJ,

Upgraded to reBoot 4.7.9 and would like to Auto expand all submenus like in your older version.

Thanks

PhilJ 07-05-2018 03:53 AM

Re: X-Cart - reBOOT - Responsive Template
 
Quote:

Upgraded to reBoot 4.7.9 and would like to Auto expand all submenus like in your older version.
In skin/reboot/custom/menus/sidebar_category_menu.tpl

Replace...
Quote:

<div id="cat_{$c.categoryid}" class="panel-collapse collapse">
With...
Quote:

<div id="cat_{$c.categoryid}" class="panel-collapse collapse in">

ITVV 07-25-2018 08:23 AM

Re: X-Cart - reBOOT - Responsive Template
 
Hi Phil,

Is there any easy hack to: -

a/ have the “submit” button on Login form deactivated by default
b/ Activate the “submit” button when an ‘@’ is inserted into the login email field (ajax?)

The reason I ask is that we are getting tons of failed login attempts because someone is just entering random names like: -

Lyndonexilk
LindaDax
SeoRob

If the form did a ‘simple’ check to make sure the ‘@’ is there and then activated the submit button this may be better and stop the idiots?

Many thanks as always

Kind regards

ITVV

PhilJ 07-27-2018 10:08 AM

Re: X-Cart - reBOOT - Responsive Template
 
Hi ITVV, in the login form, you could change the email input field from type="text" to type="email". Then it'll validate better.


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

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