Forum Replies Created
-
AuthorPosts
-
ok,i’ll test a few things.
ignore any orders from email dev[at]wp-pizza.coma link would help perhaps…….
15 May, 2015 at 11:27 am in reply to: set pickup time and allow to client select when the will pickup #9911huh ?
what kind of metadata are you looking for and more importantly why would you even need to write/edit any to do thisand 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
click on “view sort” and type in the number (specifically made available for this case)
oh ,and save of course
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 )
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
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
14 May, 2015 at 2:19 am in reply to: set pickup time and allow to client select when the will pickup #9891up 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)>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 )
that’s way too abstract.
screenshots/details/link where to see the behaviour as well as expected behaviour….etc etc please…
>How do I post a screen shot here?
you just upload a screenshot somewhere (dropbox for example) and post a link to it
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/stripe requires a minimum value of 0.50 !! (as you would otherwise have more charges than what you are charging for)
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..
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..)actions/filters/function belong in your themes functions.php
>how to access a list of the categories…
just like any other category. in this case probably appearance->menus => wppizza categories
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 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)
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.phpif 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)
-
AuthorPosts