amhoffmaster
Forum Replies Created
-
I found the date settings in Woocheckout > Additional tab, pick the date field you created, then click the blue hamburger icon in the column heading, then the Date Toggler (blue hamburger in the heading area again), THEN you finally get to the date format. I spent quite a while looking for those settings since there’s very little documentation on this plugin, which is disappointing.
I put this in my functions.php because I wanted a minimum of 2 days out from order date:
/*Woocommerce Checkout Manager – restrict dates*/
function custom_wooccm_js_datepicker_additional_args() {echo ‘
minDate: 2
‘;}
add_action( ‘wooccm_js_datepicker_additional_args’, ‘custom_wooccm_js_datepicker_additional_args’ );Hope that saves you some time. It worked for me.
Forum: Plugins
In reply to: [Quantities and Units for WooCommerce] Export/Import CSVI answered my own question and thought my solution might help someone else. Just create a product and define the unit of measure for that product. Then Export the product through the WooCommerce native product export (Products > Export). The key is to check export custom meta so you can see the column headers in the csv. The column exported is Meta: unit
Forum: Plugins
In reply to: [Simple Job Board] Name, email and phone fields disappearedNever mind. It appears that I needed to add the default fields of name, email and phone. I had done so in the one job posting and that’s why it appeared there. Issue is resolved.
Forum: Plugins
In reply to: [WPPizza - A Restaurant Plugin] Send Order function not working in wppizzaI tried so many things to try and solve this problem. I even setup a completely new site using the theme and html sidebar widgets to test and everything worked. I changed to a different html widget on the live site and thought it fixed the problem, but it did not. So I no longer think it had anything to do with the Black Studio widget. I did however, identify some code in my footer for the newsletter signup form that appears to have been the issue. It was javascript code from Formstack where the newsletter signup form is hosted. Once I removed that code, everything worked fine.
Forum: Plugins
In reply to: [WPPizza - A Restaurant Plugin] Send Order function not working in wppizzaI found a plugin conflict. wpppizza won’t work with Black Studio TinyMCE Widget v 2.2.10 or 2.2.12.
Forum: Plugins
In reply to: [WPPizza - A Restaurant Plugin] Send Order function not working in wppizzaThis is odd because it still works flawlessly on my local computer.
Forum: Plugins
In reply to: [WPPizza - A Restaurant Plugin] Send Order function not working in wppizzaThe second option didn’t work. Is there anyway for me to narrow down which functions it’s calling but are not there that are causing the problem. I can comment them out one at a time, but thought you may know how to pinpoint it more accurately.
Forum: Plugins
In reply to: [WPPizza - A Restaurant Plugin] Send Order function not working in wppizzaThank you for your attentention to this matter. I enabled debug. I see that I had an issue when I tried to rewrite the WPPIZZA Title the Admin, so I removed that. It also showed an error in the theme’s 404 page, so I removed the page (temporarily). It also said there was an error in another plugin called Catablog, I turned it off, tried the order form and it still didn’t work, so I turned the other plugin back on as it is in use. The Send Order button still just clears the order form and doesn’t send the order.