Viewing 23 posts - 1 through 23 (of 23 total)
  • Author
    Posts
  • #1337922

    Good day,

    I just bought a license for a 2nd site http://www.veluwe-souvenir.nl
    Unfortunately, a mail has already been sent to the purchase forum, which afterwards was not necessary.

    On my new site I have a problem with a wholesale table
    https://wholesaleorderplugin.com/

    I’ve been using this for a while now and it works very well for me, unfortunately I can’t get it to work with Enfold, the table is visible but doesn’t pass anything on to the shopping basket, http://www.veluwe-souvenir.nl/shop

    the normal enfold shop page gives no problems,
    https://veluwe-souvenir.nl/winkel

    Gerrit

    • This topic was modified 2 years, 3 months ago by rekers.
    #1337976

    Hey rekers,

    Thank you for the inquiry.

    How can we reproduce the issue? The wholesale table seems to be working correctly on our end. The products in the table were automatically added to the cart after we clicked the “order” button. Please check the screenshot in the private field.

    Best regards,
    Ismael

    #1337979

    Hello Ismael,

    I don’t understand this at all, it doesn’t work for me, did you do it with this table?

    Gerrit

    • This reply was modified 2 years, 3 months ago by rekers.
    #1337988

    Hi,

    Odd. It is not working now. When we add a product using the table, it redirects to an empty cart page and the cart icon doesn’t pop out like it used an to hour earlier. Did you adjust the settings just recently?

    Best regards,
    Ismael

    #1337993

    Hello Ismael,

    I haven’t changed anything, maybe there is something left from a previous test.

    Gerrit

    • This reply was modified 2 years, 3 months ago by rekers.
    #1338016

    Hi,

    Thank you for the info.

    There are 3 shop table plugin installed in the site. Which plugin are you actually using ?

    The issue seems to be random, the button in the shop table automatically redirects to checkout page and the added products only display when the page is refreshed. Please contact the plugin author for additional assistance.

    Best regards,
    Ismael

    #1338633

    Good day,

    I can’t get any further, the fact that there are several store tables is just out of necessity, my concern is only this page, http://veluwe-souvenir.nl/shop/
    Products that I click on just do not end up in the shopping basket.

    Gerrit

    #1338636

    Good day,

    I have it working now, I read a post about these settings Enfold > Performance > File Compression
    I have disabled java and css merge.

    Now the table I want works, but not quite 100% there is no + and – button visible, all numbers have to be typed in, is there a solution to make the button visible though?

    In the shopping cart the + and – button is visible again.

    Gerrit

    #1338817

    Hi,

    Glad to know that the shop table is working correctly again. The function (avia_apply_quant_btn) that applies the buttons to the quantity field is located in the enfold/config-woocommerce/woocommerce-mod.js and it is not working because the shop table loads after the script. As you may noticed, there is a bit of a delay before the shop table displays, so the script fails to convert the quantity fields and add the quantity buttons. You may need to contact the plugin authors for additional assistance and ask them if the plugin triggers an event after the shop table loads. We can then listen for that event and execute the avia_apply_quant_btn function.

    Best regards,
    Ismael

    #1338936

    Is there no other possibility, customizing it will only cost extra money again, it will become way too expensive site for me

    Gerrit

    #1339264

    Hi,

    The quantity buttons are not included in a default Woocommerce installation, which is why it is not included in the shop table items by default. We can use the avia_apply_quant_btn function to create the quantity buttons but we have to know if the plugin emits an event after the plugin loads the shop table items. Unfortunately, we are not familiar with the plugin script, so additional assistance from the plugin authors will help.

    Thank you for your understanding.

    Best regards,
    Ismael

    #1339269

    Hello,

    Then, unfortunately, it becomes a difficult story for me, and it goes beyond my budget to have it modified.

    Gerrit

    #1339276

    Hi,

    You don’t need to modify the shop table or the plugin. Just ask the plugin author if the table emits or triggers a Javascript event after it loads the product items. We can then execute the avia_apply_quant_btn function after that event to create the quantity buttons.

    Best regards,
    Ismael

    #1339280

    Hello,

    It becomes my too expensive to do that, I have no support after 6 months and also no new version, I have to buy it again for 50 euros, that becomes my all much too expensive.

    Gerrit

    #1339510

    Hi,

    Unfortunately, we do not provide support for third party plugins as stated on our support policy. It is beyond the scope of support, but we try to help as much as we can. We already debugged the issue for you and explained why the quantity buttons are not displaying in the shop table. All you need to do is contact the plugin authors and forward the information that we provided above, or you can just leave it as it is, which is fine because users can still input the product quantity manually, which is how it is in a default Woocommerce installation.

    Thank you for your understanding.

    Best regards,
    Ismael

    #1340796

    Good day,

    I now have a new version of the progamma running, but not yet with the desired result, do I still need to adjust code somewhere?

    Gerrit

    #1340870

    Hi,

    Thank you for the update.

    The shop page above does not exists anymore. Did you remove it? Please create a new page showing the shop table so that we can inspect the elements.

    now we have released version 2.1.4 and added the event otfwtable_shown that trigger after the order table has been shown. Oscar J

    And please ask the plugin authors which element triggers the otfwtable_shown event and the name of the script where this was added. You should also update the theme to version 4.8.9.1.

    Best regards,
    Ismael

    #1340872

    Goedendag,

    Ik had de pagina verwijderd, kijk op deze pagina,
    https://veluwe-souvenir.nl/winkel/

    The latest version of Enfold is now on it

    Gerrit

    • This reply was modified 2 years, 3 months ago by rekers.
    #1341257

    Hi,

    Thank you for the info.

    The following script should create the quantity buttons once the shop table has been loaded. Please add it in the functions.php and make sure to remove the cache before checking the page.

    function ava_custom_js_script() { ?>
        <script>
            (function($) {
                // apply quantity button to otfw shop table 
                // https://kriesi.at/support/topic/woocomerce-wholesale-tabel-problem/
                $(document).on("otfwtable_shown", function() {
                    setTimeout( function() {
                        avia_apply_quant_btn();
                    }, 150);
                });
            })(jQuery);
    	</script>
        <?php
    }
    add_action('wp_footer', 'ava_custom_js_script', 999);
    
    

    Best regards,
    Ismael

    #1341267

    Good day.

    I see no response after copying in the child theme,

    Gerrit

    #1341285

    Hi,

    We had to edit the functions.php file and redefine the avia_apply_quant_btn function in the script above. The quantity buttons are now displaying in the shop table. Please make sure to purge the cache on your end.

    Best regards,
    Ismael

    #1341293

    I deleted the history in Safari and now see the buttons, but they just don’t work.

    In Chrome it does not work either, cache have also been removed

    The buttons do give the numbers, but nothing else happens, it doesn’t go to the cart.

    Gerrit

    • This reply was modified 2 years, 3 months ago by rekers.
    #1341568

    Hi,

    We tried to adjust the value of the quantity field using the buttons and the field seems to be reflecting the correct value when we checked it on the browser console. Please check the screenshot in the private field. Unfortunately, we are not sure how the shop table retrieves the items in the table. Please keep in touch with the plugin developers for additional help and feel free to open another thread if you have more questions about the theme.

    Best regards,
    Ismael

Viewing 23 posts - 1 through 23 (of 23 total)
  • You must be logged in to reply to this topic.