blueg2017
Forum Replies Created
-
Forum: Plugins
In reply to: [Popups for Divi] Does this work on the iPhone/iPadAny luck re-creating it on your side? Right now iOS is working and Android is not.
- This reply was modified 1 year, 9 months ago by blueg2017.
Forum: Plugins
In reply to: [Popups for Divi] Does this work on the iPhone/iPadI keep trying different options for where to dump the collapsing mobile menu script. The lastest spot has now caused the mobile experience to occur in desktop Chrome at mobile screen size. It still works correctly at this time on iOS, android Chrome mobile, and desktop Firefox. It’s like it decides which platform to not work every hour.
https://sandbox1.bluegugu.com/wordpress/
Before sending this over to you I checked across all devices/browsers. It’s working again for now. This is so weird how it changes every hour for whether it will work on the mobile devices. To get it to fail, try on mobile to click the last item in the hamburger nav – “Phone/Hours”. It will just sit there and not doing anything.
Forum: Plugins
In reply to: [Popups for Divi] Does this work on the iPhone/iPadWell I spoke too soon. Switching the scripts around in the Divi>Integration section only works for a short while before it either stops working on Android>Chrome or stops work on the iPad. I have not figured out why it switches from working to not working after a few hours.
The popup is triggered by clicking on a top menu navigation item. Works great in desktop, but on mobile I have this script going and I think it’s what fighting against Popups for Divi.
<script id="dt-collapsable-menu-items"> jQuery(function ($) { $(document).ready(function () { $("body ul.et_mobile_menu li.menu-item-has-children, body ul.et_mobile_menu li.page_item_has_children").append('<a href="#" class="mobile-toggle"></a>'); $('ul.et_mobile_menu li.menu-item-has-children .mobile-toggle, ul.et_mobile_menu li.page_item_has_children .mobile-toggle').click(function (event) { event.preventDefault(); $(this).parent('li').toggleClass('dt-open'); $(this).parent('li').find('ul.children').first().toggleClass('visible'); $(this).parent('li').find('ul.sub-menu').first().toggleClass('visible'); }); iconFINAL = 'P'; $('body ul.et_mobile_menu li.menu-item-has-children, body ul.et_mobile_menu li.page_item_has_children').attr('data-icon', iconFINAL); $('.mobile-toggle').on('mouseover', function () { $(this).parent().addClass('is-hover'); }).on('mouseout', function () { $(this).parent().removeClass('is-hover'); }) }); }); </script>
Which is part of this article from Elegant Themes…
Forum: Plugins
In reply to: [Popups for Divi] Does this work on the iPhone/iPadNevermind. It has to do with some scripts being in the header causing conflicts and after re-shuffling the way they load everything is working great.
Perfect! Works great. My fault for assuming they’d be the same.
I tried that after reading researching through the topics here. I have the store id mapped to a static field with the following content:
GBOOC1|I have hit refresh on the feed and it still generates a txt file with just the text:
id,quantity,price,store code.SOLUTION: Rebuild feed from scratch. Since earlier I was able to switch it to XML and then back to TXT I figured maybe a setting was corrupted. That fixed the whole problem. Hope this helps for any future debugging. Thank you for your assistance.
The way I was able to select XML was by going back into the general settings for the feed after it had been created. For some reason it will give you the option of selecting XML which was not an option during the initial setup.
Switching it back to TXT produces a feed that only contains:
id,quantity,price,store codeShouldn’t it have actual product info?
Thank you! It absolutely works and I could have sworn in the various attempts I tried it with the underscore.
Forum: Plugins
In reply to: [WooCommerce Local Pickup Time Select] Order Detail Info ExtractHow is this progressing? I’m hoping to pretty much do the same thing for the invoice/delivery note that the plugin WooCommerce Print Invoice & Delivery Note by Tyche Softwares generates. As of right now it’s just grabbing the “instore pickup” from Woo but not the time/date for pickup info that shows up on the orders page.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce stock status on WP Dashboard is incorrectIt’s still an issue that’s repeatable on a few different installs. If you have a sandbox that it works on, that you can give me access to, I’d love to see if I can demonstrate that it is not working on your installs as well.
@dougaitken you might want to keep this as un-resolved – I’m using a completely different theme and have the exact same issue since the update. Looking at a few of my other clients sites that didn’t upgrade to the latest version of WooCommerce (Running 3.4.4 and 3.3.5) I see that the variable product sizing reads the way it should. So it must be something with the latest update.
To take this further, I went ahead and took the site that was using 3.3.5 and updated it to the latest version of Woocommerce and just as expected – the dimension field in the additional information tab on a variable product is now showing “×” instead of x.
Forum: Plugins
In reply to: [WooCommerce] Click add to cart url, but stay on page?correction…I got it to work with your original solution, however, how can you add multiple variable products in one click?
Forum: Plugins
In reply to: [WooCommerce] Click add to cart url, but stay on page?I have tried some of the suggestions above and are not having much luck. Basically I have a blog post that I want to put a link into that opens a new tab and adds 3 different products and their specific variation directly to the cart. Is this possible? So far I just tried it with just one product and nothing is added to the cart, it just stays on the page and the cart remains empty. I’d much rather just have all the products added to cart and customer is on the cart page ready for checkout since I opened a new tab.
href=”?add_to_cart=4914&variation_id=4916″ target=”_blank” rel=”noopener noreferrer”
- This reply was modified 6 years, 4 months ago by blueg2017.