amhoffmaster
Forum Replies Created
-
Forum: Plugins
In reply to: [EventON] additional text / image on tileThank you for your response. I had already added the field. The Multiple lines of text (WP editor) do not show on Tiles. I tried adding a single line of text to display as an excerpt and checked it on the EventTop section but it doesn’t display on the Tile. Perhaps I need a different layout/view. I just want to add an image with time and a brief synopsis and presenter logos on the tiles to entice the user to click and see the event details popup.
I enabled ALL the options in the EventTop to see what would display. I’m still seeing the Oct, 2024 above the tiles.
That was my question as well. Thanks for the update. Very strange that it’s not an automated thing once you pay.
Ok, I’ll send it over to my programmer. I usually can figure most things out myself. I look forward to the next version.
ok, that’s what I suspected. Thanks for confirming.
resolved.
I think you meant orderby=”rand“. That’s what worked. Thank you for the assistance.
Forum: Plugins
In reply to: [The Events Calendar] line break/return in Organizer fieldFor some reason 15 didn’t give the results I wanted. Ended up using 30 characters. Thanks so much for your help!
I think I answered my own question. You have to add all of the users to an RCP membership category in order for the restrict options on the Company Directory Categories page to work.
I had this problem after updating both Print Invoice and Extra Product Options. The problem can be solved in the Woocommece > Settings > Extra Product options. If you enable Legacy mega data, the extra product options will display on the print invoice again. Hope this helps anyone else with this problem.
I was able to solve half of the problem, the country field displaying on the invoice. The Check Out Manager plugin settings > Billing page had the Country field enabled. Disabling that field, removed it from the invoice.
The change to remove the payment method in the functions.php worked. Thank you.
I am using the default template. The only override in the [theme]/woocommerce/print-order folder is style.css. It wasn’t using the Country field before.
What version would that be?
Forum: Plugins
In reply to: [Contact Form 7] Time PickerWhere do you place the script?
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.