Forum Replies Created
- AuthorPosts
-
and while i’m at it (although unrelated):
a) your theme loads 2 versions of jQuery. what’s all that about ?
b) you seem to have customised the pretty photo javascript without moving it to your themes directory (which will mean it will get overwritten with the next update)…just sayingto be a bit more prices :
never cache your order page (in your case http://mipizzaaustin.com/orders/ )
as I mentioned in various places in the plugin, and the faq’s….clearly , the order page is dynamically generated, depending on what that current user has put in his cart. if you cache that page the user will only ever see/get whatever the page was like when it was last cached (which may be an empty cart, or someone elses order)
>I was told that it is not likely a caching issue.
and who exactly said that ?
looking at your site , it most definitely is….Hi,
as I want to add some more things to the next update it might take a few days more to make this available.
in the meantime you can do the followingin wppizza/classes/wppizza.send-order-emails.inc.php AFTER
$this->subjectSuffix = ''.$this->orderTimestamp.'';
(at approx line 30) ADD the following
/**make subject filterable**/ $this->subjectPrefix = apply_filters('wppizza_filter_email_subject_prefix', $this->subjectPrefix); $this->subject = apply_filters('wppizza_filter_email_subject', $this->subject); $this->subjectSuffix = apply_filters('wppizza_filter_email_subject_suffix', $this->subjectSuffix);
then in your themes function.php file you can do this to add ‘cmd: print lp1’ before the whole subject line.
/**filter the prefix**/ add_filter('wppizza_filter_email_subject_prefix', 'my_custom_email_subject_prefix'); function my_custom_email_subject_prefix($subjectPrefix) { /**by default this equals get_bloginfo()**/ $subjectPrefix='(cmd: print lp1)'.$subjectPrefix; return $subjectPrefix; }
hope that helps for the time being
stupidly (or to be precise: mainly because no-one has asked for it before i think) it’s not as simple as it should be really .
give me a few hours and i’ll add a filter to the plugin that will let you do that much more easily than hacking around or extending classes etc etc.
i’ll post code here ….
>I hope you can understand what I mean
i do
>and send them to the wrong address
understand what you mean but *might* be a bit more involved (programatically) for various reasons. will have a think / not sure yet
although you could – of course – disable cash on delivery completely and only accept CC payments (i know, that’s most likely not how restrictive you want things to be , just saying)
Hi,
first of all, sorry to have to send you here from the wordpress forum and ask your question again. the wordpress mods are quite strict on what can and cannot be posted on their support forum (which i guess is fair enough).
in answer to your question though: no, sorry ( not at the moment anyway).
you could do that i guess, or of course just use the “order” field that every menu item has (available in quick edit too, not just when “normally” editing an item
just saying…
Hi,
there must be something else going on here as I can assure that it does not do that (or i would have hundreds of those reports)
would it be possible to get admin access to your site , or at least a screenshot, as I cannot really say anything until I have had a chance to have a look as to what you are experiencing
thanks for the encouragement…
>If i need to order more than 1 quantity, i need to select the pizza and ingredients again.
no you don’t
wppizza->layout->Enable increase/decrease of items in cart via input field/textbox
>But i can’t find “General” in the settings list.
you are looking too hard.
it’s under the main wordpress settings tab on the left in the admin.
has nothing to do with wppizzasounds (and looks) like a caching issue to me
>It would basically have some of the same features available in the order cart
never quite that straight forward unfortunately, but as i said I’ll have a look at it when i get the chance . but no ETA
> it is still not working.
what exactly is not working ?
>Would it be possible to drop the calculation for minimum order down a line or two
i’m probably a bit dense, but what do you mean by “a line or two” ?
>Do you have any idea for an ETA on that feature
in the next 4 weeks (am on holiday(ish) for another 2 and after that i shall pick up the pieces that have accumulated.hope that helps
re 1:
as it stands, minimum order value is before tax and discounts (unless you set/select your prices to have tax included already of course….)re2:
not yet implemented, but a good idea. will put that on my list of todo’s>I have tried the solution given by you in this forum, but it adds another few digits to this long Number.
only if you make it to. seems to me like you have an error in your code
want to test that preorder plugin ?
as i said, you can/should probably use the filter i mentioned above to do this
just like you edit any other php file really (i.e with a texteditor)
if you don’t know how to write/edit php you should probably consider finding someone who does
as well as someone who understands wordpress filters and the like presumablyhaving said that, with a bit of googling it’s not that difficult to figure out
- AuthorPosts