Forum Replies Created

Viewing 15 replies - 1 through 15 (of 41 total)
  • Thread Starter Andrei G.

    (@27shutterclicks)

    Although the code above worked to fix the timezone issue, there is still an issue with this as the WP admin side still shows the incorrect start date / time for the meeting.

    Any ideas on how to deal with this are welcome.

    Thread Starter Andrei G.

    (@27shutterclicks)

    I kept poking around the plugin and figured out how to fix it (for my specific situation), by hooking into the appropriate filters of \includes\api\class-zvc-zoom-api-v2.php plugin file.

    //hook for fixing the Zoom meeting start time in Video Conferencing with Zoom plugin
    add_filter( 'vczapi_createAmeeting', "zoom_timezone_fix");
    add_filter( 'vczapi_updateMeetingInfo', "zoom_timezone_fix");
    
    function zoom_timezone_fix( $meetingInfoArray ){
        
        //get the UTC/GMT start time/date originally set by the plugin
        $start_time = $meetingInfoArray["start_time"]; //format received is "Y-m-d\TH:i:s" ("2020-09-09T13:00:00")
        
        //create new DateTime object set to UTC timezone from the original start time/date
        $start_time = new DateTime($start_time, new DateTimeZone('UTC'));
        
        //use DateTime object to automatically calculate hour difference based on desired timezone
        $start_time->setTimezone(new DateTimeZone('America/New_York'));
        
        //update the meeting info array with the adjusted time in the original format
        $meetingInfoArray["start_time"] = $start_time->format("Y-m-d\TH:i:s");
        
        //return meeting info array
        return $meetingInfoArray;
        
    } 
    Forum: Plugins
    In reply to: [Groups] Version 2.7.1 bug
    Andrei G.

    (@27shutterclicks)

    I also have the same problem.

    With Groups 2.7.1 activated, I can no longer insert pictures using WP default Insert Media diaglog. I get .selectize is not a function javascript error.

    I am using Elementor front end page builder to edit posts and pages.

    This is a MAJOR issues as I have sensitive content on the site that I cannot simply expose by disabling Groups to add images.

    Please FIX ASAP.

    • This reply was modified 6 years, 11 months ago by Andrei G..
    Andrei G.

    (@27shutterclicks)

    I also have the exact same situation. I use theme my login plugin and if I log out on one site, I am still logged in on the other.

    Any ideas?

    Thanks.

    Thread Starter Andrei G.

    (@27shutterclicks)

    Hi Jeet,

    Thank you very much for the speedy response and update of the plugin. Much appreciated.

    Andrei G.

    (@27shutterclicks)

    I am getting the same error. Also, one of the sticky lists on the front end is giving internal server errors, possibly caused by running out of memory when trying to display the sticky list.

    Any ideas?

    Andrei G.

    (@27shutterclicks)

    I was able to resolve this issue by simply updating the Groups plugin to the latest version.

    Andrei G.

    (@27shutterclicks)

    I am having exactly the same problem as above.

    The bottom dropdown menu works, except it is not “selectized”. It is simply a multi-select dropdown.

    Any planned fixes for this?

    Thread Starter Andrei G.

    (@27shutterclicks)

    I have been able to load the contents of the .po into the site. WPML has an option for that in its Settings section.

    The thing is that no matter what, only the English text shows, even if I browse the site in the second language.

    What I am interested in is translating the front-end texts of the plugin, not necessarily the admin side, where everything is in English anyway.

    So things like (4 stars, 5 Start, Loading, average, 4 out of 5) etc.

    Any ideas?

    Thank you.

    Thread Starter Andrei G.

    (@27shutterclicks)

    So I had downloaded the .po/.mo file from the link in the plugin’s description tab: http://dev.wp-plugins.org/browser/wp-postratings/i18n/

    Is this not a valid way anymore? Should the plugin’s description be updated then?

    Using polygot, how do I go about adding support for a second language to the plugin? How do I enable it to display in another language?

    I am using WPML.

    Thank you

    Thread Starter Andrei G.

    (@27shutterclicks)

    To be clear, I’ve been adding users without email, which has been working fine.

    It looks like now, if no email is provided, what I described in my original post happens.

    Has anything changed recently in the way WordPress allows the creation of an user without an email?

    Andrei G.

    (@27shutterclicks)

    Ok, I think I figured it out.

    Adding a hidden field and setting {date_dmy} as default value will work for all new entries, but not for the existing entries.

    Since Gravity forms already has a date created field for each entry, there is no need to st it again (via the default value). Instead, leave the default value blank and use the same approach as for displaying the entry id (as shown in the FAQ section of the plugin page).

    How can I add the entry date to the list?
    Add a (hidden) field to your form and note the ID of that field and then add this code to your functions.php

    add_filter('filter_entries','add_entry_date' );
    function add_entry_date($entries) {
        foreach ($entries as &$entry) {
            $entry["xxx"] = $entry["date_created"];
        }
        return $entries;
    }

    Change xxx in the code above to the ID of your new field.

    Andrei G.

    (@27shutterclicks)

    Thank you for this wonderful plugin.

    I am having the same issue also. Followed your steps above, but date column still blank.

    Is {date_dmy} a default merge tag or does it need to be added somehow?

    Andrei G.

    (@27shutterclicks)

    Ok, I figured it out – click on the Stable release and then at the bottom there is an Export option of your choice.

    Now, where does the downloaded .mo file go? And does it need to be named a certain way, or do I just keep it with the same name I downloaded it.

    Thanks.

    Andrei G.

    (@27shutterclicks)

    So for the existing translations, like fr_FR for example, how do we go about actually getting them so that the plugin makes use of them?

    I can’t seem to find a download link here: https://translate.ww.wp.xz.cn/locale/fr/default/wp-plugins/theme-my-login

    Thanks.

Viewing 15 replies - 1 through 15 (of 41 total)