Olly

Forum Replies Created

Viewing 20 posts - 2,701 through 2,720 (of 4,447 total)
  • Author
    Posts
  • in reply to: Make discount option visible for non logged in users #16572
    Olly
    Admin & Mod

      feel free to type whatever you want to type wherever you want to type it
      you could also selectively display your message with a conditional in an action/filter of some sort if the user is not logged in.
      something like

      
      <?php
      if ( !is_user_logged_in() ) {
          echo 'special discounts for registered users';/*or whatever you want to say */
      }
      ?>
      

      there are endless ways to do this really

      in reply to: Custom product availability #16543
      Olly
      Admin & Mod

        just unchecking and hiding the checkbox does nothing. that value must be submitted to affect the calculations (unless in your case absolutely all values that are affected by pickup or delivery are the same).

        generally speaking – not knowing your exact scenario though – i would think your answer is in your own question
        > ………… how to trigger it? ……………..< http://api.jquery.com/trigger/

        in reply to: Print multiple times #16533
        Olly
        Admin & Mod

          having had a rummage myself as to whether printing multiple copies with cloudprint is doable or reasonably simple to setup with printers – i actually could not find anything straight forward…

          therefore 3.5.1 added a multiple copies option (though this might still slow things down somewhat depending on the number of copies)

          maybe this helps someone…

          in reply to: where is id of a menu item? #16504
          Olly
          Admin & Mod

            it *IS* the post id
            if it doesn’t work , you have to tell me what exactly doesn’t work and what exact shortcode you are using as it works just fine as far as i am concerned

            in reply to: Custom css – for menu bar #16492
            Olly
            Admin & Mod

              menu bars will be your theme’s responsibility (unless we are talking about different things)
              so you will have to ask the theme developers

              in reply to: Change display of additional ingredients #16485
              Olly
              Admin & Mod

                not exactly sure i understand the exact sorting order you are after, but you have the following option

                – the ingredients themselves are drag/droppable to set the order they appear in
                – in the options screen you can also set the order of ingredients when/after they were added in a few ways (*Added* ingredients display options)
                – if you put ingredients into custom groups , there are also a number of settings there per group
                such as “Do not display prices after individual ingredients” and “Sort by price first ”

                i would have thought with a combination of those you should be able to do what you need

                in reply to: Print multiple times #16462
                Olly
                Admin & Mod

                  PS: at the moment i can only come up with running the thing 2x by adding the following to your functions php

                  
                  add_action( 'wppizza_on_order_executed', 'my_wppizza_google_cloudprint', 99);
                  function my_wppizza_google_cloudprint($orderid){
                  	$wppizzaGCP=new WPPIZZA_GOOGLE_CLOUDPRINT();
                  	$wppizzaGCP->wppizza_google_cloudprint_order($orderid);
                  	return;
                  }
                  
                  

                  not tested, but will probably also slow down the last stage of actually submitting the order as it will be running 2x of course…

                  or perhaps just adding

                  
                  add_action( 'wppizza_on_order_executed', 'wppizza_google_cloudprint_execute', 99);
                  

                  might also work

                  in reply to: Print multiple times #16461
                  Olly
                  Admin & Mod
                    This reply has been marked as private.
                    in reply to: Order does not send email #16458
                    Olly
                    Admin & Mod

                      sounds like the domain was blocked / blacklisted though, not the email as such

                      in reply to: Order does not send email #16456
                      Olly
                      Admin & Mod

                        @helen
                        then you already have your (possible) answers above

                        in reply to: Order does not send email #16436
                        Olly
                        Admin & Mod

                          and as the message gets send, there are no errors. what your email server/host considers spam is something you have to take up with them

                          in reply to: Order does not send email #16435
                          Olly
                          Admin & Mod

                            >where is debug data
                            if there are no errors , there is no debug data…

                            in reply to: Order does not send email #16433
                            Olly
                            Admin & Mod

                              >do you want the whole thinmg?
                              no

                              all the info you need is in that message you’ve received.
                              “For more information, please see….”

                              in reply to: Order does not send email #16431
                              Olly
                              Admin & Mod
                                in reply to: Order does not send email #16429
                                Olly
                                Admin & Mod

                                  you could also – temporarily perhaps – set the mail delivery to “HTML” as that *might* give you more info on what the problem is

                                  in reply to: Order does not send email #16428
                                  Olly
                                  Admin & Mod

                                    also, did you set an appropriate “from” email address ?
                                    does that error say just “Could not instantiate mail function” or is there more info after that ?

                                    “Could not instantiate mail function” could have many many reasons.

                                    although from a different plugin, perhaps the following checklist is worth reading through too
                                    https://support.mailpoet.com/knowledgebase/could-not-instantiate-mail-function/

                                    (or here of course
                                    https://www.google.co.uk/?gws_rd=ssl#q=wordpress+could+not+instantiate+mail+function )

                                    being able to send a test mail from wordfence doesnyt really mean anything

                                    in reply to: Order does not send email #16426
                                    Olly
                                    Admin & Mod

                                      first question :
                                      when you said “I then disabled all plugins but wppizza.” did you also disable wordfence i.e disabled literally ALL other plugins ?

                                      in reply to: Trouble adding ingreients to items #16407
                                      Olly
                                      Admin & Mod
                                        This reply has been marked as private.
                                        in reply to: Trouble adding ingreients to items #16406
                                        Olly
                                        Admin & Mod

                                          >wp-mail cannot instantiate….

                                          could be a million things
                                          https://www.google.co.uk/?gws_rd=ssl#q=could+not+instantiate+mail+function

                                          in reply to: Trouble adding ingreients to items #16405
                                          Olly
                                          Admin & Mod

                                            >I added a cart to every page that helped.
                                            which is of course what you are supposed to be doing :)
                                            https://support.wp-pizza.com/forum/installation/

                                            >wp-mail cannot instantiate
                                            that’s a server problem, not a plugin problem. enable debug and check your logs
                                            furthermore, that error is likely to output more than just those 3 words…..

                                          Viewing 20 posts - 2,701 through 2,720 (of 4,447 total)