Forum Replies Created
-
AuthorPosts
-
i dont thinks its your theme that changes the jquery version, but some other plugin or custom coding
that said, having a play around with it here , i can (sometimes) reproduce this.
will need to find out under what circumstances and will fix things if neededthanks for reporting
for starters, your theme loads an external version of jquery instead of the one that ships with wordpress
you also have the following error
Uncaught TypeError: $(…).live is not a function in http://www.clubsensubs.nl/testsitecs/wp-content/plugins/simplemodal-login/js/default.js?ver=1.1this might or might not be the issue (and my guess is , at least the Uncaught TypeError is related to the jquery version loaded). either way, this should be rectified to be able to say anything more
the args list doesn’t really do much there. its the following filter that does the sorting
add_filter('terms_clauses', array($this,'wppizza_term_filter'), '', 1);maybe this will help
http://www.wpbeginner.com/beginners-guide/step-by-step-guide-to-install-a-wordpress-plugin-for-beginners/watch the video from about 2:00 minutes onwards
i just told you
just like any other wordpress plugin (one by one)
plugins->add new->upload pluginin the future, please post a new topic
anyway, you should look in the wppizza->layout settings for the minicart. possibly an added offset for the body might do the trick.
>but I might get in touch with stripe for this if needed
i had a look myself, but cannot see the option of adding a zipcode field to the popup in any documntation. Personally I agree that this should be there/optional. Maybe you can persuade them to do this sort of thing. Would certainly be th emost elegant solution> do you think I can only show billing zip code field when stripe is selected using css ?
somwhat in conjunction with js.
i.e if wppizza-gateway-stripe is checked, set css of field visible and required , else hide and unset required(just off the top of my head, there may be other solutions too)>I know it will be passed on to stripe but what if the delivery zip code is different than the billing zip code,
the you would have to label that filed “billing zip code” i would have though> I thought that there is an option to have another field in stripe popup window for the billing zip code.
if there is, that would be great/better. got an example somewhere that does that ?
wrong.
it will be passed on to stripe (but you don’t have to enter it again in the stripe popup)Out of the box, no.
However , I would be happy to add this as an option if you could run a test for me by editing
wppizza-gateway-stripe.php like so and tell me if this works (i would then have to make this a more dynamic option in the plugin itself, but as a test this should be fine).wppizza-gateway-stripe.php on approx line 393 AFTER
$js[]="if (stripeEmail == null){var stripeEmailVal='';}else{var stripeEmailVal=stripeEmail.value;}";ADD
$input_field_id = 'ccustom6'; /* set the id of the field enabled and set for entering Post/Zip codes in wppizza->order form settings */ $js[]="var stripeZip = document.getElementById('".$input_field_id ."');"; $js[]="if (stripeZip == null){var stripeZipVal='';}else{var stripeZipVal=stripeZip.value;}";setting the
$input_field_id(the field you are using in wppizza->order form settings for the customer to enter his/her zipcode). Make sure you set this field in the settings there as being requiredthen, wppizza-gateway-stripe.php on approx line 407 AFTER
$js[]="name: '".$name."',";ADD
$js[]="address_zip: ''+stripeZipVal+'',";for this to have any effect, enable declines on verification failures in your stripe account settings.
let me know
please see here:
https://support.wp-pizza.com/topic/how-do-licenses-work-support-updates-refunds/the cost in USD depends on the exchange rate at the time of purchase/renewal
something like this probably/perhaps
https://support.wp-pizza.com/topic/get-only-todays-orders-on-order-history-page/>I mean if I have all rights to use and manipulate with this plugina through this extension.
suresingle license is for a single website and is enough for your one website (I do not know what you mean exactly by “full” license)
>… So question: is really secure this extension
there are no known vulnerabilities>,,, how I can buy full license for one web-site.
please refer to : https://support.wp-pizza.com/topic/how-do-licenses-work-support-updates-refunds/
and to buy go to : https://support.wp-pizza.com/extensions/hope that helps
there’s a filter you could use
wppizza_filter_summarywhich holds all order data in cart (and a bunch of other stuff)you could probably filter on [items][price] . very roughly something like
if ([items][price] <= 0) { [items][price_formatted] = 'my string' }you need to adjust the above with proper coding for filters of course, but it should give you an idea
Note, you can screw up a lot of things if you use this incorrectly. make sure you test it thoroughly
PS: This kind of thing/filter ill be a lot easier in wppizza v3.x when it’s ready. However, this will be a while yet and the above will have to do for now
although I must admit I have no idea why you would want to do that, I would think a simple css display:none would do the job on the relevant elements (as they all have their distinct classes)
>So I’m having to open and close each menu item individually
but in quickedit this takes about a second ….in any case. there are plenty of plugins on wordpress.org that let you drag/drop posts (wppizza menu items are just custom post types)
-
AuthorPosts