Page 7 of 18 FirstFirst ... 5678917 ... LastLast
Results 61 to 70 of 174
  1. #61
    Join Date
    Nov 2007
    Posts
    30
    Plugin Contributions
    0

    Default Re: Cookie Control [Support Thread]

    Hi, my name is Aljosa and because I cant find information how to install or put http://www.zen-cart.com/downloads.php?do=file&id=1476 cookie control on my web shop. I hope that someon will help me and give me info how to put cookie control on my web shop.

    Oh yes, sorry on my english I am from Slovenia ;-)

    All the best Aljosa

  2. #62
    Join Date
    Dec 2009
    Location
    Amersfoort, The Netherlands
    Posts
    2,845
    Plugin Contributions
    25

    Default Re: Cookie Control [Support Thread]

    Quote Originally Posted by aljosa View Post
    Hi, my name is Aljosa and because I cant find information how to install or put http://www.zen-cart.com/downloads.php?do=file&id=1476 cookie control on my web shop. I hope that someon will help me and give me info how to put cookie control on my web shop.

    Oh yes, sorry on my english I am from Slovenia ;-)

    All the best Aljosa
    there is a readme inside the zip file

  3. #63
    Join Date
    Nov 2007
    Posts
    30
    Plugin Contributions
    0

    Default Re: Cookie Control [Support Thread]

    Ok I found it and I take the steps.... now in admin panel everything look OK, it means that I can make changes in admin site, but there is no cookie on my page. Or I transfer files in wrong folder... I dont know. I tried to follow your instructions but I realy dont know what I have make wrong. Do you know why I dont se cookie on my page..?????

    all the best
    Aljosa

  4. #64
    Join Date
    Nov 2007
    Posts
    30
    Plugin Contributions
    0

    Default Re: Cookie Control [Support Thread]

    Design75 could you be so kind and write in wich folders i have to transfer your module files for cookies. Sorry but I realy dont know what I am doing wron and I am . I also install 1.5.1. version of Zen cart for testing but on the front page of the Zen store I cant see any cookie notification. In admin panel I have Cookie Control on the end of configuration list but nothing in front page of the store.
    I hope you understand what is my problem, because my english is for .

    All the best
    Aljosa

  5. #65
    Join Date
    Jun 2013
    Location
    United Kingdom
    Posts
    8
    Plugin Contributions
    0

    Default Re: Cookie Control [Support Thread]

    Hi Design,
    I wondered if you could help me,
    I have a website www.kim.beadingmadnow.com, just setting it up, however I am having problems with your add in for cookie control, its all installed however not displaying the add it.

    Would you mind pointing me in the right direction

    Zencart 1.51

    Many Thanks

    Dave

  6. #66
    Join Date
    Nov 2011
    Posts
    9
    Plugin Contributions
    0

    Default Re: Cookie Control [Support Thread]

    Quote Originally Posted by beadingmad View Post
    Hi Design,
    I wondered if you could help me,
    I have a website www.kim.beadingmadnow.com, just setting it up, however I am having problems with your add in for cookie control, its all installed however not displaying the add it.

    Would you mind pointing me in the right direction

    Zencart 1.51

    Many Thanks

    Dave
    You need to ensure that your

    countries:'GB' is in this format (GB does not work and also you need square brackets.)

    countries:['United Kingdom']

    or cookie control will not show!

    Change this file this \includes\templates\your_template\templates\tpl_cookie_control.php in version 1.4 which is located in the following folder

    Line 29
    countries:'<?php echo COOKIE_CONTROL_COUNTRIES;?>' // Or supply a list ['United Kingdom', 'Greece']

    Add [ ] and remove the ' '

    Should be

    countries:[<?php echo COOKIE_CONTROL_COUNTRIES;?>] // Or supply a list ['United Kingdom', 'Greece']

    Then it should work!

  7. #67
    Join Date
    Jun 2013
    Location
    United Kingdom
    Posts
    8
    Plugin Contributions
    0

    Default Re: Cookie Control [Support Thread]

    THanks Bravel

    I have checked the zencart backend and now have ['United Kingdom'] in the countries list

    I have also amended the file by removing ' ' and added [ ]

    This is still not working.

    Many Thanks

    Dave

    Quote Originally Posted by brave1314 View Post
    You need to ensure that your

    countries:'GB' is in this format (GB does not work and also you need square brackets.)

    countries:['United Kingdom']

    or cookie control will not show!

    Change this file this \includes\templates\your_template\templates\tpl_cookie_control.php in version 1.4 which is located in the following folder

    Line 29
    countries:'<?php echo COOKIE_CONTROL_COUNTRIES;?>' // Or supply a list ['United Kingdom', 'Greece']

    Add [ ] and remove the ' '

    Should be

    countries:[<?php echo COOKIE_CONTROL_COUNTRIES;?>] // Or supply a list ['United Kingdom', 'Greece']

    Then it should work!

  8. #68
    Join Date
    Nov 2011
    Posts
    9
    Plugin Contributions
    0

    Default Re: Cookie Control [Support Thread]

    Quote Originally Posted by beadingmad View Post
    THanks Bravel

    I have checked the zencart backend and now have ['United Kingdom'] in the countries list

    I have also amended the file by removing ' ' and added [ ]

    This is still not working.

    Many Thanks

    Dave
    Just checked you site and you have double brackets showing in your code.

    countries:[['United Kingdom']]

    Your page source should look like this

    http://www.lightevolution.co.uk/

    <!--BOF cookie control script-->
    <script src="http://www.geoplugin.net/javascript.gp" type="text/javascript"></script>
    <script type="text/javascript">//<![CDATA[
    cookieControl({
    introText:'We use cookies to recognize you on your next visit. Furthermore, we use Google Analytics.',
    fullText:'<p>Cookies enable us to collect information about the use of our services and to improve and adapt to the needs of our visitors. Our cookies provide information related to personal identification. They are also used to process your order correctly.By using our site you agree to our. <a href="http://www.lightevolution.co.uk/index.php?main_page=privacy">Privacy Policy</a>.</p>',
    cookieOnText:'Cookies are on',
    cookieOffText:'Cookies are off',
    position:'left',
    shape:'triangle',
    theme:'light',
    startOpen:true, // true , false
    autoHide:6000, // Time in miliseconds
    protectedCookies: ['analytics'], //list the cookies you do not want deleted ['analytics', 'twitter']
    consentModel:'implicit', // information_only , implicit , explicit
    subdomains:true, // true , false
    onAccept:function(){ccAddAnalytics();},
    onReady:function(){},
    onCookiesAllowed:function(){ccAddAnalytics();},
    onCookiesNotAllowed:function(){},
    countries:['United Kingdom', 'Netherlands'] // Or supply a list ['United Kingdom', 'Greece']
    });
    function ccAddAnalytics() {
    jQuery.getScript("http://www.google-analytics.com/ga.js", function() {
    var GATracker = _gat._createTracker('UA-XXXXXXXXX-1');
    GATracker._trackPageview();
    });

    }
    //]]>
    </script><!--EOF cookie control script-->

    Hope this fixes your issue!

  9. #69
    Join Date
    Jun 2013
    Location
    United Kingdom
    Posts
    8
    Plugin Contributions
    0

    Default Re: Cookie Control [Support Thread]

    HI Brave

    Sorry, i have reinstalled zencart and the template and its still not working.I have lost the slider bar, I understand this is because i have 2 lots of java trying to run at once,

    Any ideas?

    Thanks

    David

  10. #70
    Join Date
    Jul 2013
    Location
    UK
    Posts
    8
    Plugin Contributions
    0

    Default Re: Cookie Control [Support Thread]

    Running Zencart v1.51.
    When I install Cookie Control, I am then unable to get to the Admin panel; webpage returns error HTTP 500.
    Has anybody else had this and know the cause? Or is there something else I need to do for Zencart v1.51.
    I have removed everything for Cookie Control and Admin works, and tried installing it again but still the same problem.

 

 
Page 7 of 18 FirstFirst ... 5678917 ... LastLast

Similar Threads

  1. EasyPopulate 4.0 Support Thread
    By chadderuski in forum Addon Admin Tools
    Replies: 3662
    Last Post: 30 Apr 2025, 04:14 AM
  2. Hebrew Support - latest release [Support Thread]
    By eranariel in forum Addon Language Packs
    Replies: 20
    Last Post: 23 Apr 2025, 08:49 AM
  3. BackUp ZC [Support Thread]
    By skipwater in forum All Other Contributions/Addons
    Replies: 285
    Last Post: 23 Dec 2020, 10:40 AM
  4. SysCheck [support thread]
    By swguy in forum All Other Contributions/Addons
    Replies: 36
    Last Post: 24 Oct 2020, 05:28 AM
  5. Replies: 7
    Last Post: 7 Apr 2011, 10:34 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR