Olly

Forum Replies Created

Viewing 20 posts - 1,641 through 1,660 (of 4,446 total)
  • Author
    Posts
  • in reply to: Short Code #29813
    Olly
    Admin & Mod

      have you tried ?

      in reply to: Change language #29800
      Olly
      Admin & Mod

        i have re-added the language files (3.0.10)
        however, as many strings have changed (or did not even exist before) it will only partially be in german now
        please refer to the changelog

        in reply to: since major update, my custom responsive css dont work #29798
        Olly
        Admin & Mod

          one more thing (that might be some plugin, your theme or you yourself doing)
          removing version numbers from resources is a bad idea

          in reply to: since major update, my custom responsive css dont work #29797
          Olly
          Admin & Mod

            >Is there another css for the responsive part now active with another css rules?

            the css has now (up to) 4 files

            one general (for all styles)
            one for default
            one for responsive
            one for grid
            so one can mix and match layouts

            again though, simply use your bowser element inspector for classes etc
            and if you are really not getting declarations applied (because something else seomehwre messes things up) you can alwasy also try adding the !important attribute (though it would probably be better using the right distinct css )

            in reply to: since major update, my custom responsive css dont work #29796
            Olly
            Admin & Mod

              ok, the classes (and elements) have changed somewhat as some where not very descriptive
              furthermore, the name and the additives have their own elements WRAPPED into an h2

              your .wppizza-article still works
              .wppizza-article-tiers are now wppizza-article-prices (but using ul li’s etc )
              .h2.wppizza-article-title is simply .wppizza-article-title

              essentially use your browser elements inspector to find out whats what
              if you need to refer to an old (v2) version you can go here
              https://support.wp-pizza.com/twentytwelve/ (or any of the other demos available from the top dropdown on that page)

              in reply to: since major update, my custom responsive css dont work #29794
              Olly
              Admin & Mod

                ok, so a simple
                @media screen {
                /*some declaration *
                }

                also seems to work
                let me see what i can find on your site there

                in reply to: since major update, my custom responsive css dont work #29793
                Olly
                Admin & Mod

                  i’ll check a few things myself here too
                  will get back to you

                  in reply to: since major update, my custom responsive css dont work #29792
                  Olly
                  Admin & Mod

                    shouldn’t your
                    https://www.bravo-pizzaservice.de/wp-content/plugins/wppizza/css/wppizza.style.css
                    have some sort or rule / query – i.e width / screen whatnot ?

                    I must admit , I never actually tried it without so may be wrong. ?!?!? (please correct me if indeed i am wrong here)

                    in reply to: Shopping cart not working #29787
                    Olly
                    Admin & Mod

                      first of all,
                      is this an update from wppizza 2 or a new install ?
                      if it’s an update, did you read and follow the update instructions ?

                      regards
                      Oliver

                      PS: please do not use the forum AND the contact form for the same thing

                      in reply to: Footer and print margins #29771
                      Olly
                      Admin & Mod

                        first of all – as a workaround while i investigate – use a “Layout -> full width” template for the orderpage. that should solve issue 1 (i’ll still have a check what might cause it with your theme when it uses the standard template)

                        regarding print template, i cannot tell you as i dont know what you have (or not have) done
                        got a screenshot of your “wppizza->templates->print” settings ?

                        in reply to: Printing the same order on two printers #29721
                        Olly
                        Admin & Mod

                          in short, you need to put something like this in your functions.php

                          
                          function myprefix_wppizza_gcp_filter_copies( $printerid, $cp ) {
                          	if($cp == 1){
                          		return 'some other printer id'; 
                          	}else{
                          		return $printerid;
                          	}
                          }
                          add_filter( 'wppizza_gcp_filter_copies', 'myprefix_wppizza_gcp_filter_copies'. 10, 2 );
                          
                          
                          in reply to: Printing the same order on two printers #29720
                          Olly
                          Admin & Mod
                            in reply to: Printing the same order on two printers #29719
                            Olly
                            Admin & Mod

                              you are supposed to USE the filter in your theme’s (or actually your child theme’s) functions.php file , not replace it. that defeats the point of having filters in there in the first place

                              in reply to: Printing the same order on two printers #29718
                              Olly
                              Admin & Mod

                                no, you are supposed to use a filter.
                                NEVER EVER edit core files themselves – that’s why filters exist and are left in plugins (among other things).

                                https://www.google.co.uk/search?site=&source=hp&q=wordpress+how+to+use+filters

                                if you want to do ANY kind of customisation in wordpress you MUST learn about filters and action hooks

                                in reply to: Printing the same order on two printers #29707
                                Olly
                                Admin & Mod

                                  so the filter function should be something along the lines of (if you have it set for 2 copies)

                                  
                                  if($cp == 1){
                                  return 'some other printer id';
                                  }else{
                                  return $printerid;
                                  }
                                  in reply to: Printing the same order on two printers #29705
                                  Olly
                                  Admin & Mod

                                    you need to set the printer id per copy
                                    the filter looks like this

                                    $printerid = apply_filters('wppizza_gcp_filter_copies', $printerid, $cp);
                                    where $printerid is – obviously – the printer id and $cp is a simple count depending on how many copies you have set to print

                                    in reply to: Unable to approve "pending" menu items #29702
                                    Olly
                                    Admin & Mod

                                      sorry guys
                                      schoolboy error on my part
                                      will release an update in the next half an hour (3.0.6) and that should be fixed then

                                      apologies

                                      in reply to: Order History has disappeared #29701
                                      Olly
                                      Admin & Mod
                                        This reply has been marked as private.
                                        in reply to: Order History has disappeared #29700
                                        Olly
                                        Admin & Mod

                                          have restored the backup first ?

                                          in reply to: Order History has disappeared #29698
                                          Olly
                                          Admin & Mod

                                            when you have updated the plugin you cannot simply overwrite the plugin files with an old version. it will not work. you must restore from a backup and re-do the upgrade (as it clearly explained in the upgrade notice / howto)

                                            first of all though you should find out what the 500 error was and make sure this does not happen again

                                            and you MUST update all extensions to v3 compatible versions (as is also stated in the update notice/guide)

                                          Viewing 20 posts - 1,641 through 1,660 (of 4,446 total)