Forum Replies Created
-
AuthorPosts
-
>Is there a way to add EXTRA…
you can add what you like. just write “extra” in front of the ingredient name>It makes the receipt hard to read…
sorry, i do not understand what any of this has to do with it being hard to read…
or, more accurately, what do you mean by hard to read exactly ?as of v4.10 you can now enable this sort of thing in the options screen
“ingredients->display ingredient groups in emails”thanks for letting me know
will fix that in the next updatethen it should not output anything anywhere unless it gets overwritten elsewhere
in any event, you can add the following (which will be default in th enext update anyway, so feel free to edit the core file)
in wppizza-delivery-by-postcode.php approx line 485 you will find the following
function wppizza_dbp_user_register_saveupdate_meta($ff){right after that , add
if(!is_array($ff)){return $ff;}so the whole function reads
function wppizza_dbp_user_register_saveupdate_meta($ff){ if(!is_array($ff)){return $ff;} $ff[]=$this->wppizza_dbp_output_array(); return $ff; }which should get rid of that warning
>Do you know any sites
noyou should look/search for “tags custom post types” or similar as wppizza is just a standard custom post type like any other
you should never output error/warnings/notices but log them instead. (as outputting them will stop sessions from working amongst other things)
that said, i will fix this warning in the next update of course. for the time being though change
define('WP_DEBUG_DISPLAY', true);to
define('WP_DEBUG_DISPLAY', false);in your wp-config.php>but when I click on a tag it leads me to an “empty tag page” with no meals on it.
i understand that. the answer is still the same.
in any event, this is not something i will be able to help you with as i have no idea how your particular tagcloud implementation searches and displays thingsmy guess is that your tag cloud does not look at and/or search in custom post types (in this case the CPT being wppizza)
>“Repair Categories” was the answer
good>And the wp_options record for wppizza seemed to be ok
yeah, that’s why i – as yet – do not know why this sometimes (albeit rarely) happens>I don’t really know how I “broke” them.
i know. i wished i could replicate this somehow myself to be able to fix it>Anyway, i’ll keep an eye on this.
please do, and if you find anything that might shed a light on this , please let me know>Many thanks for your support
you’re welcomeyou can also try:
wppizza->tools->repair categories (read the text next to that option , i suspect you are a victim of that issue)also read here
https://support.wp-pizza.com/topic/i-have-dragged-and-dropped-my-categories-but/#post-7271
and here
https://support.wp-pizza.com/topic/one-of-the-stranges-bug-i-ever-see/#post-9975if the above is the case and you can shed light on that somehow (i .e what did you do before this occurred, any plugins running that – when disabled – makes the cats show up again etc etc , i would be very interested to hear it)
>You may have noticed that, even if you got several categories, you can see only the last one
no, i can see all just fine (paginated if necessary)…>in taxonomy.php
no such file exists in the plugin>Obviously, $key is always the same (when sort option is not set)
no, it is not>Do you agree with this investigation ?
nothen all those 5 are doing it wrong.
try this oneorder settings->
“Which email address should any orders be sent to [separated by comma if multiple]:”or you can even use bcc’s too the same way
for the time being:
wppizza-gateway-mygateway.zip
basic skeleton gateway to implement your own gateway credit card implementation according to your gateway API
unzip and replace filenames and instances of “mygateway” as required and place into your plugins directory
read the comments in the files, update/edit/changes as necessary
currently only documented for hosted payment pages (i.e redirection to gateway for payment) – ajax overlay docs will follow in due course
although gateway implementation may change in the future , i will still cater for this way of implementaion if at all possible
as a quick fix , download it here :
https://support.wp-pizza.com/wp-content/uploads/2015/07/wppizza-gateway-mygateway.zipunzip and replace ALL instances of “mygateway” in all files and edit the rest as required such as the dummy vars in gateway_process_payment and the response handling (gateway_handle_response) etc
24 July, 2015 at 3:57 pm in reply to: Google Cloud Print Extenion works with EPSON TM-T88V POS thermal printer #11211thanks for posting.
happy to hear this can also be made to work with these kind of printersthe next version will have a skeleton gateway included in the add-on directory
that’s what this one does
-
AuthorPosts