Olly

Forum Replies Created

Viewing 20 posts - 901 through 920 (of 4,446 total)
  • Author
    Posts
  • in reply to: Self pickup – delivery address required #44478
    Olly
    Admin & Mod

      >If you mean this option
      yes, that’s exactly the option I meant. As it works just fine here from what I can see, can I have a link to your site please where I can see this not working ? thanks

      in reply to: Self pickup – delivery address required #44476
      Olly
      Admin & Mod

        Did you check out the options/settings of the plugin ?

        in reply to: Selected Group type doesn't work #44439
        Olly
        Admin & Mod

          perhaps also see the screenshots for the “breakfast example” here
          https://demo.wp-pizza.com/wppizza-add-ingredients/our-menu/user/

          in reply to: Selected Group type doesn't work #44438
          Olly
          Admin & Mod

            you must also add the one you want to have selected by default to a “preselect” group (which you may have to create – custom group type => preslect) if it does not exist yet)

            in reply to: Delete Order History after one day automaticly #44328
            Olly
            Admin & Mod

              You’ll have to write some sort of cronjob (or WP Cron)
              you could base this on the getting and deleting orders functions here
              https://docs.wp-pizza.com/developers/?section=function-wppizza_get_orders
              or of course use WP_Query itself or even your own sql statement

              essentially you need to query the [yourprefix]_wppizza_orders table by orde_date and delete the entries as you require
              be aware that every order id in that table might also have associated metadata in [yourprefix]_wppizza_orders_meta
              so you will want to get those too and delete the rows in that table as well or you will end up with orphaned entries in the meta table.

              alternatively – if you are really quite sure you want to delete all entries, simply truncate those 2 tables at whatever time is appropriate

              in reply to: € sign in ingredients #44281
              Olly
              Admin & Mod

                It follows whatever you have set in WPPizza->Layout-> Prices / Currency Symbols

                in reply to: Warning: [COD] – Payment Error #44267
                Olly
                Admin & Mod

                  >If the mail address or settings is wrong, should not I receive mail or
                  i cannot answer that question. it entirely depends on all your other settings
                  clearly though, if get the orders you are expecting to get , it works for you.
                  that “error” simply tells you that there’s something that’s – let’s say – somewhat suspect.
                  if you want to ignore it , feel free of course

                  I would however suggest you fix it as somewhere down the line you may *not* get your order notifications anymore as mailservers might consider this to be spam at some point if an email does not exists but you are setting it to be sent from that address – all depends on your mail server setup. (this is just a synopsis, there’s a lot of stuff that can come into play here)

                  You might also find that even though *you* get the emails, your customers do not .again, it all depends.

                  in short: use emails in your side of the setup that exist.

                  in reply to: Not getting notifications for orders #44266
                  Olly
                  Admin & Mod

                    >added the function from here …
                    that function does nothing when used with wppizza v3.x+ – that link you posted is almost 3 years old.
                    I have updated that particular post now though to make sure it’s obvious that this is old stuff.
                    Thanks for flagging it ….

                    (unless of course you are still using wppizza 2.x, but then you would not have an option to “enable notification” in the first place…, so I would make an educated guess you are on 3.x)

                    >I have enabled notifications on all admin pages,
                    can you post a screenshot of your settings ?

                    in reply to: Warning: [COD] – Payment Error #44256
                    Olly
                    Admin & Mod

                      says it pretty much all there .
                      somewhere in your email settings (templates perhaps or email in your wppizza->order settings)
                      you have set an email of [email protected] that does not exist/is unroutable

                      you’ll have to speak to the mail administrator of that domain to fix that (or of course not send to that email in the first place)

                      in reply to: get_orders_orderhistory is not defined anymore #44135
                      Olly
                      Admin & Mod

                        > Is there anyway to use this function again?
                        No. this has been removed as of 3.5 (internal functions are subject to change without notice and really should not be used for precisely that reason)
                        See also changelog of v3.5 in the plugin

                        refer to:
                        https://docs.wp-pizza.com/developers/?section=function-wppizza_get_orders
                        for a replacement that should be used by 3rd party development

                        in reply to: Market Price Value #44097
                        Olly
                        Admin & Mod

                          depends on what exactly you want to accomplish.
                          the easiest though would be to simply add some css declarations
                          i.e something like
                          #wppizza-article-prices-xxx {display:none}
                          or even (better probably, but depends on exactly how your prices are set up)
                          #wppizza-article-sizes-xxx {display:none}

                          where the ‘xxx’ equals the id of the menu item.
                          (might also want to have a look at https://docs.wp-pizza.com/developers/?section=frontend-css-styles-layout )

                          if you truly want to not display them at all (i.e not even in the sourcecode of the page) you’ll have to get your hand s dirty with some wordpress/php coding/filtering
                          (if you need that and are happy to do some php coding, let me know and i’ll find some filter that allows you to do that)

                          in reply to: gift items , when total order above X €? #44005
                          Olly
                          Admin & Mod

                            I’m afraid, there’s no add-on or option in the plugin that would currently enable such a thing, so it would have to be programmed by someone

                            (But generally speaking, sure, it’s possible)

                            in reply to: Geting the current discount/label name #43951
                            Olly
                            Admin & Mod

                              >So It seems that for some reason that a id 0…
                              what happens if you duplicate the one with id 0 and subsequently delete the one with ID 0 ?
                              (there *might* be an empty() check somewhere – which would also return true if the id == 0 – that should be isset() instead ) ?

                              in reply to: how to implementate, possible or not #43950
                              Olly
                              Admin & Mod

                                >product x …
                                simply add multiple textbox custom groups i.e
                                WPPizza -> Ingredients -> Custom Groups -> Select Group to Customise [– add textbox to item –] -> etc

                                >product y…
                                i dont understand what you want there exactly to be honest – especially the “or” bit – but perhaps the demos here (with screenshots) will give you an idea of how things work (comment 1 + 2 are as above)
                                https://demo.wp-pizza.com/wppizza-add-ingredients/our-menu/user/

                                in reply to: Geting the current discount/label name #43850
                                Olly
                                Admin & Mod

                                  > retrieve the currently applied discount by its ID…
                                  you could do something like this

                                  
                                  add_action('init', 'myprefix_discountids_applied');
                                  function myprefix_discountids_applied(){
                                  	/***
                                  	 session are per blog if multisite
                                  	***/
                                  	if(is_multisite()){
                                  		global $blog_id;
                                  		$session_key	= 'wppizza_cad_'.$blog_id;
                                  	}else{
                                  		$session_key	= 'wppizza_cad';
                                  	}	
                                  	
                                  	$discount_ids = $_SESSION[$session_key]['discount'];
                                  	
                                  	/*
                                  		now do something with the $discount_ids
                                  	*/	
                                  }
                                  

                                  >if I could determine if there are more than one discounts at play…
                                  the above will tell you if there’s one or more at play (as there will be none, one, or many id’s in that array)

                                  >apply your own logic…
                                  i suppose i could add a filter somewhere, however, if you want to apply your own logic you could also simply add your own discount(s) depending on your logic, using the wppizza_fltr_discount filter – which is essentially what the plugin does – along these lines

                                  
                                  add_filter('wppizza_fltr_discount', 'myprefix_apply_discounts',10, 3);
                                  function myprefix_apply_discounts($discountvalue, $session_items, $order_parameters){
                                  
                                  /* alter the current discount value as required */
                                  
                                  return $discountvalue;
                                  }
                                  
                                  in reply to: WPPIZZA->db->get_orders issue #43836
                                  Olly
                                  Admin & Mod

                                    thanks
                                    will be fixed

                                    in reply to: THANK YOU PAGE #43834
                                    Olly
                                    Admin & Mod

                                      Have you looked in your (javascript) console for errors ?
                                      Have you enabled debug – https://docs.wp-pizza.com/troubleshooting/ – and checked your debug log ?

                                      in reply to: WPML String Translation – Update #43797
                                      Olly
                                      Admin & Mod

                                        >it won’t happen again for any of your customers.
                                        absolutely.
                                        the problem is finding the exact steps to reproduce this though….

                                        have you tried getting the same result (error if you will) with all other non-wppizza and non-wpml plugins turned off ?

                                        >I noticed that this happens when browsing the products of wppizza step in the various languages to complete the description of the products.
                                        >I don’t know if this makes sense to you, I’ll open a ticket on wpml to see what they say.

                                        my guess would be it has something to do with an ajax request of some sort
                                        this may be a wppizza issue, may be a wpml issue. My honest guess would be it’s somewhere in the wppizza plugin.
                                        I’ll have to try and reproduce this though somehow first…..
                                        As mentioned , if you can reliably reproduce this , it would be great to get a step by step walkthrough so to speak so I can see where and how this happens

                                        in reply to: WPML String Translation – Update #43748
                                        Olly
                                        Admin & Mod

                                          PS: what version of wppizza btw ?

                                          in reply to: WPML String Translation – Update #43744
                                          Olly
                                          Admin & Mod

                                            Wppizza does not even come with any russian language files, so the first question is, where do the russian language strings come from ?

                                            secondly, what other plugins do you have installed. Assuming you are using WPML – does this also still happen if you dis-able *ALL* other plugins except WPML and WPPizza and use some default theme ?

                                            thirdly, is this reproducible ? i.e is there something particular one does / can do that causes this to happen every time ?

                                          Viewing 20 posts - 901 through 920 (of 4,446 total)