Forum Replies Created
-
AuthorPosts
-
you’d have to edit the wppizza-cart.php template
there is no topic 5193 . that number would be a post/reply to some topic.
i guess you are talking about thishttps://support.wp-pizza.com/topic/send-email-on-admin-status-update/
in any event, this is a codesnippet, to make it work in your case is up to you but i suggest you check your (mail) server logs
huh?
it does that by defaultyou also have js errors on the frontend
Uncaught TypeError: $ is not a function (index):770 i.e $("#mainmenu .wp_nav_menu_mobile ul.menu li a").each(function() {that might be caused by the theme or a plugin. i do not know, but i can guarantee you it’s not wppizza
in short, what you want to do is:
turn off all plugins. keep theme.
can you use quickedit ?
if not, switch theme to a default theme. can you use quickedit now ?
if you can, speak to theme developers to fix itThis reply has been marked as private.This reply has been marked as private.have had a bit more of a look.
i _believe_ your problem is cuased by your theme.
as an example, try using qucikedit in your posts. you’ll see it wont work . switch to a default theme and it probably works again (just an educated guess of course)thanks:
your problem is javascript errors that are either thrown buy your plugin or themeUncaught Error: Syntax error, unrecognized expression: a[rel=] Uncaught TypeError: Cannot read property 'hasClass' of undefinedyou should de-activate all other plugins and use a default theme to track it down where those errors come from (as they are all thrown in together in a load.scripts.php i cannot tell you which one is the one likely to cause the problem)
that said, my initial suspicion would be your “jquery-updater” . i cannot even begin to tell you why it is a very bad idea to replace the jquery version that comes with wordpress that way
(but here’s a great article i fully agree with https://pippinsplugins.com/why-loading-your-own-jquery-is-irresponsible/ )
It may be the case that that plugin is not to blame , but de-activating it might at least make debugging the underlying issue easieryou should also enable debug like so https://support.wp-pizza.com/topic/how-to-enable-debug-in-wordpress/ and check your debug log
actually, i’m not even certain if you are talking about admin or frontend hereforget that – i did not read this properly.
in any event , i would need admin access to have a look what happens when adding a meal size
if you post it here, mark it as a private replygot a link ?
what version did you upgrade from ?
>I only want show a list of items of a category without image.
just dont upload any images then…. (and you probably want to go to wppizza->layout and not show the placeholder image)>phpmailer: Could not instantiate mail function….
that is a server or setup error. you need to enable debug and check your error logs
there are many many possible reasons for that error, none of which have anything to do with the plugina simple https://www.google.co.uk/#q=phpmailer:+Could+not+instantiate+mail+function will give you hundreds of results and possible solutions. Which is the right one for your setup I cannot tell you
also have a look here
https://support.wp-pizza.com/topic/order-does-not-send-email/>Why is the phpmailer still trying to run when I’ve chosen to use SMTP for sending emails?
phpmailer will ALWAYS run, you just use smtp for authentication. one doesn’t really have anything to do with the otherThis reply has been marked as private.This reply has been marked as private.updated again – these are just quick codesnippets.
PS: this does not do any popup (if you want that sort of thing , you have to develop it yourself)
it just adds some items to the checkout page to choose from(not tested by the way, what you do from here is up to you)
example updated
there are many action hooks in the order page you could use to add things (using shortcodes i would have thought).
as an example you could do – in your functions.php :add_action('wppizza_gateway_choice_before', 'my_function'); function my_function(){ echo do_shortcode('[wppizza single="11"]'); }or any other shortcodes you want to use
search templates/wppizza-orders.php for anything that says “do_action” for a variety of places where you could hook into
-
AuthorPosts