Hi guys
how can I have the week start with Sunday instead of Monday in the calendar that comes when you hover over a date? It’s something a US client asked.
See this: http://prnt.sc/cwoz63
Thank you!
Antonio
Hey Antonio!
Please go to enfold/framework/php/class-form-generator.php file and find following line
firstDay: AviaDatepickerTranslation.firstDay,
and change it to
firstDay: 7,
Best regards,
Yigit
Thank you Yigit,
will try that now. Will this be overwritten whenever there is a theme update? If so, is there a way to make it permanent?
Hey!
Please copy unmodified class-form-generator.php file and paste it inside enfold-child folder and apply your changes and find following line at the top
<?php if ( ! defined( 'AVIA_FW' ) ) exit( 'No direct script access allowed' );
and change it to
<?php
Then add following code to Functions.php file of your child theme
require( 'class-form-generator.php' );
Regards,
Yigit