John Carman
Forum Replies Created
-
Forum: Plugins
In reply to: [Video Conferencing with Zoom] Create a meeting without a passwordI recently created several meetings on Zoom without a password. For the meetings that I created in the plugin, I just went back into Zoom and removed the password. It’s a bit annoying, but that seems like the only workaround for now.
Forum: Plugins
In reply to: [Video Conferencing with Zoom] Create a meeting without a passwordIn that video, the user adds a password at 3:37. Is there a later part of the video that shows how to create a meeting without a password?
Forum: Plugins
In reply to: [WooCommerce] Display membership length on product pageThere’s nothing there, but I marked this as resolved since there apparently is no support forum for Memberships.
Forum: Plugins
In reply to: [Videopack] ‘Insert into Post’ grayed outI’m having the exact same issue as @jimbuell. I even tried https://download.blender.org/peach/bigbuckbunny_movies/BigBuckBunny_320x180.mp4 and the Insert into Post button remains grayed out.
Has anyone started a topic about missing numbers in the pagination? Ex: https://schoolforgoodandevil.com/readers/gallery/
I am, but I solved it with
a:link { cursor: pointer !important; }
.I just wanted to throw some support to the topic, since nobody responded.
Same.
Forum: Plugins
In reply to: [amr ical events lists] What is the best way to hide weekends?On a public school cafeteria calendar, there are no weekend events, so I can safely hide weekends.
CSS alone does not work, because if you hide the weekend columns, the colspan is wrong on the td.pad cells.
I actually went with a pure jQuery solution. This way, it will degrade gracefully for users with JS disabled:
$(document).ready(function(){ $('table.largecalendar td.day6, table.largecalendar td.day7, table.largecalendar th.saturday, table.largecalendar th.sunday').hide(); var colspans = $('table.largecalendar td.pad').attr('colSpan'); if (colspans>1) $('table.largecalendar td.pad').attr('colSpan', parseInt(colspans)-1); });
Thanks for the prompt response! I love the plugin. I also wanted to build a customized event listing, and I was able to do that easily by configuring a list type.
Forum: Plugins
In reply to: [Social] [Plugin: Social] Scheduled BroadcastingI’m also on WP 3.5 and Social 2.7.
Forum: Plugins
In reply to: [Social] [Plugin: Social] Scheduled BroadcastingScheduled posts are still not being broadcast to Twitter or Facebook. Manually published posts broadcast correctly.
Forum: Plugins
In reply to: [WPBook] [Plugin: WPBook] Different Thumbnail LocationIs there a way to hack WPBook to include the post thumbnail on the Facebook Wall, at least until it is supported?
Forum: Plugins
In reply to: [Plugin: Contact Form 7] confirm emailI see there hasn’t been a response in 6 months, so does that mean that Contact Form 7 has no plans to roll out this feature? Email confirmation fields are pretty common form fields.