Olly

Forum Replies Created

Viewing 20 posts - 3,821 through 3,840 (of 4,446 total)
  • Author
    Posts
  • in reply to: I have dragged and dropped my categories, but… #7268
    Olly
    Admin & Mod

      if it works, i’m not complaining ( though this doesn’t make much sense to me).
      you ARE (under screen options) displaying more than just a few categories , right ?
      (or if not , do you have pagination there now ?)

      just trying to find out how this could even be the case as it’s – mainly – wp’s inbuilt category stuff

      did you – by any chance – install the plugin 2x for some reason ?

      in reply to: I have dragged and dropped my categories, but… #7266
      Olly
      Admin & Mod

        sorry , scrap that PS. i guess the issue is that you have 19 . need to have a look at the admin

        in reply to: I have dragged and dropped my categories, but… #7265
        Olly
        Admin & Mod

          PS: if you have 9 categories it will – of course – show 9 categories….

          in reply to: I have dragged and dropped my categories, but… #7264
          Olly
          Admin & Mod

            can i have admin access to your site to have a look please (use the “set as private reply option” below

            in reply to: I have dragged and dropped my categories, but… #7262
            Olly
            Admin & Mod

              assuming you are using pages (install 1 ) AND the navigation widget : you should not do that without creating the right template
              please see here

              https://www.wp-pizza.com/topic/navigation-widget/

              regarding catregories

              please go to wppizza->tools, enable “repair categories” and save. (let me know if your categories are all accessible again after you’ve done that )

              in reply to: I have dragged and dropped my categories, but… #7260
              Olly
              Admin & Mod

                hmm, replying to a 2 year old topic …

                in any case, chances are you are using pages to display the categories (i.e install option one)

                https://www.wp-pizza.com/topic/things-to-do-on-first-install/

                so the page names will be the page names and the categories therein will be the category you have (still perhaps) set in the shortcode used on the page

                so , yes, if the page is supposed to have a different name, you have to set it as that name and if you want the pages to be in a different order, set the order of the pages…

                in reply to: Terms and Conditions #7207
                Olly
                Admin & Mod

                  you can enter html in there !!!

                  e.g under Legal [enable some formfields or text/links you might want to use and/or make required]

                  
                  label-> <a href="your-link-to-your-t-and-cs" target="_blank">Accept Terms and Conditions</a>
                  enabled->check
                  required->check
                  type->checkbox
                  

                  save

                  (just some dummy stuff, but that should get you on your way i would have thought, no ?)

                  in reply to: Pre-Order not working #7195
                  Olly
                  Admin & Mod

                    PS:
                    > i will also have to update the timed menu plugin

                    should of course have read “preorder” plugin

                    in reply to: start with asking for their address #7194
                    Olly
                    Admin & Mod
                      in reply to: start with asking for their address #7191
                      Olly
                      Admin & Mod

                        not really (can’t even see why)

                        in reply to: Pre-Order not working #7188
                        Olly
                        Admin & Mod

                          >has something to do with the ajax loading

                          yes, it does, but the problem is that the ajax only loads/gets the page content (so it seems) and not the scripts/css that are – normally – loaded/enqueued by that page

                          just released 2.11.7.3 which *should* solve your update order status on the order page for starters
                          (just enable wppizza->settings->load css and js on all pages) .

                          I just need to update the preorder thing to adhere to that setting too. shouldnt take too long

                          in reply to: Pre-Order not working #7186
                          Olly
                          Admin & Mod

                            ok, i have access now (not to everything , but to everything i need)

                            the problem is that your theme (seemingly) hijacks all pagelinks, so no page id gets ever passed along and scripts that only get loaded on the page where they are needed do not get included, hence stuff doesn’t work

                            you will see that http://new.elmexicano.net.au/joondalup/orders/ works just fine, whereas
                            http://new.elmexicano.net.au/joondalup/our-menu/#!/orders/ doesn’t (including the “update order” button btw)

                            although i question the wisdom of doing this sort of thing in the first place i can – probably – add an option (which will be under wppizza->settings) which will include all scripts on on all pages (i will not make that the default, so you will have to enable that in the next update (later today i would think)

                            i will also have to update the timed menu plugin to reflect that (you will see an update in your dashboard when it’s released…also later today i would have though

                            apart from that , you also definitely want to update the add ingredients plugin (as you seem to be using a multisite setup) as you currently have this problem too

                            https://www.wp-pizza.com/topic/add-ingredients-items-not-going-into-cart/

                            in reply to: after every order #7180
                            Olly
                            Admin & Mod

                              as of v2.11.6 the following – somewhat less convoluted – could be used instead

                              
                              add_action( 'wppizza_on_order_executed', 'my_sms_email2fax_function');
                              function my_sms_email2fax_function($orderId) {
                              require(WPPIZZA_PATH.'classes/wppizza.order.details.inc.php');
                              $orderDetails=new WPPIZZA_ORDER_DETAILS();
                              $orderDetails->setOrderId($orderId);
                              $order=$orderDetails->getOrder();
                              /***********************************************
                              customer details
                              ***********************************************/		
                              $customerDetails=$order['customer']['post'];//customer details
                              /***********************************************
                              other simplified variables to use if you want
                              if you want to build your own output
                              ***********************************************/
                              //$siteDetails=$order['site'];//site specifics - probably only  useful in multisite setups
                              //$orderDetails=$order['ordervars'];//details of order (transaction id etc)
                              //$txt=$order['localization'];//localization variables
                              //$cartitems=$order['items'];//items in cart
                              //$orderSummary=$order['summary'];//summary of order
                              /***********************************************
                              example to get you going:			
                              if you were to un-comment the above
                              simplified variables, the below $email variable
                              would output the same details/html you will see
                              when clicking on "print" in the admin order history
                              next to an order
                              ***********************************************/
                              //ob_start();
                              //require_once(WPPIZZA_PATH.'templates/wppizza-order-print.php');
                              //$email = ob_get_clean();
                              /************************************************
                              [sms example - for this ignore the variables commented out above ]		
                              assuming you are using the "ctel" field for the customer telephone number. 
                              (if you are using a custom field for the customers tel no. it would be ccustom1, ccustom2 etc)
                              ************************************************/
                              $customerTel=$customerDetails['ctel'];		
                              /**now implement however your sms/email2fax gateway implements things to send things to that tel/fax no**/
                              //->send your sms to $customerTel		
                              //->send $email to email2fax gateway 
                              //-> etc
                              return;
                              }
                              
                              in reply to: Different ingredients on different meal sizes #7179
                              Olly
                              Admin & Mod

                                the only way to do that – at the moment at least – would be by hiding those by css
                                i’ll put it on my idea of list of things to do though, but no ETA

                                in reply to: start with asking for their address #7178
                                Olly
                                Admin & Mod

                                  sure, just write some code that does that using some action hook of some sort

                                  in reply to: "Add Ingredients" Items not going into cart #7167
                                  Olly
                                  Admin & Mod

                                    🙂 – no worries
                                    i actually introduced that bug a few days ago , but didn’t hear about it until yesterday and it – quite literally – only got fixed an hour or so ago

                                    not boring you with details, but i had to make those session handling changes for som options to be available in a multisite setup (in your paren/master site go to wppizza->settings and you’ll see some multisite options. although these may of course not be useful to you, they are useful to a bunch of other people

                                    anyway, glad it works now….

                                    in reply to: "Add Ingredients" Items not going into cart #7165
                                    Olly
                                    Admin & Mod

                                      oh , and of course, if the updates make this work or still cause issues, let me know too please either way

                                      in reply to: "Add Ingredients" Items not going into cart #7164
                                      Olly
                                      Admin & Mod

                                        first question: is this a multisite setup ?
                                        if so please do the following (and even if this is not the case, update it anyway )

                                        update the main plugin (to 2.11.7.2) as well as the add ingredients (to 4.5.4)

                                        either way , let me know please if multisite just to make sure i know where to look

                                        in reply to: Pre-Order not working #7154
                                        Olly
                                        Admin & Mod

                                          >You should be an administrator now. See email.

                                          haven’t received any ?!

                                          Olly
                                          Admin & Mod

                                            not at the moment i’m afraid, (i do understand the reasons why you are asking though)
                                            will put it on my list of things to do though

                                          Viewing 20 posts - 3,821 through 3,840 (of 4,446 total)