A few customization questions

Home Forums Calendar Products Events Calendar PRO A few customization questions

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #24725
    Kelly
    Participant

    Hey guys! Just purchased your Events Calendar and am looking forward to using it in my latest build. I was hoping you could help me out with a few customization questions…

    1. How can I get rid of the widget title (class=”widget-title”) above my mini calendar widget? I’ve set display to none for the class on CSS, but in turn, it doesn’t display any at all. I just want to get rid of the one. Where is it located in the PHP?

    2. How can I add an event start time to the tooltip in the mini calendar widget?

    3. When I assign a link to the month (again in the mini calendar widget), it takes on the styling of the left arrow and doesn’t want to display properly. Can you help me set it so that it doesn’t do that? I want to get rid of “VIEW ALL” and have the user click on the month to bring them to the full calendar.

    Thanks a lot for what looks to be a great service!

    #24784
    Kelly
    Participant

    Bump.

    #24814
    Kelly
    Participant

    For anyone interested, I’ve figured out my own question #3:

    – duplicated events.css and table-mini.php into my theme directory’s /events folder
    – added the following to line 51 of table-mini.php:

    <a href="”>monthsFull[date(‘F’,$date)]; echo date(‘ Y’,$date); ?>

    – added the following CSS to events.css:

    #tribe-mini-ajax-month a {
    overflow: visible;
    position: inherit;
    font-size: 19px;
    width:auto;
    }
    #tribe-mini-ajax-month a:hover {
    color:#006e96;
    }

    It is suited for my styles, but it will give you a head start on it.

    Now to try to figure out #1 and #2… 🙂

    #24850
    Kelly
    Participant

    Figured out #1. It doesn’t have anything to do with the Events Calendar plug in itself. I found it in my functions.php where I registered the sidebar for the widget. Here’s my code, though it’ll be different from theme to theme:

    // Calendar sidebar
    register_sidebar( array(
    ‘name’ => __( ‘Calendar Sidebar’, ‘skeleton’ ),
    ‘id’ => ‘calendar-widget-area’,
    ‘description’ => __( ‘Calendar Sidebar’, ‘skeleton’ ),
    ‘before_widget’ => ”,
    ‘after_widget’ => ”,
    ‘before_title’ => ”,
    ‘after_title’ => ”,
    ) );

    From there, I can style as I please.

    Anyone have ideas about how to customize the tooltip so that I can display the time in there?

    #26086
    Leah
    Member

    Hey Kelly,

    I’m sorry this post got lost in the shuffle and no one got back to you. I’m glad you figured out some of the issues. Do you still need help with #2?

    Thanks,
    Leah

    #26087
    Kelly
    Participant

    Hi Leah. I got it figured out! Thanks for responding 🙂

    #26093
    Leah
    Member

    Glad to hear it! I’ll close out this thread.

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘A few customization questions’ is closed to new replies.