Olly

Forum Replies Created

Viewing 20 posts - 2,161 through 2,180 (of 4,447 total)
  • Author
    Posts
  • in reply to: Thermal Printer Template Text Wrap #23164
    Olly
    Admin & Mod

      >…I cannot edit how large is PAYMENT TYPE / PAYMENT METHOD and TRANSATION ID, cannot find them in the Print Order template.

      what do you mean you cannot edit?
      says it right there in your own css (font-size)

      
      #overview #order_id td{font-size:150%;text-align:left}
      #overview #payment_due td{font-size:170%;text-align:left}
      #overview #pickup_delivery td{font-size:180%;text-align:left;white-space: wrap}
      #
      

      furthermore, it seems to me your printer sets silly margins. Looks like half your paper is wasted…

      in reply to: Item in cart is for mobile empty #23078
      Olly
      Admin & Mod

        without a link to your site, i cannot tell you anything

        in reply to: Allow a custom text before dropdown in Post/Zipcode popup #23072
        Olly
        Admin & Mod

          >using the following CSS snippet
          lol, very creative !

          i guess i could add a filter or optional textfield there. will make a note of that

          in reply to: Sales Reporting | Fields to choose for monthly sales report. #23071
          Olly
          Admin & Mod

            personally , i do not know what’s complicated about the report as it is.
            it simply has columns and values and if you do not need the reporting per individual day , the actual reporting screen already provides the basics….

            However, of course, i cannot know how exactly you need what for your situation (therefore the action hook provided)

            in reply to: Sales Reporting | Fields to choose for monthly sales report. #23070
            Olly
            Admin & Mod

              to adjust the report to your own needs you can use the following action hook

              
              		/* export your own report if you want */
              		do_action('wppizza_custom_report', $dataset);
              

              which can be found in inc/admin.report.functions.php
              i would suggest you copy the wppizza_report_export function in it’s entirety (without that action hook or you’ll end up in an infinite loop), rename it to a function name of your choosing , adkust waht you want to output, and use the action hook to run this on export

              there are already to constanst you could define like so in your wp-config.php

              
              define('WPPIZZA_OMIT_REPORT_GATEWAYS_SUMMARY', true)
              define('WPPIZZA_OMIT_REPORT_ORDER_STATUS_SUMMARY', true)
              

              which would already omit those 2 summaries from your report(s)

              in reply to: Menu Copy #23069
              Olly
              Admin & Mod

                clone first and then set the options that differ i would have thought

                in reply to: Menu Copy #23067
                Olly
                Admin & Mod

                  there are plenty of cloning plugins out there. which one is appropriate depends really

                  in reply to: Update breaks Ingredients #23014
                  Olly
                  Admin & Mod

                    of course, let me know – after update – if you still have issues
                    thanks

                    in reply to: Update breaks Ingredients #23013
                    Olly
                    Admin & Mod

                      thanks for flagging this.
                      last nights update broke this – sorry about that – please update to 2.16.11.14 when it shows up in your dashboard (essentially it’s reverted back to 2.16.11.12)

                      in reply to: Add button to delete item from minicart #22992
                      Olly
                      Admin & Mod

                        in which case it removes one by one (if there are more than one of an item in the cart)
                        that by design as there are serious space constrictions in the cart

                        that said, in v3.x (a little bit away yet), there will be an option to enable this for all cases

                        in reply to: Adding Comments Section #22959
                        Olly
                        Admin & Mod

                          wppizza->add ingredients -> “custom group” -> “add custom ingredients group” -> “select group to customise” == select “– add textbox to item —” here and set resulting options as required

                          in reply to: place order-empty cart #22936
                          Olly
                          Admin & Mod

                            without a link i can only make an educated guess which would be that you are caching the order page when you should not

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

                            in reply to: Delivery by Post/Zip Code Additional Fee #22925
                            Olly
                            Admin & Mod
                              This reply has been marked as private.
                              in reply to: Delivery by Post/Zip Code Additional Fee #22910
                              Olly
                              Admin & Mod

                                >was just wondering how this can be done
                                only by rewriting chunks of the main plugin and then doing the same accordingly for the DBP one
                                (but that’s not going to happen anytime soon I’m afraid )

                                >Thank your response and your time.
                                no problem

                                in reply to: Delivery by Post/Zip Code Additional Fee #22906
                                Olly
                                Admin & Mod

                                  this is simply not implemented.

                                  more importantly, this is not an issue – so to speak – with the “Delivery by Post/Zip Code” plugin, but the way the main wppizza plugin works (the “DBP” plugin just hooks into/filters the options the main plugin offers)

                                  in reply to: Delivery by Post/Zip Code Additional Fee #22893
                                  Olly
                                  Admin & Mod

                                    sounds contradictory to me
                                    a) <= 3 miles | < 20 == +2.5 | >= 20 free (fine)

                                    b.1) > 3 miles | < 20 == +3.5 | >= 20 free (fine)
                                    b.2) > 3 miles | < 20 == +3.5 | >= 20 +1 ??

                                    you cannot say b.1/b.2: >= 20 [free] AND >= 20 [+1]

                                    i must be missing something ….??

                                    in reply to: Wppizza Mini Cart at Bottom #22889
                                    Olly
                                    Admin & Mod

                                      just like you did on that other site I would have thought – no jQuery selectors needed

                                      
                                      #wppizza-mini-cart.wppizza-mini-cart-static{
                                      bottom: 0;
                                      top: auto;
                                      }
                                      

                                      using custom css

                                      Olly
                                      Admin & Mod

                                        try this one

                                        
                                        $orderinfo= apply_filters('wppizza_filter_orderhistory_order_info', $orderinfo, $orders->id, $customerDet, $orderDet, $blogid, $orderStatus, $orders->order_date);
                                        

                                        i assume you know how filters work. $orderinfo returns an array of the various parts you can inject things into as required

                                        Olly
                                        Admin & Mod

                                          >On mobile, there isn’t currently no visual feedback when a product is added to the cart.
                                          not correct.
                                          wppizza->layout: “Briefly display text in place of price when adding item to cart”
                                          applies to all devices

                                          i think we might be talking about different things when using the “minicart” term.
                                          what i call “minicart” is the one that only displays the total and a view cart button – typically at the very top of tha page – and is already only 50px. if you want it at the bottom, just set the css to put it there

                                          in reply to: Add button to delete item from minicart #22843
                                          Olly
                                          Admin & Mod

                                            that’s true

                                          Viewing 20 posts - 2,161 through 2,180 (of 4,447 total)