Olly

Forum Replies Created

Viewing 20 posts - 321 through 340 (of 4,433 total)
  • Author
    Posts
  • in reply to: Order for the next day open #55985
    Olly
    Admin & Mod

      thanks for all the info. one more question though please.
      what day of the week do you have “Week Starts On” set to in your general wordpress setting (wp-admin/options-general.php) ?

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

        your screenshot is a 404 ?!

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

          can i see a screenshot of
          – the setting in the plugin (wppizza->preorder)
          – your main opening times (wppizza->openingtimes)
          alongside the version of the preorder plugin you hare using ?

          thanks

          in reply to: Date format #55623
          Olly
          Admin & Mod
            in reply to: Date format #55621
            Olly
            Admin & Mod
              in reply to: Replace transaction id with order id on thank y ou page #55616
              Olly
              Admin & Mod

                you can change it if you want, but you’ll probably make it unnecessarily complicated for yourself to find an order in your mollie account if any question regarding payment’s should ever arise

                all up to you though

                in reply to: Replace transaction id with order id on thank y ou page #55601
                Olly
                Admin & Mod

                  something along these lines i guess (though unless you are only accepting COD type order , removing transaction id’s may not be a good idea , but up to you of course)

                  
                  add_filter('wppizza_filter_transaction_details', 'my_custom_transaction_details', 10, 3);
                  function my_custom_transaction_details($tx_keys, $type, $order){
                  /*
                  get selected (filterable) parameters
                  available keys:
                  [wp_user_id] [order_update] [order_delivered] [notes] [payment_gateway] [payment_status] [user_data]
                  [ip_address] [order_date] [order_id] [payment_due] [pickup_delivery] [payment_type] [payment_method]
                  [transaction_id] [total]
                  */
                  /* example : adding order id */
                  $tx_keys[] = 'order_id';
                  /* 
                  example: removing transaction_id 
                  (wppizza version <= 3.13.1)
                  */
                  $_keys = array_flip($tx_keys);//flip key/value
                  $_txid_key = $_keys['transaction_id'];//get key for tx_id
                  unset($tx_keys[$_txid_key]);//remove tx id from array
                  /* 
                  example : removing transaction_id 
                  as of wppizza 3.13.2+ you will be able to 
                  simply do the following instead 
                  */	
                  unset($tx_keys['transaction_id']);
                  return $tx_keys;
                  }
                  
                  in reply to: Quantities not adding from Add ingredients #55576
                  Olly
                  Admin & Mod

                    the quantity input that has been added on that site is not something that wppizza does so i cannot comment really as to why it does not do what you want it to do.

                    in reply to: add-to cart Button color #55321
                    Olly
                    Admin & Mod

                      Glad to hear you got it solved

                      in reply to: add-to cart Button color #55305
                      Olly
                      Admin & Mod

                        please use your browsers element inspector to identify classes of elements . your css is trying to target something that does not exist

                        in reply to: Saferpay Warning #55200
                        Olly
                        Admin & Mod

                          no. i mean get rid of it, delete it, omit it, eliminate it ….. ( clearer now ? 🙂 )
                          filters just don’t work that way

                          in reply to: Saferpay Warning #55182
                          Olly
                          Admin & Mod

                            get rid of

                            
                            $styles = apply_filters('wppizza_ingredients_filter_email_styles', $styles );
                            

                            it doesnt belong there

                            in reply to: Saferpay Warning #55180
                            Olly
                            Admin & Mod

                              as that’s – evidently – an issue thrown in
                              >/wppizza-customisation/wppizza-customisation .php on line 16

                              only you will know what’s on line 16 there . There is no (official) plugin called ‘wppizza-customisation’ so i assume it’s something you created and added things to

                              in reply to: Cash only when pickup #55179
                              Olly
                              Admin & Mod

                                if you enable debug
                                https://docs.wp-pizza.com/troubleshooting/

                                I’m sure it will tell you what the issue is

                                in reply to: Customer login with widget #55130
                                Olly
                                Admin & Mod

                                  Sorry, but I really cannot advise you on other plugins
                                  However, regarding registration spam, that typically has nothing to do any kind of login widget anyway (spammers typically don’t click on links but attack things programmatically)

                                  What i *can* say is that i killed a lot of registration spam by adding this recently: https://wordpress.org/plugins/ban-hammer/

                                  it’s a bit quirky in places (and somewhat brute force) but in my case it stopped a lot of obviously fake registrations – it’s a start i guess and there are of course 1000’s of other security plugins anyway that [claim] to deal with this stuff too but that’s all down to personal preference and particular setup of course as to what is the right way for you

                                  in reply to: Order sorting no longer working with pre-order times #54970
                                  Olly
                                  Admin & Mod
                                    This reply has been marked as private.
                                    in reply to: Order sorting no longer working with pre-order times #54969
                                    Olly
                                    Admin & Mod

                                      >…I ask the question…
                                      fair enough though – no harm done in asking i would say . not everyone knows or is supposed to know how this stuff works of course. They are producing food, not software, after all.

                                      in reply to: Order sorting no longer working with pre-order times #54967
                                      Olly
                                      Admin & Mod

                                        That update (in fact that whole plugin) hos nothing at all to do with email deliveries / bounces etc .
                                        so – unless I am completely misunderstanding what you mean by “order confirmation emails for customers being bounced back ” this has nothing at all to do with that update or indeed that plugin

                                        in reply to: Cash only when pickup #54961
                                        Olly
                                        Admin & Mod
                                          in reply to: Order sorting no longer working with pre-order times #54908
                                          Olly
                                          Admin & Mod

                                            quick update:
                                            i believe as of version 3.6.4 (of the preorder plugin) this is now fixed, but let me know if you still have issues of course

                                          Viewing 20 posts - 321 through 340 (of 4,433 total)