I have been looking for a plugin for integrating GoToMeeting into WordPress. I notice that GoToWP Premium (For GoToMeeting) is still being sold, but there is no support link whatever. I am trying to set up GoToWP with GoToMeeting’s API, but syncing with GoToMeeting doesn’t return any of my meetings.I also don’t understand what the Premium version is offering in addition to the free one.
]]>You mention you support GoToTraining but I dont see the authentication to it in you plugin
The plugin in general doesnt work as the authentication doesnt work
]]>Can we embed GoToMeeting into a WordPress page with this or any other plugin?
]]>Hello Support team,
My Developers recently installed the GoToWP Personal WordPress plugin. I’ve been trying to set up the plugin as suggested on the plugin page.
Enter The Organizer Key and Access Token which can be obtained from our online app at https://app.gotowp.com/
Once there click the G2W OAuth Flow button (for GoToWebinar), login to your account and allow the app to access details of your account. Citrix will then generate the necessary key and token on the screen.
Keys generated through app.gotowp.com are stable for 1 year
However, I am not able to generate the Organizer Key and Access Token via the online app(https://app.gotowp.com/).
I saw the below message but I’m sure that we are not using the OAuth API v1 as we just recently installed the plugin.
{“error”:”OAuth API v1 has been decommissioned as announced in February 2018, please switch to OAuth API v2 documented here: https://goto-developer.logmeininc.com/oauth-migration-guide. Please reach out to Support ([email protected]) with questions.”}
Can you please advise on this issue?
]]>After submitting the registration form the plugin throws an error screen. The error we are seeing is below.
01-Jul-2019 14:29:48 America/New_York] PHP Fatal error: Uncaught Error: Call to a member function Attributes() on null in /www/wp-content/plugins/gotowp/inc/cc_oauth/Components.php:208
The submission still goes through and the individual is added correctly, but we can’t figure out why the error page is appearing.
Any help is much appreciated! Thanks!
]]>I am using premium GoToWP Personal, i created new webinar. but in admin panel i m not able to sync that webinar.
I tried this flow: settings->GoToWP Personal-> clicked on Sync with GoToWebinar btn
About half of the registrations are not making it through to GoToTraining. I’ve e-mailed support with login credentials.
I’ve dm’d on Twitter.
I’ve posted in the support forum.
I’m posting here.
I hope this isn’t against the rules, but I’m posting this here because we aren’t getting any response on the premium plugin support forum and I see there is some activity from the developers here.
File: _gtwp_g2w_inc.php
Lines:1381-1385
Code:
$mailer = WC()->mailer();
$mailer->customer_invoice($order);
$email = $mailer->emails[‘WC_Email_New_Order’];
$email->trigger($order_id);
I think this is a bug, or possibly code for backward compatibility. We really enjoy the plugin, but would really like an acknowledgement of the issue.
]]>Upon submitting the frontend webinar registration form, the thank you page (via pageID) is not returned and the registration is not present within gotomeeting.com.
]]>I can’t figure out how to get the integration to recognize my scheduled trainings. It says synch with gotowebinar but when using the oAUTH settings, I used the GO2T link and set it up that way. Shouldn’t that pull my trainings not webinars?
]]>Hi,
even if we set the language of the webinar for example in french on Citrix, the form showed on our site by the plugin still has the fields in English.
How can we have the fields of the form in different languages?
Thank you.
]]>Going through our site during QA and saw these two DB tables:
wp_gtwbundle_webinars
wp_gtwbundle_meetings
I am guessing these are residual from an earlier version of this plugin, but would like to confirm to be sure. Could you confirm for me? Thanks!
]]>My reports show the 9 boxes of stats (page views, etc.) but above the 9 boxes there is no graph. How can I make the graph appear above the stats boxes?
While I wait for an answer, I will ignore the GA dashboard and go directly to Google Analytics for my reports. But I don’t think this is what WP intended.
]]>Hi,
We have recently upgraded our version of the Goto webinar plugin to 3.0.4. When assigning webinars to products via wordpress, we now see that there is a dropdown to choose which webinar from Gotowebinar we would like to assign. This is a nice feature; in the previous version we were running, we had to copy and past the webinar reference in from GTW and paste it into the “Gotowebinar options” field.
The dropdown is working fine when we set-up new products, but when we go into older products that were set-up before we upgraded the GTW plugin, there is nothing within “Gotowebinar options” custom field. This means that we can’t go back and edit webinars that are happening in the future, but were set-up before we updated the plugin.
Does anyone have any ideas why this function isn’t showing up on these products?
]]>Hi Guys, thanks for the plugin. The base url for the api needs updating as per the post here https://goto-developer.logmeininc.com/content/important-changes-goto-developer-center-new-domains-apis from https://api.citrixonline.com/ to https://api.getgo.com/
Cheers
Dougal
Today, after the upgrade to 4.0.1, i got this error on the site’s homepage:
Fatal error: Call to undefined function gotowp_custom_has_shortcode() in /var/www/xxxxxx/public_html/wp-content/plugins/gotowp/_gotowpp_inc.php on line 3308
Looking at the the incriminated lines, the error is in the function:
———————–
function gotowp_personal_has_shortcode($shortcode) {
global $post;
$found = false;
if (function_exists ( ‘has_shortcode’ ) && is_object($post) && has_shortcode ( $post->post_content, $shortcode )) {
$found = true;
}
elseif (gotowp_custom_has_shortcode ( $shortcode )) {
$found = true;
}else{
$stags = array($shortcode);
$pattern = get_shortcode_regex($stags);
if ( preg_match_all( ‘/’. $pattern .’/s’, $post->post_content, $matches ) && array_key_exists( 2, $matches ) && (in_array( $shortcode, $matches[2] )) )
{
$found = true;
}
}
return $found;
}
—————–
I’ve substitute the whole function with the 4.0.0’s version:
—————–
function gotowp_personal_has_shortcode($shortcode) {
global $post;
$found = false;
if (function_exists ( ‘has_shortcode’ )) {
if (is_object($post) && has_shortcode ( $post->post_content, $shortcode )) {
$found = TRUE;
}
} else {
if (gotowp_custom_has_shortcode ( $shortcode )) {
$found = TRUE;
}
}
return $found;
}
—————–
Now it works or, at least, it doesn’t break the whole site.
Please fix this bug ASAP, because i think that it could break lot of sites, maybe production sites, not staging’s version as in my case.
I’m using wp 4.8.2 with latest php 5.6
Regards
Hi — we seem to be having a problem with a conflict with JS and I have it narrowed down to the registration form causing a JS error with our header menu. On the page: https://sportlaw.ca/webinar-series/ the mobile menu does not work.
If remove the form shortcode for the Webinar then the menu is mobile as it is supposed to be.
I do see an error in the debugger : TypeError: $(…).validate is not a function
But not sure where that is coming from. Can you please help? Thank you!
]]>Great plugin,
How do we do redirects after submit in the later versions?
]]>i have installed this plugins and have successfully integrated it with my site and gotoWebinar credentials
im using this for registration purpose only
first it was working fine
but when i change my redirect url and make some fields required on gotoWebinar form
plugin is not bringing those changes on my site it still showing the old registration form
any idea why ?
Hello,
After updating to gotowp plugin Version 3.0.2 – WP 4.8 no date and event’s name shows on the registration form. this is the sample of short code i am using [register_webinar webid=xxxxxxxxxxxx type=single].
I appreciate your help in advance.
Thank you.
Best,
Azita
I recently received a notification from LogMeIn that the GoToWebinar API base URL is changing. In the most recent update of the plugin, the URL is still the old one, so I thought I should update you. Here is the information I received:
]]><h4>New domain</h4>
As you may know, on January 31st, 2017 the GoTo business of Citrix that includes GoToAssist, GoToMeeting, GoToMyPC, GoToTraining, GoToWebinar, OpenVoice, Grasshopper, Concierge and Event Services separated from Citrix and merged with LogMeIn, Inc.<h4>How this impacts you</h4>
The GoTo Developer Center will begin using a new base URL for API requests. Starting April 5, 2017, the base URL for all APIs will be https://api.getgo.com. API requests sent to the old API base URL (https://api.citrixonline.com/…) will work as before until December 31, 2017. The URLs will NOT be redirected. Before January 1st, 2018, please replace all instances of https://api.citrixonline.com with https://api.getgo.com.Our number one priority is delivering great service and a best-in-class experience to you, our valued customer. Please contact our team with questions: [email protected].
We greatly value you as a customer and appreciate the opportunity to serve you!
Sincerely,
The team at LogMeIn
I’ve had a weird recurring fatal error, looks like the plugin is causing an issue, it’s still happening with the plugin inactive (maybe because it’s inactive?):
Fatal error: Cannot use object type WP_Error as array in /home/xxx/public_html/wp-content/plugins/wp-gotowebinar/wp-gotowebinar.php on line 294
Any help would be appreciated – have deleted the plugin for now, but would like to use it again in the future.
]]>Hi. Does your plugin work with Woocommerce and GotoTraining? Thank you!
]]>Hi,
I have integrated the plugin and everything seems working fine. I was wondering if we can put an hidden field source to the form so that we know its from website. I have tried editing the plugin, the hidden field shows in the form but the data is not being saved.. Can you help me with this
]]>Hi,
even if I set the language of the webinar in italian, the form showed in our site by the plugin still has the fields in English.
But the form in the link provided by gotowebinar is correctly in italian.
Since these fields are “first name”, “last name” and “email, I cannot create new fields instead of those because they are mandatory by default.
How can I have the fields of the form provided by GoToWp in my language?
Thank you.
]]>Alright I’ll try again.
Is it possible to make a placeholder of the GTW-form in this plugin instead of having the text from the left side?
]]>In the file /assets/css/public.css you are applying a width:100% to th and td elements. You don’t have any specificity included with that and I’ve found at least one use case with a client’s site where your CSS is over-riding the css of the theme.
This lack of specificity can cause layout problems with themes since they should get the first right to handle table display.
In an update, can you make the change from:
th, td {
width: 100%;
}
To something more specific like:
#gotowp_personal_webinar_registration th,
#gotowp_personal_webinar_registration td {
width: 100%;
}
Thanks!
]]>I am using BrainTree powered by PayPal. Would this work with your plugin?
]]>Instead of having both registrations in GotoWebinar reports (?source=) and in Google Analytics track it with e.g /thank-you-page I want to collect everything in GoToWebinar. How is this possible with this plugin?
Before I added this plugin I tracked all registrations through the website with a cookie script and defined from every source with:
?webinar-campaign=email-lime-crm-2016-08#events Where the cookie follows the “webinar-campaign” on the page #events and the definition is from e-mail Lime CRM and the date. This works.
But now they are not transferred to the GTW-link.
Any ideas or solutions to track everything in GTW with this plugin?
]]>Hi,
Firstly I’d like to thank you for creating such a great plugin.
I have set everything up and appears to be registering people as expected, and sending me to the confirmation page. However, I am currently testing the form, and it is not sending out confirmation emails from gotowebinar when I register.
Is the email function deactivated when using this plugin or is there a file I need to edit to activate this?
Many thanks,
Dom
]]>