mnrecovery

Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • in reply to: I can't add featured images to events #1069595
    mnrecovery
    Participant

    I resolved this on my own.

    in reply to: I can't add featured images to events #1069179
    mnrecovery
    Participant

    Hi George,

    Thanks for your reply. It turns out my theme was only allowing post thumbnails on specific pages and post types. Here’s how I resolved it in my child theme’s functions.php:

    // After Theme Setup
    function mrc_child_theme_setup() {
    add_theme_support( ‘post-thumbnails’ );
    }
    add_action( ‘after_setup_theme’, ‘mrc_child_theme_setup’, 11 );

    By adding an 11, I’m able to fire this after my parent theme’s functions load, thus allowing me to add featured images to the events template.

    I have two more questions for you regarding the iCal Import.

    1) I imported my Google Calendar, then I decided to delete them and start over. When I tried to import the calendar again, I got this message:

    Your search returned no results. Please adjust your search.

    I searched the Knowledge Base to see if you address this issue, but I didn’t find anything. How do I re-import my iCal URL?

    2) I found this link in the KB to embed a mini-calendar using a shortcode [tribe_mini_calendar category=”all-recovery-meetings”], but I’d like a normal, monthly view calendar with a specific category.

    Please advise. Thank you!

Viewing 2 posts - 1 through 2 (of 2 total)