Olly

Forum Replies Created

Viewing 20 posts - 301 through 320 (of 4,433 total)
  • Author
    Posts
  • in reply to: How to suppress the “amounts do not match” error? #56606
    Olly
    Admin & Mod

      PS: if you tell me for what purpose the amount needs to be modified I *might* be able to suggest something (but it entirely depends on what you are trying to do)

      in reply to: How to suppress the “amounts do not match” error? #56605
      Olly
      Admin & Mod

        Sorry, but the amounts of what is going to be charged and what has been paid must match exactly. There is no provision for making this optional.

        in reply to: Track order #56564
        Olly
        Admin & Mod
          in reply to: Delivery Post/Zip Codes sorting #56387
          Olly
          Admin & Mod

            I don’t understand. they are already sorted

            in reply to: Integrated customer account #56280
            Olly
            Admin & Mod

              >…..where I can see and change my address, phonenumber etc.
              but that’s already built into wordpress itself and plenty of plugins exist to customise this too….
              maybe I am missing something ?!

              in reply to: Integrated customer account #56268
              Olly
              Admin & Mod

                https://docs.wp-pizza.com/shortcodes/?section=user-orderhistory
                perhaps ?

                >a way to enter discountcodes to the account
                i dont understand, why would (should) a user be able to add discount codes to an account ?

                in reply to: Integrated customer account #56264
                Olly
                Admin & Mod

                  I dont think i understand.
                  there isn’t really any “wppizza custom environment” so to speak.
                  any additional wppizza data of a user is added to the “normal” WP user data (if enabled in wppizza -> order form)

                  in reply to: How to keep address for registered user #56140
                  Olly
                  Admin & Mod

                    did you enable them to be prefilled ?
                    have you cleared your cache / cookie s(so you are not looking at old and / or already submitted data ?

                    nothing has changed in relation to this for years so there’s no reason to think this is suddenly broken
                    (and also doing a quick test here it works just fine )

                    in reply to: Order for the next day open #56138
                    Olly
                    Admin & Mod

                      glad to hear it . thanks

                      (but of course let me know if you get issues)

                      in reply to: How to keep address for registered user #56111
                      Olly
                      Admin & Mod

                        it’s inbuilt, no plugin needed.
                        simply enable the fields in wppizza->orderform “use when registering”

                        in reply to: WPPizza – Rewards #56094
                        Olly
                        Admin & Mod

                          sorry, for the somewhat late reply.

                          in any event, the only way you can give a discount for payment gateways that are prepay (i.e credit card payments etc)
                          is by filtering and forcing discounts (i assume here you know how WordPress filters work, else have a look here https://docs.wp-pizza.com/developers/?section=filters-actions-functions)

                          something like the following.

                          
                          add_filter('wppizza_filter_gateway_objects', 'myprefix_myfunctionname');
                          function myprefix_myfunctionname($obj){
                          /* 5 EUR/USD/whatever discount */
                          $obj->MOLLIE->discounts['fixed'] = 5;
                          /* and or for 5 percent instead */
                          $obj->MOLLIE->discounts['percent'] = 5;
                          return $obj;
                          }
                          

                          as always , use at your own risk . if you discount for credit card payments you may end up your credit card fee being more than your profit margin on a sale depending on how you set things up if you do the above

                          in reply to: There is no spot for the shipping address #56049
                          Olly
                          Admin & Mod

                            >they are unable to see the Shipping Address field.
                            that is correct, because the shipping (aka delivery) address should really be added to the checkout form in the first place
                            or the plugin will never have any information about where to send the order to . And as that is typically the case, asking for the shipping address again once in the paypal payment screen is superfluous.

                            that said, if you want to enable this anyway for some reason or another , you can do this by using a filter like so (not tested, but should work just fine)

                            
                            add_filter('wppizza_filter_paypal_parameters', 'myprefix_set_paypal_parameters');
                            function myprefix_set_paypal_parameters($parameters){
                            unset($parameters['no_shipping']);
                            /*
                            or instead try one of the below if the above does not work
                            */
                            //$parameters['no_shipping'] = 0;
                            //$parameters['no_shipping'] = false;
                            return 	$parameters;
                            }
                            

                            note: this applies when using the paypal standard redirect implementation (which you are seemingly using)

                            in reply to: Order for the next day open #56026
                            Olly
                            Admin & Mod

                              yup, timezone settings most certainly have an impact too , but it’s not the underlying problem here as it happens

                              in reply to: Order for the next day open #56024
                              Olly
                              Admin & Mod

                                >Olly, now it’s the same problem everyday
                                that actually makes more sense . as you know – as a temporary workaround at least – you could set the “Timeslot expiration” to zero . as you are only doing full days it makes virtually no difference , unless someone stays on your orderpage for a full day before actually ordering the chances of that are quite small i would think.
                                yes, i need to fix this and will do so. i also know *where* the issue is, but i want to be sure as much as i can be that the update for this would not break things elsewhere for people that have other settings….

                                (in the next few days i would think i should have this done though in any event)

                                in reply to: Currency switcher for WP Pizza prices? #56018
                                Olly
                                Admin & Mod

                                  there’s also more here
                                  https://docs.wp-pizza.com/developers/?section=change-prices-of-menu-items-depending-on-day-of-week
                                  and here
                                  https://docs.wp-pizza.com/developers/?section=prices-output-in-loop

                                  (all depends on how complicated you want to make this thing and indeed if you want to actually allow to order in a different currency too)

                                  in reply to: Currency switcher for WP Pizza prices? #56017
                                  Olly
                                  Admin & Mod

                                    there is nothing inbuilt, but i suppose you could use the currency filter
                                    https://docs.wp-pizza.com/developers/?section=currency
                                    to change the currency in conjunction with some dropdown/select and xchange rate setting
                                    alongside filtering the (wppizza)post meta values for the wppizza post types posts (what’s what in the meta values should be reasonably obvious from the array keys)

                                    in reply to: WPPizza – Rewards #56016
                                    Olly
                                    Admin & Mod

                                      >Since there is no specific topic for this plugin I’ll just ask here.
                                      that’s fine (and the right place anyway)

                                      >Is it possible to set rewards for each type of gateway
                                      at the current time: no, sorry. and there are currently no plans to implement this in the foreseeable future (not unless this is going to be requested many times)

                                      >We also want to be able to make a difference between customers who pay in the shop at pickup and those who pay on-line
                                      you could set discounts/surcharges for each gateway if you wanted, but there is nothing regarding different kind of rewards for different payment methods (see above)

                                      thanks

                                      in reply to: Order for the next day open #55996
                                      Olly
                                      Admin & Mod

                                        ok, thanks for all the info. i can actually reproduce this now here – that’s a good thing – when i use your settings
                                        just need to find out what causes the issue. probably related to only using whole days as noone else has reported this issue, but my guess would also be that most shops will have some sort of timeintervalls
                                        anyway, we’ll see. cannot give you any ETA though at the moment as to when this will be fixed, as I do not know yet what the issue is, but will keep you posted

                                        in reply to: Order for the next day open #55994
                                        Olly
                                        Admin & Mod

                                          one more thing (though unlikely to make any difference really, just mentioning it )
                                          your closing times from monday tuesday and thursdays under “Closed” in your “wppizza -> openingtimes” settings are completely unnecessary. you have already set those days as closed in the regular opening tims

                                          in reply to: Order for the next day open #55986
                                          Olly
                                          Admin & Mod

                                            when you say
                                            “…it states sunday as 0 and in pre-order sunday is 7…”
                                            where exactly are you seeing this sunday == 7 please ?
                                            there is nothing in the php of the preorder plugin – not that I’m aware of anyway – that makes any reference to any specific weekday

                                          Viewing 20 posts - 301 through 320 (of 4,433 total)