Greg

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 23 total)
  • Author
    Posts
  • in reply to: Events Calendar not showing Month View for February #100099
    Greg
    Participant

    It has been fixed. Thank you!

    in reply to: Need more occurances than 200. #71960
    Greg
    Participant

    Thank you. I’ll keep this in mind. The client is now thinking they want to revert to using regular pdfs they create on their own, and dropping the plugin completely, so it may be a mute point.

    in reply to: Some Questions #71652
    Greg
    Participant

    Ok so I found some code in my functions.php file that was causing the issue. I don’t remember adding this but I’m sure I did. I know at some point I was given custom code by your support team to add. I can’t remember why we added it. Is there any way for me to view all of my past support threads? I can’t seem to find that option anywhere. Here is the code…maybe you can enlighten me?

    add_filter(‘tribe_get_events_title’, ‘my_get_events_title’);
    function my_get_events_title($title) {
    if( tribe_is_month() && !is_tax() ) { // The Main Calendar Page
    return ‘Events Calendar’;
    } elseif( tribe_is_month() && is_tax() ) { // Calendar Category Pages
    return ‘Events Calendar’ . ‘ » ‘ . single_term_title(”, false);
    } elseif( tribe_is_event() && !tribe_is_day() && !is_single() ) { // The Main Events List
    return ‘Events List’;
    } elseif( tribe_is_event() && is_single() ) { // Single Events
    return get_the_title();
    //} elseif( tribe_is_day() ) { // Single Event Days
    //return ‘Events on: ‘ . date(‘F j, Y’, strtotime($wp_query->query_vars[‘eventDate’]));
    } elseif( tribe_is_venue() ) { // Single Venues
    return $title;
    } else {
    return $title;
    }
    }
    add_action( ‘pre_get_posts’, ‘tribe_fix_title’ );
    function tribe_fix_title( $query ) {
    if ( $query->is_main_query() ) {
    if ( ! $query->tribe_is_event_query ) {
    $tec = TribeEvents::instance();
    remove_filter( ‘wp_title’, array( $tec, ‘maybeAddEventTitle’ ), 10, 2 );
    }
    }
    }

    in reply to: Some Questions #71651
    Greg
    Participant

    Hi there,
    I apologize, I am taking over for someone else who was managing our support account. The client is still seeing the issue with “Events on: January 1, 1970” on all single day views. For example, take a look at:
    http://www.mvmansionhouse.com/health-club-schedule/2016-10-02/. When I switch the theme to twentythirteen the problem goes away and the correct date displays. I’m using the default page template for the events template. I’ve tried switching to the default events template and the problem is still there. I’ve tried deactivating all plugins and the problem is there. Only when I have my normal theme activated, I get this error within the plugin admin and on the editing screen for individual events:

    Warning: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback,

    ‘tdav_css’ was given in /usr/home/web/mvmansionhouse.com/wp-includes/plugin.php on line 173

    Any way you can give me some insight here on what to check in my theme? The theme was built a few years ago as a copy (not a child – I know that’s bad) of twentyten. I stripped down page.php to the bare bones and that still didn’t help. I can’t figure out what the heck could be affecting it, so frustrating!

    in reply to: Some Questions #70555
    Greg
    Participant

    http://www.mvmansionhouse.com/health-club-schedule/
    We got the Jan 1st to stop appearing because we decided that all of the events per day should be displayed on the month view, and the button that was displaying that date is null now. To do that we just allowed more slots than events to be displayed. I could try and deactivate plugins and switch themes, but I would rather do that as more of a last resort since we decided that showing all the events was not only a work around for our main problem but displays our events properly.

    Greg
    Participant

    Well, I switched plugins…and the same thing happened WordPress SEO installed. However, your snippet seemed to do the trick. I’m not sure I understand how it’s not “hacking my header”, but if it works, that’s what matters! Thank you!

    Greg
    Participant

    Yup, seems to be All in One SEO Pack. Do you have any tips for getting around that? If not, I guess I will try WordPress SEO by Yoast and see what happens.

    Greg
    Participant

    I am talking about the title tag in the head section of the html – http://snippi.com/s/hn18uts

    Greg
    Participant

    Hi Jonah. Thanks, but no, we didn’t. Your screenshot doesn’t show the browser tab – that’s what I need changed. I am talking about the – not the page title/h1 tag.

    Greg
    Participant
    in reply to: Only display one week on main events calendar #50633
    Greg
    Participant

    Sorry, found the answer to my second question. But would still like to know the anticipated release date for 3.0…thanks!

    in reply to: Only display one week on main events calendar #50632
    Greg
    Participant

    Thanks so much Jonah. When do you think 3.0 will be released?

    One more question – is there a way to set the calendar to display SMTWThFS instead of MTWThFSS (Sunday first instead of Monday)?

    in reply to: Still having trouble with adding content above calendar #31265
    Greg
    Participant

    So I did that, and now my calendar moved over to the left and some random text appeared below the calendar. The text I added via the options add-on is still not appearing above the calendar.

    http://www.vacationsinc.com/events/

    in reply to: Still having trouble with adding content above calendar #31260
    Greg
    Participant

    Thanks for being patient with me 🙂
    Here’s my code. http://snippi.com/s/2rcpta0
    As I mentioned above, the text displays, but the option I added does not. This is what happened when I tried to add a shortcode, as well as the template code from the Improved Include Plugin. This leads me to believe it’s not a problem with the ACF plugin, but I’m not sure I have the template code right for ACF either. Can you please help?

    in reply to: Still having trouble with adding content above calendar #31078
    Greg
    Participant

    the_field($calendar_text, ‘option’);

Viewing 15 posts - 1 through 15 (of 23 total)