Jonah

Forum Replies Created

Viewing 15 posts - 2,506 through 2,520 (of 4,001 total)
  • Author
    Posts
  • Jonah
    Participant

    Hi Richard,

    Just to make sure I have all the code to be able to test this can you please post your code to pastie.org or pastebin.com

    Thanks,
    Jonah

    in reply to: Templates Inside of Templates #21749
    Jonah
    Participant

    Hi Carter,

    I don’t know if this will make a huge impact but I just tested our plugin in Thesis 1.8.3 and it works fine. There’s no template inside of another template. What sort of customizations do you have in place and have you tried deactivating all other plugins and/or switching to the base Thesis theme to see if it’s something with your particular customizations within your copy of Thesis? I would start there.

    Cheers,
    Jonah

    in reply to: Single day view grabs wrong date from multi-day event #21748
    Jonah
    Participant

    Hi Dan,

    What you’ll need to do is override the titles being spit out in the page template and in the header in your theme. Then, conditionally set the titles with something like this: https://gist.github.com/aad337b8f0662d4df1b6 – you’ll of course need to modify this to use markup specific to your theme but that’s basically what you’ll need to do.

    I hope that helps!

    – Jonah

    in reply to: Duplicate header and footer on event list view #21747
    Jonah
    Participant

    Hi Ego Web Solutions,

    I have no idea of knowing what could be wrong without knowing more about what you did and what files you put in the ‘events’ folder. Can you provide some more details about your customizations?

    Thanks,
    Jonah

    in reply to: Calendar Sizing on Page (WordPress) #21746
    Jonah
    Participant

    Hi Jessica,

    This is mainly a theming/styling issue that you’ll need to play around with in your website theme but here is something to at least get you started. Add the following to your themes style.css file at the end:

    #tribe-events-content .tribe-events-calendar td .tribe-events-event {
    width: 66px;
    }

    This will set the width of events within the calendar. Aside from that you’ll have to play around with the styling more to get things the way you want.

    Good luck!

    – Jonah

    in reply to: Editing the Advanced List Widget #21745
    Jonah
    Participant

    Hi Carl,

    Yep, just make a copy of /wp-content/plugins/events-calendar-pro/views/events-advanced-list-load-widget-display.php and place in an ‘events’ folder in your theme and the edit and change around the PHP however you want to re-arrange, add or remove things.

    I hope that helps!

    – Jonah

    in reply to: Menus disappear on the event page #21743
    Jonah
    Participant

    Have you tried setting your Permalinks to Postname in Settings > Permalinks?

    in reply to: Menus disappear on the event page #21742
    Jonah
    Participant

    Hi Ramtin,

    Do you have a URL you can share so we can take a look?

    Thanks,
    Jonah

    in reply to: Unwanted gray boxes appear when plugin is activated #21738
    Jonah
    Participant

    Hi Mark,

    No update other than it will be done in a future version. For now you’ll need to use the temporary fix I provided. Did that work?

    – Jonah

    in reply to: Reccuring events bug #21710
    Jonah
    Participant

    Hi Julien,

    You didn’t answer my question. Have you tried deactivating all other plugins and/or switching to the Twenty Eleven theme to see if there’s a conflict in place creating this issue?

    – Jonah

    in reply to: Make mini calendar widget dates clickable #21709
    Jonah
    Participant

    Hi Tony,

    Well I don’t know what the problem could be and unfortunately we don’t have the bandwidth to be able to help with figuring out customization issues like this. If you need this feature you’ll need to either figure it out on your own or hire someone to help you. Good luck!

    – Jonah

    Jonah
    Participant

    Hi Christian,

    This should get you on your way:

    function remove_styles() {
    if( tribe_is_month() && !is_tax() ) { // The Main Calendar Page
    //wp_dequeue_style( 'tribe_events-admin-ui' );
    wp_dequeue_style( 'tribe-events-mini-calendar' );
    wp_dequeue_style( 'tribe-events-calendar-style' );
    }
    }
    add_action('wp_print_styles','remove_styles',1);

    function remove_scripts() {
    if( tribe_is_month() && !is_tax() ) { // The Main Calendar Page
    wp_dequeue_script( 'tribe-events-calendar-script' );
    wp_dequeue_script( 'tribe-events-pjax' );
    wp_dequeue_script( 'tribe-events-mini-calendar' );
    wp_dequeue_script( 'jquery-ecp-plugins' );
    wp_dequeue_script( 'chosen-jquery' );
    wp_dequeue_script( 'tribe_events-admin' );
    }
    }
    add_action('wp_print_scripts','remove_scripts',1);

    Put that in your theme’s functions.php file and add/remove whatever you want/don’t want. You can also use these conditional wrappers to further customize this: https://gist.github.com/2415009

    I hope that helps!

    – Jonah

    Jonah
    Participant

    Hi Sandro,

    I’m not sure if I understand your new issue with the grid view on your home? page. Can you please provide some more detail on this?

    Thanks,
    Jonah

    in reply to: Remove Sidebar on Community Events #21705
    Jonah
    Participant

    Hi Tony,

    The Community Events plugin uses your theme’s page.php template so you’ll want to edit that and use the following conditional code to detect when you are on one of the community pages and show/hide whatever sidebar you want that way:

    if(tribe_is_community_my_events_page()) {
    echo 'this is the my events page!';
    }

    if(tribe_is_community_edit_event_page()) {
    echo 'this is the submit/edit events page!';
    }

    I hope that helps!

    – Jonah

    in reply to: Make mini calendar widget dates clickable #21703
    Jonah
    Participant

    Hi Tony,

    You mean table-mini.php right? Yep, line 127 in that file as long as you didn’t have previous changes because then the line number would be different. Reference the core file in /wp-content/plugins/the-events-calendar/views/table-mini.php to find the right line number.

    – Jonah

Viewing 15 posts - 2,506 through 2,520 (of 4,001 total)