geza54
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Checkout error message & fixed header / navbar scroll problemFollow the same idea it might be the same event ‘checkout_error’ which gets triggered. In which case it should work. But currently your checkout page doesn’t work with basic messages so try and fix those first.
Forum: Plugins
In reply to: [WooCommerce] Checkout error message & fixed header / navbar scroll problemIt is generic enough that you can put it into in any javascript file providing it is present on the checkout page where the errors appear. Make sure that it is within the document ready jquery wrapper. “jQuery(function ($) {})” That is it.
jQuery(function ($) { $(document.body).on('checkout_error', function () { $(document.body).stop( ); $('html, body').animate({ scrollTop: ($('form.checkout').offset().top - 400) }, 1000); }); })I see you are right. I leave it for now but it’s def a xmlrpc problem as you say …
Thank you for your help !Updating the app did help. I am not sure why you got 404 from xmlrpc I just tested it before I posted here … and just now and for me it returns 200. http://monicawilde.com/xmlrpc.php
Sorry I can’t post the log anymore I have upgraded iOS and then the wordpress app and it seems fine for now but of course the logs are gone.
Interestingly I have the same problem right now. Googling got me here.
I got two iphones. One works the other fails with this error.http://monicawilde.com
My /xmlrpc.php accepts post request and returns 200.I am going to update the app and ios to see if that fixes this.
Forum: Plugins
In reply to: [WooCommerce] Checkout error message & fixed header / navbar scroll problemMike,
Thank you for your help with the line number : )
I bodged it the with the following code:
$(document.body).on('checkout_error', function () { $(document.body).stop( ); $('html, body').animate({ scrollTop: ($('form.checkout').offset().top - 400) }, 1000); });Forum: Plugins
In reply to: [WooCommerce] Checkout error message & fixed header / navbar scroll problemSure I know that 🙂
So any idea how to fix it apart from not having a fixed header 🙂 ?Forum: Themes and Templates
In reply to: wp_nav_menu before doesnt workThe same here. Before / After does not work with wp_nav_menu.
Forum: Plugins
In reply to: Archive my pages ? (not posts)I think that is what I’m going to end up doing. Than create an other navigation where I exclude everything else and only include the archived pages.
I kind of realized that as I was writing this post.
Thank you for the help!
Geza