Forum Replies Created
- AuthorPosts
-
Wait I think I found out how to do it.
All good!wait I don’t really get it. So there is then no way to set Days where the shop is closed? If yes then how? I didn’t really understood what you wrote.
I checked the database and there the Plugin has the version 6.3.4 too. Strange but anyways i found the download link and was able to download the plugin with the newest version.
Hello there, no problem for the late response!
My boss can’t find the plugin under his account, and i think it’s because he bought it before creating an account. But not really sure, could you maybe send the ZIP via Email again please? If you need a proof that we bought the plugin i could send you that via email too!
30 March, 2021 at 12:24 pm in reply to: Previous/Next Month Buttons same class as for Time Buttons #54877You’re welcome!
And sorry for explaning it so horribly im fron germany 😀30 March, 2021 at 12:14 pm in reply to: Previous/Next Month Buttons same class as for Time Buttons #54875This Code is from wppizza-preorder/v3/js/scripts.source.js
30 March, 2021 at 12:12 pm in reply to: Previous/Next Month Buttons same class as for Time Buttons #54874I don’t think i explained it very well, the Button for going up or down the Timespinner have the same Class as the Buttons for changing months. In your Code you have this
/* dont show previous month selector if - min year available is > current selected - current selected year/month is the same as min year/month */ var showPrevMonth = (ts_min['Y'] > ts_now['Y']) || (ts_min['Y'] == ts_now['Y'] && ts_min['n'] == ts_now['n']) ? false : true; if(!showPrevMonth){ $('.'+pluginElmClassName+' .xdsoft_prev').hide(); }else{ $('.'+pluginElmClassName+' .xdsoft_prev').show(); } /* dont show next month selector if - max year available is < current selected - current selected year/month is the same as max year/month */ var showNextMonth = (ts_max['Y'] < ts_now['Y']) || (ts_max['Y'] == ts_now['Y'] && ts_max['n'] == ts_now['n']) ? false : true; if(!showNextMonth){ $('.'+pluginElmClassName+' .xdsoft_next').hide(); }else{ $('.'+pluginElmClassName+' .xdsoft_next').show(); }
the thing here now is, one of the Buttons for the Timespinner automatically disappear too if one button for changing the Month disappears. Thats because of the same Class they share. I don’t really know if this is intended or not, that the buttons for the Time disappear too.
This reply has been marked as private.Changing it to
define('WPPIZZA_PREORDER_CURRENT_VERSION','3.5');
(PS: it was on ‘3.3.3’ what very strange is given that wordpress says 3.5.1 even after changing.)didn’t work, i will Update it manually then. Thanks1
and i see that some “empty” rows are seconds apart from the actual order, and i dont really think this is someone who just seconds after another person ordert, leaves they’re order without completing it.
is there a way to disable such entrys in the Database, or that such entrys dont even get there?
Thank U!
there is no really problem with that, i just didnt know that. is there a way to delete such entrys?
This reply has been marked as private.Okay thanks for your work.
Good to know! I understand that the buttons should not appear if for march (or any other month) there are no dates. It was just strange that they disappear even if there was dates to order. But its good that you found the problem, Thanks!
This reply has been marked as private.comming just a sec!
This reply has been marked as private.Update: Just saw that we let people preorder 16 days ahead. Still the bug with the visibility:hidden thing is still there.
- AuthorPosts