Olly

Forum Replies Created

Viewing 20 posts - 921 through 940 (of 4,451 total)
  • Author
    Posts
  • in reply to: Warning from paypal custommer service #42168
    Olly
    Admin & Mod
      in reply to: Warning from paypal custommer service #42167
      Olly
      Admin & Mod

        “Warning from paypal custommer service” is also a misleading topic . nowhere in that email is anyone saying they are from paypal or paypal customer service (legally that would probably be misrepresentation or whatnot – i’m not a lawyer – and lead to jailterms if caught)

        sure , if you give them access to your paypal account they will be “looking after your account” , but not in the way you want them to , i can assure you

        Generally speaking though, if you are worried about things, contact paypal directly (and don’t reply to those emails, but literally pick up the phone or go to their website and contact them there)
        Same applies to anything else along these lines; paypal , stripe or whatever other payment gateway or accounts you use/have

        And last but not least: I really am the wrong person here to contact for this sort of thing. I am not a security researcher or advisor. Actions you take regarding emails you receive are really your responsibility.

        The above is my take on things as I see it from the information you provided and I am happy to give you my thoughts on this
        BUT, the security of your paypal (or any other) account lies with you. I am not responsible for the actions you do or do not take (Just want to make this clear)

        in reply to: Warning from paypal custommer service #42166
        Olly
        Admin & Mod

          >I just got a mail from paypal.
          no, you did not. all you did was get some rubbish from people that want to rip you off

          should have been perfectly clear when they were referencing woocommerce to start off with – unless you are using woocommerce of course, but then I suspect you would have contacted woocommerce I would think.

          Not to mention the “I could not reach you by phone…” and pretty much the whole rest of that email

          Olly
          Admin & Mod

            thinking out loud for a sec. i wonder if this is actually down to something that changed in wordpress itself.
            I am not going to spend too much time finding out if this is the case, however it is simply a matter of replacing (my end)

            $first_term = get_the_terms($atts['id'], WPPIZZA_TAXONOMY); , which worked like that for years with
            $first_term = wp_get_post_terms($atts['id'], WPPIZZA_TAXONOMY);

            no, i don’t know either why the 1st doesnt seem to work anymore but the 2nd does. oh well

            Olly
            Admin & Mod

              ok, using the ‘add_item_to_cart_button’ in the loop like that seems to have got lost in the porting from v2.x to v3.x
              i’ll amend that in the next update . essentially in this case the category id does not get passed on if you use it like you do

              in the meantime, you can work around this by simply passing on the cat id as well . i.e something like this)

              
              <?php
              // before the loop.		
              $obj = get_queried_object();
              $cat_id = $obj->term_id;
              // Start the loop.		
              while ( have_posts() ) :
              the_post();
              echo  do_shortcode("[wppizza type='add_item_to_cart_button' id='".get_the_ID()."' category_id='".$cat_id."' ]");
              endwhile;
              ?>
              
              Olly
              Admin & Mod

                question:
                how exactly are you generating the output of this page
                /matsedill/shakes/
                secondly, what happens if you use a default theme (like 2016 for example)

                in reply to: Inventory #42137
                Olly
                Admin & Mod

                  there are (still) no short or medium term plans to implement this sort of thing

                  Olly
                  Admin & Mod

                    I’d need a link to the page in question really.
                    the above is/was really just guesswork on the info supplied

                    in reply to: Html Template for Mail #42128
                    Olly
                    Admin & Mod

                      1)
                      you MUST learn how wordpress action and filter hooks work if you want to do ANY kind of wordpress alteration that are beyond just simple point and click
                      here’s a quick overview

                      https://docs.wp-pizza.com/developers/?section=filters-actions-functions

                      2) it depends on where you put your code (i strongly suggest you use child themes as they do not get updated when you update your theme)

                      the reason why it’s not in the template section is because it’s coming from the add ingredients plugin and the options that plugin provides to add things to orders would make it completely unmanageble if added to the inputs of th etemplates

                      your filter will the look *something like* this (depending what exactly you want to achieve, but as a starting point)

                      
                      add_filter('wppizza_ingredients_filter_email_styles', 'myprefix_filter');
                      function myprefix_filter($styles){
                      /* 
                      the 120% here overrides any previous (default of 85%) 
                      font-size declaration for the element   
                      */
                      $styles[ingrinfo] .= 'font-size:120%;';
                      return $styles;
                      }
                      
                      in reply to: Html Template for Mail #42115
                      Olly
                      Admin & Mod

                        PS: the default $styles array is this

                        
                        $styles = array();
                        $styles['ingrinfo'] 	= 'white-space: initial; margin: 3px; line-height: 130%;' ;
                        $styles['ingr_item'] 	= 'font-style: italic;' ;
                        $styles['ingrinfo'] 	= 'white-space: initial; margin: 3px 3px 3px 20px; line-height: 130%; font-size:85%;' ;
                        $styles['ingrgrp'] 	= 'white-space: initial; margin: 3px;line-height: 130%;' ;
                        $styles['ingrgrp_0'] 	= 'white-space: initial; margin: 3px;line-height: 130%; display:inline' ;
                        $styles['ingrgrp_1'] 	= 'white-space: initial; margin: 3px;line-height: 130%; margin-left: 15px' ;
                        $styles['ingrgrp_lbl'] 	= 'font-weight: bold; padding-right: 3px;' ;
                        $styles['comments'] 	= 'padding: 3px 0; font-size: 75%;' ;
                        
                        in reply to: Html Template for Mail #42114
                        Olly
                        Admin & Mod

                          you can only do this using filters
                          assuming that you know how filters work, this is the one that’s added for this ($styles being an array of different elements )

                          $styles = apply_filters('wppizza_ingredients_filter_email_styles', $styles );

                          Olly
                          Admin & Mod

                            wppizza menu items (just like normal WP posts) must be assigned to a category
                            if you do not set one – and when i add something in an update that deals with avoiding this warning – all that would happen is that i would force a category for you programatically (the first/top one in your wppizza categories list)
                            so you might as well select one that is most likely more appropriate i would think

                            hope that explains things somewhat

                            Olly
                            Admin & Mod

                              updating from what version to what version exactly

                              in any event, that’s – most probably – because your item is not associated with any category
                              although i can add something that would suppress this warning, i would really suggest you select a category to go with it

                              in reply to: custom opening hours are automatically added #42102
                              Olly
                              Admin & Mod

                                All of your plugins (bar one) are at least 1 and some even 2 years old
                                and the wppizza plugin itself you are using is also about 7 month out of date

                                I would suggest you update your plugins to start off with

                                in reply to: custom opening hours are automatically added #42097
                                Olly
                                Admin & Mod

                                  also :
                                  what wppizzq version
                                  (and versions of related wppizza plugins)

                                  in reply to: custom opening hours are automatically added #42096
                                  Olly
                                  Admin & Mod

                                    what other plugins are you running ?
                                    any custom coding of some sort ?

                                    >Have you ever had such a similar case?
                                    no

                                    in reply to: custom opening hours are automatically added #42066
                                    Olly
                                    Admin & Mod

                                      when does this happen ?
                                      when you install the plugin?
                                      when you update the plugin ?
                                      at some other random time ?

                                      in reply to: Ingredients Custom Group #41998
                                      Olly
                                      Admin & Mod

                                        you’d have to write some javascript to show/hide things
                                        there are plenty of classes you can target

                                        (and you’d also have to trigger clicks to select/deselect if – for example – someone selected a saladsauce but then changed his/her mind and wants pommes instead )

                                        in reply to: Burger+drink for free #41949
                                        Olly
                                        Admin & Mod

                                          maybe it would be a better idea to actually create some sort of “burger menu” to start off with.
                                          something along the lines of the “breakfast example” here

                                          https://demo.wp-pizza.com/wppizza-add-ingredients/our-menu/user/

                                          in reply to: Pre-order inactive but still showing #41947
                                          Olly
                                          Admin & Mod

                                            one more quick question for you please:
                                            was the preorder plugin an update from an earlier version , or did you install v2.5.2 to begin with on that site ?
                                            thanks

                                          Viewing 20 posts - 921 through 940 (of 4,451 total)