joeleen
Forum Replies Created
-
I had a fatal error too until I upgraded the the latest version ??
Forum: Plugins
In reply to: [Import Social Events] Import Facebook events from page im admin forMust you be “admin” of a page to schedule auto-imports or will a “moderator” role also work?
- This reply was modified 5 years, 3 months ago by joeleen.
I tried copying the code from Pete777 into a file I named java_for_calendar.js and copied to root of plugins directory. Then I added this code below to my child theme functions.php, but the forward arrow still doesn’t show. Has anyone else tried this and been successful? Any idea what I’m doing wrong?
<?php
function wpb_adding_scripts() {wp_register_script(‘my_amazing_script’, plugins_url(‘java_for_calendar.js’, __FILE__), array(‘jquery’),’1.1′, true);
wp_enqueue_script(‘my_amazing_script’);
}add_action( ‘wp_enqueue_scripts’, ‘wpb_adding_scripts’ );
?>Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Google Calendar ID not workingI am getting this error as well, until I change the setting under
Edit Calendar
Calendar Settings – right at the top
I change it from Google Calendar to Grouped Calendar since this calendar is one of many under the user profile (and if you notice your error also refers to “group.calendar.google.com”)However, thenthe first error disappears but another error appears that I do not know how to solve:
Warning: uasort() expects parameter 1 to be array, boolean given in /home/content/83/7881983/html/wp-content/plugins/google-calendar-events/includes/feeds/grouped-calendars.php on line 164And when the calendar appears there is no arrow to navigate to future months.
Forum: Plugins
In reply to: [The Events Calendar] Removing “Export Events” on Month ViewI found a plugin that removes ALL export links: “The Events Calendar: Remove Export Links”, you must use ver 1.1 – search the forums, I found a link there in the last day or two.
THEN, if you want to add back the google & ical links like I do, add this code to your child functions.php file:
// adds google link back
add_action(‘tribe_events_single_event_after_the_content’, ‘tribe_add_gcal_link’);function tribe_add_gcal_link() {
// don’t show on password protected posts
if (is_single() && !post_password_required()) {
echo ‘
<table><tr><td><div class=”tribe-events-cal-links”>’;
echo ‘+ ‘ . __( ‘Google Calendar’, ‘tribe-events-calendar-pro’ ) . ‘‘;
echo ‘</div></td>
<!– .tribe-events-cal-links –>’;
}}
//ads ical link back
add_action(‘tribe_events_single_event_after_the_content’, ‘tribe_add_ical_link’);function tribe_add_ical_link() {
// don’t show on password protected posts
if (is_single() && !post_password_required()) {
echo ‘
<td><div class=”tribe-events-cal-links”>’;
echo ‘+ ‘ . __( ‘iCal Import’, ‘tribe-events-calendar’ ) . ‘‘;
echo ‘</div></td></tr></table>
<!– .tribe-events-cal-links –>’;
}}
Forum: Plugins
In reply to: [The Events Calendar] Removing “Export Events” on Month ViewI have a similar issue but I ONLY want to remove the “export events” links found under the month & list views. I want to keep the “google calendar” and “ical export” buttons… Looking for code that removes ‘”export events” only.
I have removed my custom version of single-event.php to make sure it’s you and not me. Problem continues. You can see it at this link
I have the problem too. And they grey box that surrounded just the venue information is now encompassing the entire event info. In addition, if there’s an image, it overlaps the grey box and basically looks crummy.
Forum: Plugins
In reply to: [Contact Form 7] Failed to Send messageI have this issue too after upgrading to 4.4.1. I also have confirmed that from & to email are on my domain where this site is located.
Forum: Plugins
In reply to: [Promotion Slider] Responsive wrapperhow did you solve this? I can’t get it working either…
Forum: Plugins
In reply to: [Event Rocket] event_rocket_listAh! I understand much more now. Thanks for that explanation. Really appreciate it.
Forum: Plugins
In reply to: [Event Rocket] event_rocket_listwait, I don’t want to customize tri.be’s list-widget.php template,
I want to customize event-rocket’s shortcode: [event_rocket_list]
or am I just not understanding something above?how do I edit your event_rocket_list shortcode?
Forum: Plugins
In reply to: [Event Rocket] Styling the Embed Events List ShortcodeSorry if this is a dumb question, but I’d like it to pick up the exact styles that I’m using on the regular events pages,
ie when using this shortcode:
[event_rocket_list]
I want it to look the same as this page:
https://www.mydomain.com/?post_type=tribe_events&eventDisplay=upcominghow do I do that?
yes, when will 3.8 be supported? I activated it and did have menu to change parameters but “maintenance mode” never appears… I really like your plugin and look forward to using it
Forum: Plugins
In reply to: [The Events Calendar] Calendar View not working since version 3.0I get all of the grid for all days of the week showing up under Monday.