Follow us on Twitter X-Cart on Facebook Wiki
Shopping cart software Solutions for online shops and malls

X-Cart - reBOOT - Responsive Template

 
Reply
   X-Cart forums > X-Cart 4 > Third Party Add-Ons for X-Cart 4
 
Thread Tools
  #1331  
Old 05-23-2018, 09:27 AM
 
jmccunep jmccunep is offline
 

Advanced Member
  
Join Date: Nov 2003
Posts: 68
 

Default 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?
__________________
J McCune Porter | twinoakshammocks.com
X-Cart Gold version 4.7.11, unix server
X-Cart reBOOT Template by X-Cart Mods
Reply With Quote
  #1332  
Old 05-23-2018, 10:15 AM
 
mcupka mcupka is offline
 

eXpert
  
Join Date: Jan 2013
Posts: 204
 

Default 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.
Reply With Quote
  #1333  
Old 05-23-2018, 10:17 AM
 
mcupka mcupka is offline
 

eXpert
  
Join Date: Jan 2013
Posts: 204
 

Default 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."
Reply With Quote

The following user thanks mcupka for this useful post:
elmirage001 (05-23-2018)
  #1334  
Old 05-23-2018, 01:52 PM
 
elmirage001 elmirage001 is offline
 

X-Wizard
  
Join Date: Apr 2007
Posts: 1,964
 

Default 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/
__________________
X-Cart GoldPlus v4.7.12 | reBOOT (reDUX) Template v4.7.12.9 | Always The Best
Reply With Quote

The following user thanks elmirage001 for this useful post:
mcupka (05-24-2018)
  #1335  
Old 06-18-2018, 07:39 AM
 
jmccunep jmccunep is offline
 

Advanced Member
  
Join Date: Nov 2003
Posts: 68
 

Default 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
__________________
J McCune Porter | twinoakshammocks.com
X-Cart Gold version 4.7.11, unix server
X-Cart reBOOT Template by X-Cart Mods
Reply With Quote
  #1336  
Old 06-18-2018, 07:56 AM
 
PhilJ PhilJ is offline
 

X-Guru
  
Join Date: Nov 2002
Posts: 4,094
 

Default 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";
__________________
xcartmods.co.uk
Reply With Quote

The following 2 users thank PhilJ for this useful post:
jmccunep (06-18-2018), mcupka (06-18-2018)
  #1337  
Old 07-04-2018, 12:58 PM
 
floracal floracal is offline
 

Advanced Member
  
Join Date: Aug 2005
Posts: 45
 

Default 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
__________________
X-Cart GoldPlus v4.7.12 PHP 7.4
X-Cart reBOOT (reDUX) Responsive Template
BCSE Paypal-DPM - BCSE Smooth Checkout
Reply With Quote
  #1338  
Old 07-05-2018, 03:53 AM
 
PhilJ PhilJ is offline
 

X-Guru
  
Join Date: Nov 2002
Posts: 4,094
 

Default 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">
__________________
xcartmods.co.uk
Reply With Quote
  #1339  
Old 07-25-2018, 08:23 AM
 
ITVV ITVV is online now
 

X-Wizard
  
Join Date: Nov 2006
Location: UK
Posts: 1,164
 

Default 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
__________________
X-Cart Pro 4.7.12 Active and working great with reBOOT-reDUX
X-Cart Pro 4.6.6 Retired after 6 years of first class service
X-Cart Pro 4.1.7 Retired after 9 years of first class service

Apache: 2.4.25
PHP: 7.4.5
MariaDB: 10.1.44
Arch: x86_64
Reply With Quote
  #1340  
Old 07-27-2018, 10:08 AM
 
PhilJ PhilJ is offline
 

X-Guru
  
Join Date: Nov 2002
Posts: 4,094
 

Default 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.
__________________
xcartmods.co.uk
Reply With Quote

The following 2 users thank PhilJ for this useful post:
elmirage001 (07-28-2018), ITVV (07-28-2018)
Reply
   X-Cart forums > X-Cart 4 > Third Party Add-Ons for X-Cart 4


Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -8. The time now is 12:41 PM.

   

 
X-Cart forums © 2001-2020