Search:

Type: Posts; User: tsrplatelayer

Page 1 of 4 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    172
    Views
    41,436

    v150 Re: Cookie Control Support Thread

    I suspect that href has to be specified for mouseover to work, however cookie control does not actually require anything so I tried modifying the jscript to generate

    <a id="cctoggle"...
  2. Replies
    172
    Views
    41,436

    v150 Re: Cookie Control Support Thread

    i think I've got it - I edited the jscript file to generate

    <a id="cctoggle" href="javascript:expand()" style="background-position-x: 0;">
    that seems to work - please take a look at...
  3. Replies
    172
    Views
    41,436

    v150 Re: Cookie Control Support Thread

    I have an idea - just to sum the generated/served <a> looks like this:
    CIVIC :
    <a id="cctoggle" href="#" style="background-position-x: 0;">
    the mouseover works correctly, but when 'clicked' Zen...
  4. Replies
    172
    Views
    41,436

    v150 Re: Cookie Control Support Thread

    Ah! - that is exactly what is happening
    when I click to enable/disable cookies I can see the red/green bar start to change to the opposite setting, but then this change does not complete on the...
  5. Replies
    172
    Views
    41,436

    v150 Re: Cookie Control Support Thread

    thanks for taking a look.
    When you looked I had the 'as supplied' jscript file loaded, i.e. the <a> tag has no 'href' specified - the mouse over does not change to hand - and it works.
    I have now...
  6. Replies
    172
    Views
    41,436

    v150 Re: Cookie Control Support Thread

    see my earlier post this thread 8 Jan
    Seems that mod doesn't work at all -
    Yes the pointer works properly and yes the URL's generated are correct but for whatever reason it no longer...
  7. Replies
    172
    Views
    41,436

    v150 Re: Cookie Control Support Thread

    How about adding add the top


    <?php
    $pageURL = $_SERVER['HTTPS'] == 'on' ? 'https://' : 'http://';
    $pageURL .= $_SERVER['SERVER_PORT'] != '80' ?...
  8. Replies
    172
    Views
    41,436

    v150 Re: Cookie Control Support Thread

    Rats - that fixes the pointer but clicking the button returns to the home page. I guess thats why it was taken out.
    Can PHP not be used to build a string so that the current page is referenced in...
  9. Replies
    172
    Views
    41,436

    v150 Re: Cookie Control Support Thread

    Ha-Ha - got it
    I compared the JS used on Civics site with the JS supplied in the app and found a difference. I made the following change to...
  10. Replies
    172
    Views
    41,436

    v150 Re: Cookie Control Support Thread

    Just checked on http://www.civicuk.com/cookie-law/index
    and the mouse over changes to a hand - but the image does not change colour,

    but this is not the case on my installation.

    Allan
  11. Replies
    172
    Views
    41,436

    v150 Re: Cookie Control Support Thread

    Just installed - straight forward for a novice - great. Its on http://www.freight-stop-shop.co.uk/tickets/

    I wonder if I missed something -
    Normally when you 'mouse over' a button the button...
  12. Replies
    8
    Views
    730

    v139h Re: Order Confirmation not received

    Thanks fo rthe input.

    I have Email Archive add-in working with the 1.6version of the tool.
  13. Replies
    8
    Views
    730

    v139h Re: Order Confirmation not received

    rmoved 1.7 and installed 1.6 - thats OK
  14. Replies
    8
    Views
    730

    v139h Re: Order Confirmation not received

    I am feeling 'stoopid' at the moment
    I downloaded the email archive - latest version - it says compatib;e with 1.3.9h
    copied files into admin as directed
    enabled email archiving
    but I dont see...
  15. Replies
    8
    Views
    730

    v139h Re: Order Confirmation not received

    Yes - I suspect it is ISP related as it is 'intermittent' - i will give the plug in a try

    Thanks
  16. Replies
    8
    Views
    730

    v139h Re: Order Confirmation not received

    I did

    I am using PayPal Express
    When I receive order confirmation - I do receive paypal notification
    Order is in admin
    I never receive paypal notification without order confirmation

    so all...
  17. Replies
    8
    Views
    730

    v139h Order Confirmation not received

    My store is set to send confirmation emails to customers and copy to store owner.
    Yesterday I noticed 2 orders in store admin for which I had not received a notification.
    order nos 1-103 OK
    104...
  18. Replies
    22
    Views
    3,540

    Re: UK Legislation and Cookies?

    Thanks DW - I agree - who getter to tell us exactly how Zen uses cookies - and I will need that information if I am to seek legal opinion as to the exemption status of Zen's use of cookies when...
  19. Replies
    22
    Views
    3,540

    Re: UK Legislation and Cookies?

    http://www.ico.gov.uk/news/blog/2011/half-term-report-on-cookies-compliance.aspx dated 13 Dec 2011 suggests that it has not been suspended and that new guidelines are available at...
  20. Replies
    22
    Views
    3,540

    Re: UK Legislation and Cookies?

    Agreed - but if someone has already asked the question it would be nice to know the anwer they were given
  21. Replies
    22
    Views
    3,540

    Re: UK Legislation and Cookies?

    What update - well...

    Schoolboy says he believes it is suspended - does anyone have a specific reference to show tht is the case?

    The guidelines published 6 months ago were draft - have they...
  22. Replies
    22
    Views
    3,540

    Re: UK Legislation and Cookies

    Thanks - that didnt come up when I searched

    6 months later - Is there any update?
  23. Replies
    22
    Views
    3,540

    UK Legislation and Cookies?

    A law requiring websites to request the user's permission before storing cookies was due to be introduce in May 2011. Companies were given 1 year's grace to comply. Thus we may 5 months left.

    Has...
  24. Mandatory text attribute incorrectly returns 'user input required'

    Take a look at this other thread
    http://www.zen-cart.com/forum/showthread.php?p=1043112#post1043112

    With a text attribute defined as mandatory and max length 1 character entering a single '0'...
  25. Re: Mandatory text attribute -problem

    tried it on my local copy - corrected the specific problem - but I dont know if there are any deeper ramifications
  26. Re: Mandatory text attribute -problem

    How about changing


    // text cannot be blank
    if ($check_attributes->fields['attributes_required'] == '1' and empty($value)) {
    $check_valid = false;

    to
  27. Re: Mandatory text attribute -problem

    I found in functions_lookups.php in the zen_get_attributes_valid function.


    // text required validation
    if (preg_match('/^txt_/', $option)) {
    $check_attributes = $db->Execute("select...
  28. [Done v1.5] Mandatory text attribute -problem

    Whilst playing around trying to get something else working I came across this 'anomally'

    I created option-name 'Adult', type 'Text',width '5', max '1' - to display a box 5 characters wide and only...
  29. Re: products with free optional accessories

    Thanks 'dbltoe' - thats part wa ythere - but what if someone wants, say, 10 Jackets, 7 green belts, 3 red belts.

    This is where I cant see how to do it without requireing them to add 2 products to...
  30. Re: products with free optional accessories

    I should add the customer can order as many jackets as he likes - so long as there is stock ( dont worry about belts going out of stock - this isnt really jackets and belts - its just an easy...
  31. products with free optional accessories

    For want of a better way of describing it...

    I have 20 jackets in stock.
    I have 50 red belts in stock
    I have 50 green belts in stock.
    Belts can not be bought seperately.
    Jackets are supplied...
  32. Re: Maintaining a live shop and a BETA development site

    OK - I'll take a look at that -

    Thanks:cool:
  33. Re: Maintaining a live shop and a BETA development site

    Thats what I expected - no harm in hoping though -

    Guess I'll create a copy, create a couple of new products to experiment with. Then, when I am confident, go for it and create all the new stuff...
  34. Re: Maintaining a live shop and a BETA development site

    I hadnt intended to use one database - a second copy stored locally was what I had in mind - but then how do I export the new categories/products/attributes back from the develeopment database to the...
  35. Maintaining a live shop and a BETA development site

    My shop is live and working - yippee - after its first live event (I sell tickets).
    I now need to develop a new cateory of products and would rather not have the general public see it until its...
  36. Re: Rounding errors in VAT and using Sales Report

    oops - forgot to attach screen grab
  37. Rounding errors in VAT and using Sales Report

    I dont know if this belongs in the VAT forum or the Sales Report mod support forum - so I put it in 'General'

    I have noticed a rounding issue associated with VAT calculations.

    Please see...
  38. Replies
    11
    Views
    874

    Re: Confirmation email layout oddity

    not much I can do about it

    According to the link (previous post) Outlook 2007/2010 doesn't support 'width':ohmy::(
  39. Replies
    11
    Views
    874

    Re: Confirmation email layout oddity

    Thanks or the suggestions - I'll play a bit more

    re email client compatibility - if anyone's interested - I found this
    http://www.campaignmonitor.com/css/

    Seems Outlook 2007/2010 is a major...
  40. Replies
    11
    Views
    874

    Re: Confirmation email layout oddity

    I have just verified that the layout problem is indeed an Outlook issue.

    By messing with the paper leftr/right margin settings (set to 2.3cm) in print-preview the display can be corrected and then...
  41. Replies
    11
    Views
    874

    Re: Confirmation email layout oddity

    OK - so I didnt invent the wheel - someone got there before me -
    :laugh:

    Is this why the confirmation email still uses 'table' for layout - a deprecated practice?

    However - Just because...
  42. Replies
    11
    Views
    874

    Re: Confirmation email layout oddity

    how about changing

    <nobr>........</nobr>
    to


    <span style="white-space:nowrap;">....</span>

    at least that is standards compliant
  43. Replies
    11
    Views
    874

    Re: Confirmation email layout oddity

    OK - found it - I think

    In classes/orders.php line 972



    $html_ot .= '<td class="order-totals-text" align="right" width="100%">' . '&nbsp;' . '</td> ' . "\n" . '<td class="order-totals-num"...
  44. Replies
    11
    Views
    874

    Re: Confirmation email layout oddity

    I used 'view source' to look at the email source code. I dumped this code into my html editor.
    I run Tidy - which reported a missing 'tr'
    (it also reports a missing 'title' in the 'head' section,...
  45. Replies
    11
    Views
    874

    Confirmation email layout oddity

    When I view a confirmatin email using Outlook it looks OK. When I print it, or view in print-preview the layout is mashed - see attched screen grabs.
    It appears that the top part of the table...
  46. Replies
    278
    Views
    63,964

    Re: Flexible Attributes support

    well that all seems to work., I appreciate the tutorial.

    There is a 'discrepancy' between FF and other browsers. FF is the odd one out, IE, Opera, Safari, Google, all leave a gap between the name...
  47. Replies
    278
    Views
    63,964

    Re: Flexible Attributes support

    Ok - I have taken the time to go back to pre-hack.
    The website now - should you care to look - uses the following css


    #wAttrib-8 .optionName {margin-top: -0.2em; margin-right: 4.5em;} /* note...
  48. Replies
    278
    Views
    63,964

    Re: Flexible Attributes support

    Indeed it did, but not in IE (at least not on the pc Iwas using). As I said turning on compatibility mode resolved some isues and may have made the code hack unnecessary. However since discovering...
  49. Replies
    278
    Views
    63,964

    Re: Flexible Attributes support

    Turning on 'compatibility view' in my IE9 fixed it - dont know why it is required.

    This may mean that the code hack wasnt required - however
    adding the div wrapper made the CSS so much cleaner...
  50. Replies
    278
    Views
    63,964

    Re: Flexible Attributes support

    Just booted my wifes computer WIn7(32bit) + IE9(32bit) - looks OK on that one - weird - probably one of the addons I have interfering.
Results 1 to 50 of 177
Page 1 of 4 1 2 3 4
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR