Forum Replies Created
-
AuthorPosts
-
Sorry, I cannot offer support for other plugins.
just select whatever print template you want to use in the cloudprint plugin and and edit that as required
see the changelog.
it will tell youhttps://support.wp-pizza.com/downloads/wppizza-google-cloudprint/
feel free to type whatever you want to type wherever you want to type it
you could also selectively display your message with a conditional in an action/filter of some sort if the user is not logged in.
something like<?php if ( !is_user_logged_in() ) { echo 'special discounts for registered users';/*or whatever you want to say */ } ?>there are endless ways to do this really
just unchecking and hiding the checkbox does nothing. that value must be submitted to affect the calculations (unless in your case absolutely all values that are affected by pickup or delivery are the same).
generally speaking – not knowing your exact scenario though – i would think your answer is in your own question
> ………… how to trigger it? ……………..< http://api.jquery.com/trigger/having had a rummage myself as to whether printing multiple copies with cloudprint is doable or reasonably simple to setup with printers – i actually could not find anything straight forward…
therefore 3.5.1 added a multiple copies option (though this might still slow things down somewhat depending on the number of copies)
maybe this helps someone…
it *IS* the post id
if it doesn’t work , you have to tell me what exactly doesn’t work and what exact shortcode you are using as it works just fine as far as i am concernedmenu bars will be your theme’s responsibility (unless we are talking about different things)
so you will have to ask the theme developersnot exactly sure i understand the exact sorting order you are after, but you have the following option
– the ingredients themselves are drag/droppable to set the order they appear in
– in the options screen you can also set the order of ingredients when/after they were added in a few ways (*Added* ingredients display options)
– if you put ingredients into custom groups , there are also a number of settings there per group
such as “Do not display prices after individual ingredients” and “Sort by price first ”i would have thought with a combination of those you should be able to do what you need
PS: at the moment i can only come up with running the thing 2x by adding the following to your functions php
add_action( 'wppizza_on_order_executed', 'my_wppizza_google_cloudprint', 99); function my_wppizza_google_cloudprint($orderid){ $wppizzaGCP=new WPPIZZA_GOOGLE_CLOUDPRINT(); $wppizzaGCP->wppizza_google_cloudprint_order($orderid); return; }not tested, but will probably also slow down the last stage of actually submitting the order as it will be running 2x of course…
or perhaps just adding
add_action( 'wppizza_on_order_executed', 'wppizza_google_cloudprint_execute', 99);might also work
This reply has been marked as private.sounds like the domain was blocked / blacklisted though, not the email as such
and as the message gets send, there are no errors. what your email server/host considers spam is something you have to take up with them
>where is debug data
if there are no errors , there is no debug data…>do you want the whole thinmg?
noall the info you need is in that message you’ve received.
“For more information, please see….”did you turn on debug like so ?
https://support.wp-pizza.com/topic/how-to-enable-debug-in-wordpress/you could also – temporarily perhaps – set the mail delivery to “HTML” as that *might* give you more info on what the problem is
also, did you set an appropriate “from” email address ?
does that error say just “Could not instantiate mail function” or is there more info after that ?“Could not instantiate mail function” could have many many reasons.
although from a different plugin, perhaps the following checklist is worth reading through too
https://support.mailpoet.com/knowledgebase/could-not-instantiate-mail-function/(or here of course
https://www.google.co.uk/?gws_rd=ssl#q=wordpress+could+not+instantiate+mail+function )being able to send a test mail from wordfence doesnyt really mean anything
first question :
when you said “I then disabled all plugins but wppizza.” did you also disable wordfence i.e disabled literally ALL other plugins ? -
AuthorPosts