Olly

Forum Replies Created

Viewing 20 posts - 361 through 380 (of 4,430 total)
  • Author
    Posts
  • 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

                                    Olly
                                    Admin & Mod

                                      should be fixed now as of 3.6.4
                                      thanks for letting me know

                                      in reply to: Previous/Next Month Buttons same class as for Time Buttons #54878
                                      Olly
                                      Admin & Mod

                                        >And sorry for explaining it so horribly
                                        nothing to apologise for.
                                        happens often enough that I don’t read things properly either so it evens out no doubt over time….

                                        in reply to: Previous/Next Month Buttons same class as for Time Buttons #54876
                                        Olly
                                        Admin & Mod

                                          ok, now i understand (i thought you were referring to something *you* had added)
                                          i need to look at the plugin anyway so will see what i find on that front too (looking at the js code you posted above it does indeed look like it’s not targeted as it should be, thanks )

                                          in reply to: Previous/Next Month Buttons same class as for Time Buttons #54873
                                          Olly
                                          Admin & Mod

                                            first of all: i dont know why you need that extra code if the previous next months are already not appearing if there’s nothing to choose from (unless you found a bug there somewhere , in which case please direct me to the url where i can see this)

                                            other than that, there’s no “bug” here with the classes they are the same as they are both prev/next if you want to target them separately use the parent element classes as selector (i.e xdsoft_monthpicker and xdsoft_timepicker)

                                          Viewing 20 posts - 361 through 380 (of 4,430 total)