Forum Replies Created
- AuthorPosts
-
apologies, my fault i think (i didnt test this and only did it from memory)
i believe the
$subject['prefix'] .= ' '.$order['initiator'];
in the first example (now corrected) should actually be
$subject['prefix'] .= ' '.$order->initiator;
in fact (and then I promise I’ll shut up 🙂 ) actions/filter hooks exist precisely for the reason that you do not have to touch core files but can extend/change a/some functionality of a plugin/theme/wordpress
PS: never EVER edit core files (of ANY plugin, theme or indeed core wordpress files)
(with – very very – few exceptions that is.)NO
you MUST learn about wordpress filters and actions and how they work
https://docs.wp-pizza.com/developers/?section=filters-actions-functionsas of WPPizza v3.6.6 – and earlier – you can do this
add_filter('wppizza_filter_email_subject', 'prefix_filter_email_subject', 10 , 2); function prefix_filter_email_subject($subject, $order){ /* $subject is an array made up of $subject['prefix'] - typically contains blogname followed by items added to subject line in wppizza->order form $subject['main'] - typically contains "your order" localization string (wppizza->localization) $subject['suffix'] - typically contains date of order according to date/time format set in WP->settings */ /* example: adding the "initiator" (i.e payment gateway ident) after the prefix - typically "COD" or "STRIPE" etc, tweak as required, perhaps use some conditionals to change the label to something else if "COD" etc etc */ $subject['prefix'] .= ' '.$order -> initiator; return $subject; }
the next / later version will have an additional parameter in the filter that has the order details already formatted
add_filter('wppizza_filter_email_subject', 'prefix_filter_email_subject', 10 , 3); function prefix_filter_email_subject($subject, $order, $order_formatted){ /* $subject is an array made up of $subject['prefix'] - typically contains blogname followed by items added to subject line in wppizza->order form $subject['main'] - typically contains "your order" localization string (wppizza->localization) $subject['suffix'] - typically contains date of order according to date/time format set in WP->settings */ /* example: adding the label of a gateway as set in wppizza->gateways after the prefix , tweak as required*/ $subject['prefix'] .= ' '.$order_formatted['ordervars']['payment_type']['value_formatted']; /* example2: adding the paymet method (i.e typically simply "Cash" or "Credit Card" ) , tweak as required*/ $subject['prefix'] .= ' '.$order_formatted['ordervars']['payment_method']['value_formatted']; /* see $order_formatted for all available parameters */ return $subject; }
in both cases the $subject array returned will be imploded with a space between each key
without a link to your site and/or seeing the exact code you used , i cannnot comment really
Hi
although you could do this with the filters available
(https://docs.wp-pizza.com/developers/?section=wppizza-markup-loop-posts-prices-php)
for your own sanity , i would probably suggest you use/make a copy of the posts.prices.php template as outlined here
https://docs.wp-pizza.com/developers/?section=modify-templates-readme
under “EDITING FILES DIRECTLY – ONLY IF FILTERS/ACTIONS CANNOT BE USED”
and simply moving the relevant elements aroundi.e move
$markup['post_price_'.$key.'_span'] = '<span>' . $price['price'] . '</span>';
AFTER
if(empty($price['no_label'])){ $markup['post_price_'.$key.'_label'] = '<div class="' . $price['class_size'] . '">' . $price['size'] . '</div>'; }
instead of where it is now (so just reverse the two locations of those parts of the script)
not thoroughly tested , but should work i would think
hope that helps
unless you are having a dedicated site where you know where stuff comes from (perhaps a multisite setup though) it will ALWAYS need some programming to do this sort of thing
PS: the behaviour of enter and tabs also depends on how many results there are in the dropdown to start off with, so i would need a specific “order of events” – i.e “enter address abc” hit enter , enter address xyz – hit TAB etc to be able to reproduce this and be able to tell what the issue might be (if any)
ok, it turns out , that the google maps api does not always return a street or house name/number for all locations (even if it is typed in to the address box) and the plugin simply says “ambiguous” as for a proper address you will be able to deliver to, you need of course more than just the street number
I am really not sure if there is anything i will be able to do about this but I will see what i can do.
maybe in cases where there is no housenumber returned there is a second/different api query that one can run … but at the moment i cannot tell you much more or indeed if this is doable(unfortuynately there will always be cases where the maps/distance calculation will simply not work – one of the reasons why that part of the plugin will probably always be marked as experimental/beta)
just to add to this – might help someone somewhere – allow me to also point to this topic
https://www.wp-pizza.com/topic/question-google-cloudprint/( especially the last few printing options/examples/tests posts)
if you want it on the same line, just leave the style at “default”
However, if you do that you might have issues on small screens – but that depends on your theme and the number of prices/sizes you have for each item. hence the very existence of the “responsive” layoutalternatively, you can also mess around with the “element” attribute of the shortcode (https://docs.wp-pizza.com/shortcodes/?section=by-category) to move bits around and add required css
I’ve deleted my previous replies (only confuses the issue) and updated the documentation here instead
https://docs.wp-pizza.com/developers/?section=pickup-opening-times
(as there were some parts to it missing that makes this work in different scenarios)
Hi
sorry to take so longunfortunately , where I am this week , there is only very sporadic and slow internet so the whole connecting to google maps etc is timing out on me all the time. this will be better when I get out from here at the weekend. i’ll have a look at it then
(just testing things on a localhost will simply not work in this case unfortunately)please bear with me for a few days
thanks
Hi
I’ll see if I can reproduce this here and will get back to you> add a custom jpg header and change some colors…
use the css settings in the templates (that’s what they are there for). i.e background-image for your header and whatever colours you want to set.>but can you tell me which of the (php) files contain the custom email template structure..
there is no single php file that does this, this is pretty much all done dynamically by using filters>Also, can I customize the “Thank you for ordering” page..
if you thank you mesaeg is too small, then it’s probably your theme’s css that sets this, so you should look there and overwrite as required> in V3 this info appears below the form
no, it does not (not bey default anyway)
you can use any of the demos here https://demo.wp-pizza.com/ and you will see that it shows the page title, some text you set in localization, and then the order details (if that has not been disabled )6 July, 2018 at 3:21 pm in reply to: Search bar is Not Visible in Mobile & Registration ,Login for customers #38361sorry, but I do not know what you are referring to.
the wppizza plugin does not have any “search bar”.28 June, 2018 at 5:00 pm in reply to: Hook into "Delivery time" and "Preperation time" fields #38249wppizza_options is a global variable
so you could simply use some action hook with the appropriate priority to change things i.e in this case$wppizza_options[‘order_settings’][‘order_pickup_preparation_time’]
and
$wppizza_options[‘order_settings’][‘order_delivery_time’]
alternatively see here https://docs.wp-pizza.com/developers/?section=filter-wppizza_filter_optionsif you go to localization, you will find – under “Pickup / Delivery”- plenty of strings that use the %s placeholder to use in mail etc templates
this has already been answered…..
https://www.wp-pizza.com/topic/want-to-change-the-size-of-liters-to-kilograms/ - AuthorPosts