Search:

Type: Posts; User: dvtalk

Search: Search took 0.01 seconds.

  1. Replies
    17
    Views
    11,625

    v156 Re: Customer Tax Exempt v2 - Support Thread

    What is the reason why this couldn't work on v1.5.5x?
  2. Re: Have you switched from PayPal Payments Pro to Square, or already use Square? Thou

    Thanks swguy. With Payments Pro customer isn't aware they use payPal as gateway and it shouldn't matter. I was just wondering how Square intergation worked, and if anyone had experience using it.
    ...
  3. Re: Have you switched from PayPal Payments Pro to Square, or already use Square? Thou

    PayPal Payments Pro is not free, it is $30/month. I specifically asked about a "monthly fee", which the 2.5% transaction fee you mentioned isn't one.
    Standard PayPal doens't have a seamless...
  4. Have you switched from PayPal Payments Pro to Square, or already use Square? Thoughts

    Hi,

    I am considering switching from PayPal payments Pro to Square.
    Has anyone done this or using Square to process payments directly on their website (e.g. no redirection to processor page)? If...
  5. Replies
    19
    Views
    3,732

    Re: Quickbooks Import QBI Support Thread

    Here is how I rewrote this function:


    function proc_cleanData() {
    $this->config_data['tax_rate']=str_replace('%','',$this->config_data['tax_rate']);
    if (get_magic_quotes_gpc())...
  6. Replies
    19
    Views
    3,732

    Re: Quickbooks Import QBI Support Thread

    Hi,

    So I have been using this plug-in since ver 3.21 (quite a bit customized for my needs). I am in the process of rebuilding the old ZC site with new 1.5.5f and I simply must have QBI.
    I am...
  7. Re: Attribute image replaces main product image on select [Support Thread]

    Oh, that was easy. I just copied jscript_ais.php and on_load_ais.js to the /includes/modules/pages/index/ based on the page location I was on:
    index.php?main_page=index&cPath=xxx_yyy
  8. Re: Attribute image replaces main product image on select [Support Thread]

    Thank you. Looks like this is quite complicated to integrate, so for now, giving up on this. One other thing I was curious about. The theme I am using has a Quick View mode, where you can order from...
  9. Re: Attribute image replaces main product image on select [Support Thread]

    Thank you for this. I went ahead and downloaded the 1.5.9 from Github. Everything seems to be working woderfully, but I wonder if you can help me figure this out:

    I am using an image plugin that...
  10. Replies
    4
    Views
    823

    Re: Image upload not working in 1.5.5

    Yes. Apparently, it's a template (Ajax) issue. The author is working on a fix.
  11. Re: Attribute image replaces main product image on select [Support Thread]

    This is great. While my approach serves the purpose for now, I will use updated version as soon as it is released. Thanks for considering, and support.
  12. Replies
    4
    Views
    823

    Image upload not working in 1.5.5

    Hi ZC community.

    ZC 1.5.5f
    localhost test server (Windows 7 pro)
    Apache 2.4, PHP 7.1.7, MySQL 5.5.5-10.2.7-MariaDB

    I am rebuilding a test site for an upgrade from old 1.3.8 version.
    ...
  13. Re: Attribute image replaces main product image on select [Support Thread]

    One more edit. array_push() was improperly used.

    <?php
    /**
    * includes/functions/extra_functions/functions_ais_cart.php
    * @author DavidV (dvtalk)
    * @license...
  14. Re: Attribute image replaces main product image on select [Support Thread]

    Slight change to functions_ais_cart.php
    ais_cart_img_data only needs an $id argument.
    Also further consolidated the code.


    <?php
    /**
    *...
  15. Re: Attribute image replaces main product image on select [Support Thread]

    Here is what I came up with that works for me, with my limited hobbyist coding level.

    includes/functions/extra_functions/functions_ais_cart.php


    <?php
    /**
    *...
  16. Re: Attribute image replaces main product image on select [Support Thread]

    I actually already started working on it. Will share when I have something, and may be you can impllement it in the next version, if it's worthy of implementation. I am not the cleanest coder. :)
  17. Re: Attribute image replaces main product image on select [Support Thread]

    Just a quick follow up, and this may be too much to ask, but what would it take to display the swapped image in the cart?

    I think that would be a great addition to the script and will avoid...
  18. Re: Attribute image replaces main product image on select [Support Thread]

    #1 made no difference.

    #2 try/catch blocks worked! - Thank you!

    So, seems to be a conflict with DPU, or maybe the way my custom theme is handling it. Hope this can be fixed in the future...
  19. Re: Attribute image replaces main product image on select [Support Thread]

    Did a lot of digging but still cannot figure out. It sems that is pointing to this section of the ais_init() function:

    case "radio":
    if...
  20. Replies
    1,621
    Views
    314,414

    v150 Re: Ultimate SEO 2.200+ (new features)

    So, after some digging in, I found there are two problems. For an unknown reason, the USU 2.215 no longer passes the attributes to product link.
    To fix that, in includes/classes/usu.php uncomment...
  21. Replies
    1,621
    Views
    314,414

    v150 Re: Ultimate SEO 2.200+ (new features)

    So, after some digging in, I found there are two problems. For an unknown reason, the USU 2.215 no longer passes the attributes to product link.
    To fix that, in includes/classes/usu.php uncomment...
  22. Replies
    1,621
    Views
    314,414

    v150 Re: Ultimate SEO 2.200+ (new features)

    Hi,

    I wonder if you can help me.

    ZC 1.5.5f
    USU 2.215

    I am having trouble with repopulating the attributes after clicking a product in cart.

    With USU enabled, in the cart links look like...
  23. Re: Attribute image replaces main product image on select [Support Thread]

    I actually did that, but decided that overwriting was the best course of action (there were minimal to no changes in files overwritten).

    As far as on_load_ais.js, even after copying this to the...
  24. Re: Attribute image replaces main product image on select [Support Thread]

    Here is what I had to do to successfully install this plugin with third party theme (claiming to be ZC 1.5.5.f compatible):

    Copy/overwrite...
  25. Re: Attribute image replaces main product image on select [Support Thread]

    Thanks for pointing me to the right direction. After updating the DPU, adding back the <div id="productMainImage"> to the tpl_modules_main_product_image.php that the theme authors have omitted, and...
  26. Re: Attribute image replaces main product image on select [Support Thread]

    I understand what you are saying. I misunderstood your first reply, I thought you were showing a fix. I checked DPU version and it's 3.0 which I understand is several versions behind. I will try to...
  27. Re: Attribute image replaces main product image on select [Support Thread]

    Here is the way this code renders:

    function init() {
    var n=document.forms.length;
    var i;
    for (i = 0; i < n; i += 1) {
    if (document.forms[i].name === theFormName) {
    theForm =...
  28. Re: Attribute image replaces main product image on select [Support Thread]

    Please ignore line:
    theForm.elements[i].onchange = function () { getattribimage(); }
    It was an artifact of a test I was performing.
  29. Re: Attribute image replaces main product image on select [Support Thread]

    Sorry, I think I should have copied the entire function:


    var xhr = new objXHR;

    function init() {
    var n=document.forms.length;
    for (var i=0; i<n; i++) {
    if (document.forms[i].name...
  30. Re: Attribute image replaces main product image on selecting attribute

    I hope you can help me with this plugin as well. I have a custom theme that I purchased elsewhere, and it is causing me all sorts of headaches as they don't seem to be following the ZC convention for...
Results 1 to 30 of 30
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR