Olly

Forum Replies Created

Viewing 20 posts - 3,361 through 3,380 (of 4,446 total)
  • Author
    Posts
  • in reply to: Problem with Internet Explorer 11 #9920
    Olly
    Admin & Mod

      ok,i’ll test a few things.
      ignore any orders from email dev[at]wp-pizza.com

      in reply to: Problem with Internet Explorer 11 #9914
      Olly
      Admin & Mod

        a link would help perhaps…….

        Olly
        Admin & Mod

          huh ?
          what kind of metadata are you looking for and more importantly why would you even need to write/edit any to do this

          and even more importantly i would also suggest you add your own entry to the options table (or whereever/ whatever you need to do) rather than possibly pollution things elsewehere

          in reply to: Sorting ingredients #9900
          Olly
          Admin & Mod

            click on “view sort” and type in the number (specifically made available for this case)

            oh ,and save of course

            in reply to: new getway development #9894
            Olly
            Admin & Mod

              at the moment , all i can refer you to is this i’m afraid (just talking about the last paragraph there “Furthermore and in due course…..etc” – ignore the rest )

              https://support.wp-pizza.com/additional-gateways/

              in reply to: Does Stripe payment work with mobiles? #9893
              Olly
              Admin & Mod

                PS: if you do not want to wait for it, you should be able to download the stripe update from your account here https://support.wp-pizza.com/checkout/purchase-history

                in reply to: Does Stripe payment work with mobiles? #9892
                Olly
                Admin & Mod

                  i know, i just released an update (my guess is the stripe API has changed)

                  however, i also noticed that the stripe update does not show up in the plugins page. this is something i’ll have to fix in the main plugin (hopefully tomorrow)

                  so when an update to the main wppizza plugin is released (i.e v2.11.8.15), update it and you should also see an update – in due course (some hours perhaps) – for the stripe gateway

                  Olly
                  Admin & Mod

                    up to a point anyway. kind of depends on the supposed precise workings / requirements of it .

                    if you really want to get your hands dirty and add some more/other/advanced/customised fields to the checkout process (which get printed in emails etc) the following snippet would be a good starting point i would think

                    https://support.wp-pizza.com/topic/adding-customer-checkout-fields/
                    (in this case just the “wppizza_filter_formfields_order” filter would probably be the starting point)

                    in reply to: Discount code not excluding certain dishes #9781
                    Olly
                    Admin & Mod

                      >Exact same issue as stated on this thread…

                      all i can say is – as far as i know – this has been fixed. having said that, that doesn’t mean that there might not be issues.
                      however, unless i can see the options set, there isn’t much i can do as i would have to reproduce it first with your settings/options set.

                      if you don’t mind though, please start a new topic as this thread is starting to get a bit messy now

                      >..it’s not an important fix you have done so much already fixing other issues!

                      not the point of course. if it’s part of the plugin and it doesn’t work, i should/will fix it (kind of silly to have an option that doesn’t work). So if you can show me settings/options and an example that throws that error I will have a look at the issue. (first i will have to try to reproduce it of course )

                      in reply to: Discount code not excluding certain dishes #9759
                      Olly
                      Admin & Mod

                        that’s way too abstract.

                        screenshots/details/link where to see the behaviour as well as expected behaviour….etc etc please…

                        in reply to: submit order email address #9709
                        Olly
                        Admin & Mod

                          >How do I post a screen shot here?

                          you just upload a screenshot somewhere (dropbox for example) and post a link to it

                          in reply to: Payment cannot go through #9706
                          Olly
                          Admin & Mod

                            that css is set by your theme so you should ask your themedevelopers how to change it .

                            btw, you are also caching pages you should not be caching !!!
                            please read this:
                            https://support.wp-pizza.com/topic/things-to-do-on-first-install/
                            and specifically this
                            https://support.wp-pizza.com/topic/using-a-cache-plugin/

                            in reply to: Payment cannot go through #9704
                            Olly
                            Admin & Mod

                              stripe requires a minimum value of 0.50 !! (as you would otherwise have more charges than what you are charging for)

                              in reply to: how to access list of categories #9701
                              Olly
                              Admin & Mod

                                i know nothing about scroll spy (i don’t even know what it is or is supposed to be) and have no intention to find out to be honest.

                                if you want to customise things in a certain way to do whatever it is you want to do than great and have fun, but that’s really your job.

                                furthermore, if you need to do things in scroll spy, then surely it’s their support/forum where you should be asking things , no ?

                                there are also a bunch of action hooks you can use in the loops to do/add things in various places if you need to …in case that’s what you are looking for, but then again i have no idea what you need..

                                in reply to: submit order email address #9697
                                Olly
                                Admin & Mod

                                  it works with any email addresses (provided your server is configured correctly and the emails exist of course)
                                  got a screenshot of what you have there ?

                                  >What does that mean
                                  it means that no extra ingredients have been added yet …..

                                  >how can I eliminate that section
                                  you can’t because it would make having that whole plugin totally pointless as that’s the section where added ingredients are being added to/shown for your customer
                                  (you can rename that piece of text though..)

                                  in reply to: Help….Last clarifications print SMS / GPRS #9689
                                  Olly
                                  Admin & Mod

                                    actions/filters/function belong in your themes functions.php

                                    in reply to: how to access list of categories #9687
                                    Olly
                                    Admin & Mod

                                      >how to access a list of the categories…

                                      just like any other category. in this case probably appearance->menus => wppizza categories

                                      in reply to: Help with total amount code #9686
                                      Olly
                                      Admin & Mod

                                        might want to check the attributes of the shortcode again……
                                        https://support.wp-pizza.com/topic/wppizza-shortcodes/

                                        value=’items’ (optional[str]: if set to ‘items’, only the total value of items will be displayed without delivery costs, discounts etc)

                                        in reply to: wppizza_add_category_hidden_field #9677
                                        Olly
                                        Admin & Mod

                                          in fact, you probably want to (read should) compare all the do_action calls in your template with the ones in the current one you can find in wppizza/templates/ to add the missing arguments.
                                          ie.

                                          
                                          	do_action('wppizza_loop_outside_start',$the_query);
                                          should read
                                          	do_action('wppizza_loop_outside_start', $the_query, $options, $termSlug, $categoryId);
                                          
                                          	do_action('wppizza_loop_outside_before',$the_query);
                                          should read
                                          	do_action('wppizza_loop_outside_before', $the_query, $options, $termSlug, $categoryId);
                                          

                                          and so forth

                                          (just compare the two files, searching for “do_action” hooks)

                                          if you do not, it won’t break things, but i would recommend you do, to make sure future versions behave too in case some functions relay on these arguments

                                          (hope the above makes sense)

                                          in reply to: wppizza_add_category_hidden_field #9676
                                          Olly
                                          Admin & Mod

                                            you are (probably) using quite on old and customized version of the loop template in your themes directory. (before october 2014)
                                            may that be wppizza-loop.php or wppizza-loop-responsive.php

                                            if that is the case (let me know if it is not) you will find in that template (approx line 227 or so i would think, or possibly approx line 302, depending on version)

                                            a line that reads :

                                            
                                            	do_action('wppizza_loop_inside_after_content', $postId);
                                            

                                            or similar.

                                            change/amend it to read the following

                                            
                                            	do_action('wppizza_loop_inside_after_content', $postId, $options, $termSlug, $categoryId);
                                            

                                            i.e add the missing 3 arguments

                                            and you should be fine (it’s just a php notice but annoying i know. just could not be helped at the time)

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