Forum Replies Created

Viewing 7 replies - 1 through 7 (of 7 total)
  • Hi @takayukister we’ve got the same behavior on different projects. I think this behavior is not correct. If you click just on the acceptance checkbox and doesn’t fill in any data in the form, the whole form will be validated. This was not in the previous versions as i know. Maybe there is something wrong since the update in this direction.

    Hi iam not from the plugin provider, but had a similar issue. Are you running a bedrock based wordpress setup?

    Thread Starter tobias1hdw

    (@tobias1hdw)

    Hi @northernbeacheswebsites,

    i’ve quickly updated two files:

    Line 5-34 on wp-gotowebibar/inc/script.js:

    if ($('#calendar').length){
            var calendarData = $('#calendar-data').attr('data');
            var calendarTimeFormatSetting = $('#calendar-data').attr('data-time-format-setting');
            var calendarTimeFormat = $('#calendar-data').attr('data-time-format-setting');
    		
    		if(calendarTimeFormatSetting == 'wordpress'){
    			calendarTimeFormat = ($('#calendar-data').attr('data-time-format')).replace('i', 'mm');
    		}
            
            var calendarDataDecodedAndParsed = JSON.parse(atob(calendarData));
            
            var wordpressLocale = document.documentElement.lang;
            
    //        console.log(calendarDataDecodedAndParsed);        
            
            $('#calendar').fullCalendar({
                header: {
                    left: 'prev,next today',
                    center: 'title',
                    right: 'month,agendaWeek,agendaDay,listWeek'
                },
                navLinks: true, // can click day/week names to navigate views
                editable: false,
                height: 'auto',
                locale: wordpressLocale.substr(0,2),
                timezone: 'local',
                timeFormat: calendarTimeFormat,
                events: calendarDataDecodedAndParsed
    
            })       
        }

    Line 123 on wp-gotowebibar/inc/shortcode-calendar.php:

    $html .= '<div id="calendar-data" data="'.base64_encode(json_encode($calendarData)).'" data-time-format="'.get_option('time_format').'" data-time-format-setting="'.$options['gotowebinar_time_format'].'"></div>';

    This fixed my issue.
    I am not sure if this is a global fix, but for the calendar it could work. If this solution is fine for you, feel free to add it to your plugin ??

    Thread Starter tobias1hdw

    (@tobias1hdw)

    Hi @northernbeacheswebsites thank you for your fast feedback.

    I would add the fix currently to the plugin files and stop updating the plugin.

    Maybe there is a way to get this fix into the regular plugin? If you are using github, i could have a look into the code and try to get fix done. After that i could create a pull requests.

    But only if you are interested ??

    Regard,
    Tobi

    Thread Starter tobias1hdw

    (@tobias1hdw)

    Hi @northernbeacheswebsites,

    it is exactly this!

    Example:

    Currently it is 4pm, but we are expecting 16:00.

    We thought if we use the “Use WordPress Date/Time format” option this is what should happen.

    THank you for you fast feedback ??

    Thread Starter tobias1hdw

    (@tobias1hdw)

    Hi Takayuki,

    i’ve tried a couple of ways. In the wirst iteration i seperated the receipients with a comma. In another iteration i tried to set one receiver and added all others with Cc: <e-mail-address> in the additional headers.

    Currently i’ll set it back to:

    https://ibb.co/0sSPsjW

    • This reply was modified 4 years, 7 months ago by tobias1hdw.
    • This reply was modified 4 years, 7 months ago by tobias1hdw.
    Thread Starter tobias1hdw

    (@tobias1hdw)

    Hi Takayuki, sorry for the late response. I needed to talk to our client and get their ok to publish the related page.

    Here is the url:
    https://www.aktion-tagwerk.de/spenden/

    Thank you for your help,
    Tobi

Viewing 7 replies - 1 through 7 (of 7 total)