Olly

Forum Replies Created

Viewing 20 posts - 1,401 through 1,420 (of 4,446 total)
  • Author
    Posts
  • in reply to: mutiple closing and opening times within one day #35261
    Olly
    Admin & Mod

      may i draw your attention to the “closed times” and the help screen in wppizza->opening times

      in reply to: GoodCom printers #35233
      Olly
      Admin & Mod

        i can assure you, what’s private there is irrelevant . (essentially it says configure the printer following the user manual, to pull orders in “php mode””

        its the original post that has the instructions

        that said, that’s also based on wppizza v2 in v3 this would have to be based on this
        https://docs.wp-pizza.com/developers/?section=action-wppizza_on_order_execute

        in reply to: Different Styles by device #35165
        Olly
        Admin & Mod

          typically you would do this kind of thing with css/css-mediaqueries
          but I suppose you could run some kind of device detection script and the filter the style variable using this filter

          https://docs.wp-pizza.com/developers/?section=filter-wppizza_filter_options

          accordingly

          in reply to: Ingredients WP Menu Name #35095
          Olly
          Admin & Mod

            in other words: you need to translate the plugin using the po files

            in reply to: Ingredients WP Menu Name #35094
            Olly
            Admin & Mod

              works the same as here
              https://docs.wp-pizza.com/faqs/?section=wppizza-in-other-languages

              except it’s the subdirectory of the add ingredients plugin (obviously) and the po file you need to create is
              wppizza_addingredients-de_DE.po reespectively

              in reply to: change product layout #35006
              Olly
              Admin & Mod

                >which file should I change
                none
                you should look at the shortcode attributes – especially the elements attribute
                https://docs.wp-pizza.com/shortcodes/?section=by-category

                in reply to: pick ingredients causing error on frontpage #35000
                Olly
                Admin & Mod

                  look at your console

                  Failed to load http://cp23.www1.dk/~peppesp/wp-admin/admin-ajax.php: No ‘Access-Control-Allow-Origin’ header is present on the requested resource. Origin ‘http://www.peppes-pizza.dk’ is therefore not allowed access.

                  in reply to: Different closing time for pickup and delivery #34975
                  Olly
                  Admin & Mod

                    already doable with these filters / functions

                    https://docs.wp-pizza.com/developers/?section=filter-wppizza_filter_options
                    https://docs.wp-pizza.com/developers/?section=global-wppizza-functions
                    i.e somethimg along these lines

                    
                    add_filter('wppizza_filter_options', 'my_prefix_my_options');
                    function my_prefix_my_options($wppizza_options){
                    
                    /* 
                    	on pickup , set your other closing times as you wish, 
                    	below closes shop everyday at 9PM 
                    	except on sunday where it will close at 8:30
                    */
                    if(wppizza_is_pickup()){
                    	$wppizza_options['openingtimes']['opening_times_standard'][0]['close'] = '20:30';//sun
                    	$wppizza_options['openingtimes']['opening_times_standard'][1]['close'] = '21:00';//mon
                    	$wppizza_options['openingtimes']['opening_times_standard'][2]['close'] = '21:00';//tue
                    	$wppizza_options['openingtimes']['opening_times_standard'][3]['close'] = '21:00';//wed
                    	$wppizza_options['openingtimes']['opening_times_standard'][4]['close'] = '21:00';//thu
                    	$wppizza_options['openingtimes']['opening_times_standard'][5]['close'] = '21:00';//fri
                    	$wppizza_options['openingtimes']['opening_times_standard'][6]['close'] = '21:00';//sat
                    }	
                    
                    return $wppizza_options;
                    }
                    

                    not tested as such but should work

                    in reply to: Make the font of the order bigger #34879
                    Olly
                    Admin & Mod

                      wppizza->templates

                      in reply to: The Order Form Setting #34821
                      Olly
                      Admin & Mod

                        because you must also enable them in wppizza->templates

                        in reply to: PHP 7.0 #34775
                        Olly
                        Admin & Mod

                          your problem is here :

                          PHP Fatal error: Uncaught Error: Call to undefined function mb_internal_encoding()

                          you must enable/install mbstring in your php (and unless you updated from a v2.x version of wppizza, or you moved things to a new host as it is, or you upgraded php without also enabling the same php extensions that were enabled in the previous php version (which seems to be the case here from what i can see) , you really should have received an error/warning to that effect)

                          you should ask you host to enable/install it

                          in reply to: single product page #34713
                          Olly
                          Admin & Mod
                            in reply to: New field/row for ingrediends in print template #34694
                            Olly
                            Admin & Mod

                              sorry, but this really is not anything like a simple thing to do
                              this is all added via filters (there is no “file” you could edit) as column counts also change dynamically
                              you would also most likely seriously run out of space you have in that column (which is why it is added underneath to stretch across all column)

                              more importantly, i also cannot see why this would be an urgent requirement or indeed what would be the actual benefit of doing this
                              Feel free of course to make a case for it and maybe i can make this an option one day (but even then , it’s not going to happen in the immediate future I’m afraid)

                              in reply to: Items that do not interfere with minimum total #34693
                              Olly
                              Admin & Mod

                                as of wppizza version 3.2.5 this – i believe – works again as intended

                                in reply to: Weird Critical Error #34692
                                Olly
                                Admin & Mod

                                  you see, the issue is, that i do not understand how your mail.log / program can say

                                  “….. recipients : [email protected], [email protected] ….. recipient address not accepted by server etc etc ”

                                  if the plugin simply does not do that.
                                  the email entered by the customer (i.e for this example [email protected]) is never in the main recipients list , but in the cc (unless you setup a separate template – which you have not – to send to the customer of course)
                                  so the mail sending program is failing the ENTIRE email even if only the cc is invalid ?
                                  surely , it should still send the stuff (and will get a bounce from the cc)

                                  can you talk to whoever administers your mailserver about this please as this makes no sense to me
                                  (PS wppizza 3.2.5 will also add a little more detail to those 10003 error emails to be able to dig a bit deeper if needs be )

                                  in reply to: Weird Critical Error #34618
                                  Olly
                                  Admin & Mod

                                    thanks for those
                                    could you also please post (or send to dev[at]wp-pizza.com) a screenshot of
                                    wppizza->templates ?
                                    thanks

                                    in reply to: PHP 7.0 #34603
                                    Olly
                                    Admin & Mod

                                      you have a jquery 500 error you need to fix
                                      look at your console

                                      in reply to: PHP 7.0 #34600
                                      Olly
                                      Admin & Mod

                                        and the error you are getting would be ….?

                                        in reply to: Weird Critical Error #34578
                                        Olly
                                        Admin & Mod

                                          actually , let me ask you another way first

                                          can you do an order on YOUR site with this kind of wrong email – i.e [email protected] – and let me know if you still get the same error /warning email ?

                                          maybe it’s a one-off due to caching issues (as you have removed version numbers from resources)

                                          in reply to: Weird Critical Error #34577
                                          Olly
                                          Admin & Mod

                                            > how to explain..
                                            that’s fine

                                            thing is, a wrong email by the customer should not trigger this email (i’ll spare you the details why not)
                                            as the error is – as it says – “EMAIL TO SHOP FAILED” which is about the email to the shop, not the customer
                                            let me see if i can reproduce this here with that @gmai.com

                                            (i might have to ask you for some admin screenshots at some point , but will try to reproduce this first )

                                          Viewing 20 posts - 1,401 through 1,420 (of 4,446 total)