Forum Replies Created
-
AuthorPosts
-
>…I cannot edit how large is PAYMENT TYPE / PAYMENT METHOD and TRANSATION ID, cannot find them in the Print Order template.
what do you mean you cannot edit?
says it right there in your own css (font-size)#overview #order_id td{font-size:150%;text-align:left} #overview #payment_due td{font-size:170%;text-align:left} #overview #pickup_delivery td{font-size:180%;text-align:left;white-space: wrap} #furthermore, it seems to me your printer sets silly margins. Looks like half your paper is wasted…
without a link to your site, i cannot tell you anything
7 November, 2016 at 3:55 pm in reply to: Allow a custom text before dropdown in Post/Zipcode popup #23072>using the following CSS snippet
lol, very creative !i guess i could add a filter or optional textfield there. will make a note of that
7 November, 2016 at 3:12 pm in reply to: Sales Reporting | Fields to choose for monthly sales report. #23071personally , i do not know what’s complicated about the report as it is.
it simply has columns and values and if you do not need the reporting per individual day , the actual reporting screen already provides the basics….However, of course, i cannot know how exactly you need what for your situation (therefore the action hook provided)
7 November, 2016 at 3:08 pm in reply to: Sales Reporting | Fields to choose for monthly sales report. #23070to adjust the report to your own needs you can use the following action hook
/* export your own report if you want */ do_action('wppizza_custom_report', $dataset);which can be found in
inc/admin.report.functions.php
i would suggest you copy thewppizza_report_exportfunction in it’s entirety (without that action hook or you’ll end up in an infinite loop), rename it to a function name of your choosing , adkust waht you want to output, and use the action hook to run this on exportthere are already to constanst you could define like so in your wp-config.php
define('WPPIZZA_OMIT_REPORT_GATEWAYS_SUMMARY', true) define('WPPIZZA_OMIT_REPORT_ORDER_STATUS_SUMMARY', true)which would already omit those 2 summaries from your report(s)
clone first and then set the options that differ i would have thought
there are plenty of cloning plugins out there. which one is appropriate depends really
of course, let me know – after update – if you still have issues
thanksthanks for flagging this.
last nights update broke this – sorry about that – please update to 2.16.11.14 when it shows up in your dashboard (essentially it’s reverted back to 2.16.11.12)in which case it removes one by one (if there are more than one of an item in the cart)
that by design as there are serious space constrictions in the cartthat said, in v3.x (a little bit away yet), there will be an option to enable this for all cases
wppizza->add ingredients -> “custom group” -> “add custom ingredients group” -> “select group to customise” == select “– add textbox to item —” here and set resulting options as required
without a link i can only make an educated guess which would be that you are caching the order page when you should not
https://support.wp-pizza.com/topic/things-to-do-on-first-install/
This reply has been marked as private.>was just wondering how this can be done
only by rewriting chunks of the main plugin and then doing the same accordingly for the DBP one
(but that’s not going to happen anytime soon I’m afraid )>Thank your response and your time.
no problemthis is simply not implemented.
more importantly, this is not an issue – so to speak – with the “Delivery by Post/Zip Code” plugin, but the way the main wppizza plugin works (the “DBP” plugin just hooks into/filters the options the main plugin offers)
sounds contradictory to me
a) <= 3 miles | < 20 == +2.5 | >= 20 free (fine)b.1) > 3 miles | < 20 == +3.5 | >= 20 free (fine)
b.2) > 3 miles | < 20 == +3.5 | >= 20 +1 ??you cannot say b.1/b.2: >= 20 [free] AND >= 20 [+1]
i must be missing something ….??
just like you did on that other site I would have thought – no jQuery selectors needed
#wppizza-mini-cart.wppizza-mini-cart-static{ bottom: 0; top: auto; }using custom css
28 October, 2016 at 10:16 am in reply to: Order history page – Delivery or pickup value – Overview section #22865try this one
$orderinfo= apply_filters('wppizza_filter_orderhistory_order_info', $orderinfo, $orders->id, $customerDet, $orderDet, $blogid, $orderStatus, $orders->order_date);i assume you know how filters work.
$orderinforeturns an array of the various parts you can inject things into as required27 October, 2016 at 11:34 am in reply to: Smaller sticky mini-cart on mobile and/or some sort of "added to cart" feedback #22844>On mobile, there isn’t currently no visual feedback when a product is added to the cart.
not correct.
wppizza->layout: “Briefly display text in place of price when adding item to cart”
applies to all devicesi think we might be talking about different things when using the “minicart” term.
what i call “minicart” is the one that only displays the total and a view cart button – typically at the very top of tha page – and is already only 50px. if you want it at the bottom, just set the css to put it therethat’s true
-
AuthorPosts