Forum Replies Created
-
AuthorPosts
-
i edited the example code a little bit.
try thatlicence looks all fine here,
>We have the “WPPizza – Add Ingredients Extension – up to 5 Sites License”
but from what i can see, this is a single site licence…
my guess is, you still have it registered elsewhere perhaps (whence the in-active) ?did you enter the licence there and activate it ?
what’s the licence key so i can have a look at the status / what’s going on ?
(dont post that key here, but send it to dev[at]wp-pizza.com please)if you want to add 3.00 to every item on delivery, set delivery costs per item to be 3.00 in wppizza->order settings->Delivery Charges per item:
and then use the filter above to count the items for which you do not want to add those 3.00 and substract them again
in your themes functions.php (lika all customisations using filters and actions)
> re http://www.yooweb.ch/piccobello/online-bestellen/
you made the orderpage a page with items ?!
please read here :
https://support.wp-pizza.com/topic/things-to-do-on-first-install/>The plugin does offer an option to exclude delivery costs for certain articles
no, it does not. what it does, is exclude certain articles when calculating the delivery costs which is different.i.e if you say free delivery above 50.00 you can say do not use drinks (for example) to see if the 50.00 has been reached
as mentioned, currently only by using the filter and some jQuery…might make that an option someday , but no ETA
PS: well, it would be doable by writing some jquery that reloads the page when (de)selecting stripe, setting some session variable or something (for example) and recalculating delivery /discounts using filters available (in thin case the ‘wppizza_filter_discount’ filter i would have thought).
> Is there a way so that customers who place an order over a certain amount (say £10) get a discount on their order say for £0.50p
of course (puzzled by the question as that was always there)
wppizza->order setting -> discountshowever, i suspect you want to have a discount only when paying cash.
although most other gateways are implemented to be able to add a fee when using them (i.e the opposite way round, outcome being somewhat the same though), the way stripe works this is not really do-able at the moment I’m afraidthere are no provisions for having different delivery prices for different items.
your only options would be to use the following filter and re-calculate as requiredadd_filter('wppizza_filter_delivery_charges', 'my_filter', 10, 3); function my_filter($deliveryCharges,$session,$options){ /* recalculate/edit/adjust delivery charges as required based on parameters $session == array of order details $options == array of plugin options set */ return $deliveryCharges; }Hi
these do not exist, but feel free to translate into german by using
wppizza_addingredients-en_GB.po
as a basebtw, you might find it easier to use the grid layout option.
you will still have to move the prices below the description if that is what you want, but they are not nested and the css adjustment should be easier…just an idea>Is there an easier way to do this?
no.
if you move things around you will have to adjust the cssapologies.
I really try to answer 100% of questions/request.
However, although i do remember reading your question I got sidetracked at the time with other things and subsequently forgot about it altogether
again, sorry about that.regarding the case in hand:
in short:no.
as mentioned in the description of the plugin,IT DOES NOT :
enable things like “buy one particular item get one other particular item free/reduced”, “buy 2 of this , get one of that” or any other up-sells/cross-sells etc along those lines
in due course there will be a separate plugin for these scenarios>Do you know any order notifications app for Android and iOS,
sure, they are called email clients….
if you are looking for anything else , then no, i do not know of any others
>Is it possible to make a “select ONE of these” selection anywhere?-
of course. just set the applicable type in your/a custom group that has all your drinks assigned.
(in your case probably the “one and one only ingredient one time -> radio” option )>What exactly do i put in the php ?
nothing (assuming you are talking ab out the template …..emails.php
you add and use the filter in your themes’ functions php as required
essentially, do the same thing with your real paypal account (and of course take it out of test/sandbox mode)
the plugin does pretty much the same thing in either mode (just sends it to the sandbox instead of live url of paypal and vice versa)
in wppizza-addingredients.php (approx line 89)
took m a bit to find out why it did not load it.
so, do the following :
in wppizza-addingredients.php (approx line 89)
add_action(‘init’, array($this, ‘wppizza_ingredients_load_plugin_textdomain’));
and change to
add_action(‘init’, array($this, ‘wppizza_ingredients_load_plugin_textdomain’),99);
feel free to do that in the core file of the plugin as it will be default in th enext update
which version of the plugin are you using ?
secondly how exactly are you translating it ?i.e where are you putting the po/mo files and what did you name them ?
essentially the translation for that plugin works the same as for all the other wppizza plugins so I cannot see any reason why you should not be able to do that .
if you wish, send m your translation files and i will have a look whether i can get them to work here (send them to dev[at]wp-pizza.com)
-
AuthorPosts