hiStrat76
Forum Replies Created
-
Thanks, I solved it by going into the database and finding every iteration of that field’s description we ever used and then added that to the shortcode.
Anne
The event submission form.
Thanks!
Anne
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] post.php errorYep, I figured it out, due to a theme conflict.
Thanks,
AnneForum: Plugins
In reply to: [WP FullCalendar] Ordering 12am calendar events last on calendarThanks for your help. Sorry very new to php and I’m struggling with modifying this snippet to sort the events so 12a events appear last. Here is where I’m at:
function my_fc_filter( $events ){
$args=array(“9p”,”11p”,”12a”);
foreach($events as $key => $event){
sort($args);
}
return $events;
}
add_filter(‘wpfc_events’,’my_fc_filter’);Any advice? Thanks again!
Version 5.6.1
Thanks,
AnneAlso, when we attempt to upload an event image that is too large, the event is saved to Draft. Shouldn’t it not be saved at all until the event submitter uploads an event image that is the maximum size?
Thanks,
AnneHi Angelo,
Yes I do have an existing page assigned to the Edit events page. We’ve run a bunch of tests and it seems we get the ‘Unauthorized Access’ message when we attempt to upload an Event image that is too large. But shouldn’t it be showing a message instead that says the image is too large?
Anne
Thank you! It turned out to be a conflict in my theme with how the search filter was set up in functions.php. I updated it to include Event as well as Post, etc. and its working.
Anne
And the issue persists, just to be clear.
Thanks!
AnneYes, it is set to Yes.
Anne
Thanks that did it!
Anne
Yes, thanks:
/wp-content/themes/Zoo/plugins/events-manager/templates/forms/event-editor.php
Forum: Plugins
In reply to: [Featured Video Plus] Sometimes wrong featured video displays on blog archiveThanks! Is there a way to remedy this issue while using Featured Video Plus? I see I can add a name attribute if I am using the iframe embed code, but using this plugin we just add URLs.
Anne
That worked beautifully. Thanks!
Anne
Forum: Plugins
In reply to: [Featured Video Plus] Video re-sizing on page loadI was able to resolve this, in case its helpful to anyone else. I removed the call for fitVids in the theme_trust.js. Then I disabled the responsive setting in Featured Video Plus. Then I added this bit of CSS to make the iframe responsive again:
.featured-video-plus.fvp-center {position: relative; padding-bottom: 56.25%; /* 16:9 */ padding-top: 25px; height: 0;} .featured-video-plus.fvp-center iframe {position: absolute; top: 0; left: 0; width: 100%; height: 100%;}
Thanks for pointing me in the right direction Alexander.
Anne