digamberpradhan
Forum Replies Created
-
Forum: Plugins
In reply to: [Video Conferencing with Zoom] Recording not showing – ‘Check for latest’Hi @fdittmar ,
Can you please let me know what shortcode you are using ?
Forum: Plugins
In reply to: [Video Conferencing with Zoom] error stdClass in [zoom_join_via_browser]Hi @kaquna ,
can you please check if the meeting has been created or not.
This usually happens when the meeting for some reason was not created on Zoom.Forum: Plugins
In reply to: [Video Conferencing with Zoom] Meeting autodeleteHi,
From what i know Zoom does not delete meetings automatically. As this is a Zoom setting rather than plugin setting or issue – you may be better served contacting Zoom support
https://devforum.zoom.us/Forum: Plugins
In reply to: [Preview E-mails for WooCommerce] WordPress 5.6 Compatibility?Hi @derekjreynolds,
I haven’t been able to bump the tested up to on the plugin coz of some issue with my laptop(s) – but yeah the plugin works with 5.6 too.
Forum: Plugins
In reply to: [Video Conferencing with Zoom] Zoom meeting list filtered by host idHi @bookipixi ,
You will have to do some coding for that – you can use
https://developer.wordpress.org/reference/functions/get_current_user_id/And modify the shortcode as follows
add_shortcode('cm_show_current_user_meetings','cm_show_current_user_meetings'); function cm_show_current_user_meetings(){ $user_id = get_current_user_id(); $host_id = get_user_meta($user_id,'user_zoom_hostid',true); ob_start(); echo do_shortcode('[zoom_list_host_meetings host='.$host_id.']'); return ob_get_clean(); }
You will need to assign host to your users though please see here https://zoom.codemanas.com/assign_host/
Forum: Plugins
In reply to: [Video Conferencing with Zoom] Zoom meeting list filtered by host idHi @bookipixi ,
Yes you can do this please try this https://zoom.codemanas.com/shortcode/#4-list-meetings-based-on-host-id
Forum: Plugins
In reply to: [Video Conferencing with Zoom] Start or join meeting buttons are not showingHi @witage ,
You may have caching problems – can you provide me a bit more details.
1. What Browser are you using ?
2. Did the Author create the meeting ?
3. Caching plugins if any ?Forum: Plugins
In reply to: [Video Conferencing with Zoom] Elementor Zoom Widget ProblemHii @billiesmith289 ,
You can contact us via Pre Sale question form via our site https://www.codemanas.com/support/ as this is support forum for the free plugin we won’t be able to answer your questions here.
Forum: Plugins
In reply to: [Video Conferencing with Zoom] Page just goes blackHi @tuitionassignments ,
for a quick fix please add this css snippet to the site to fix the issue.
.dpn-zvc-single-content-wrapper::after { content: ' '; display: block; clear: both; }
Forum: Plugins
In reply to: [Video Conferencing with Zoom] Page just goes blackHi @tuitionassignments,
can you please send us a link to a page to inspect ?Forum: Plugins
In reply to: [Video Conferencing with Zoom] Zoom with calendarHi @ikeriker ,
This is not possible with the free version of our plugin.
This is only available via our premium addons for booking plugins.
Namely
https://www.codemanas.com/downloads/zoom-integration-for-woocommerce-booking/or
https://www.codemanas.com/downloads/zoom-for-woocommerce-appointments/
This also requires WooCommerce too.
Hi @showmeshannon ,
So i’ve gone over the code again – and there is nothing there that eliminates / stops sending emails. The e-mails are only prevented when the preview is being generated – that too only for that particular e-mail.I would imagine this would be a major problem if it was prevalent on all instances.
Few things to consider
– do you have object caching
– are there any particular plugins that are out of the ordinary here ?I am indeed getting e-mails for any new orders here.
Forum: Plugins
In reply to: [Video Conferencing with Zoom] failed to join meetingHi @fernandape007 ,
We are looking into it – there is no indication that we can do something to resolve this at this time but if there is something we will update it.Hi @showmeshannon ,
All the email logic for my plugin only works when you visit the admin area and the email preview section only.It should not effect e-mails being sent – but can you let me know what is happening – if you can locate the other forum topic too – i will look at both.
Forum: Plugins
In reply to: [Video Conferencing with Zoom] Zoom Check API Connection failsHi @fk21 ,
it seems your site is being blocked by the Zoom servers,
can you please go to https://devforum.zoom.us/
and tell them that when making API requests your site is getting 403 forbidden error.I tried your API keys on my local and it worked. For some reason zoom has blacklisted your server – please do get in contact with them.
If you are able to try on a local install or different site you will see your API keys will work.
- This reply was modified 1 month, 3 weeks ago by digamberpradhan.