Jonah

Forum Replies Created

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

    Hey Cooper,

    Are you talking about this widget: http://cl.ly/392W1M3n0l1L421N0x1q – looks pretty styled to me…

    – Jonah

    in reply to: calendar widget tooltip overflow problem #21427
    Jonah
    Participant

    Hi Tony,

    I think this is more of a theming issue. Can you provide a link for your site so I can see it in action and play around with the CSS for a solution?

    Thanks,
    Jonah

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

    Hey Tony,

    Try this instead: https://gist.github.com/2293961

    – Jonah

    in reply to: Remove Events from the wordpress menu #21425
    Jonah
    Participant

    Hi all, you can add the above code to your functions.php but you likely won’t need the opening PHP tags because PHP will probably already be open but this is something you’ve got to figure out on your own because it’s going to be different in every functions.php file. Basically if PHP is open you don’t need to open it again. If it’s closed from a previous block of code, you’ll need to re-open it. Here is a good intro to PHP everyone should ready before dabbling: http://www.w3schools.com/php/php_syntax.asp

    I hope that helps!

    – Jonah

    in reply to: Add calendar widget in different area #21424
    Jonah
    Participant

    Hi Clara,

    You can add widgets anywhere where you have widget area’s defined, i.e. all the widget/sidebar areas that show in Appearance > Widgets. If you need additional ones that it outside the support we can provide here. Good luck!

    – Jonah

    Jonah
    Participant

    Hi Vincent,

    Adding this code: https://gist.github.com/2763669 – should fix the issue for you.


    @Jamie
    – have you added the above code to your theme’s functions.php file?

    in reply to: Date column in Events screen #21421
    Jonah
    Participant

    Hi Paul,

    Try adding this to your theme’s functions.php file:

    add_filter( 'manage_edit-tribe_events_columns', 'my_columns_filter', 10, 1 );
    function my_columns_filter( $columns ) {
    $column_date = array( 'date' => 'Date' );
    $columns = array_slice( $columns, 0, 2, true ) + $column_date + array_slice( $columns, 2, NULL, true );
    return $columns;
    }

    That should do it!

    – Jonah

    in reply to: Events Calendar and Gravity Forms Unite #21420
    Jonah
    Participant

    Hi Kyle,

    That sounds possible but complicated and unfortunately we cannot help out with such customizations. You’ll either need to figure it out or hire a developer. Good luck!

    – Jonah

    in reply to: Event Calender Pro Widget #21419
    Jonah
    Participant

    Hi Alex,

    For some reason you are missing a stylesheet that should be included in the plugin. Are you running 2.0.7 for both of our plugins? Make sure you update both if not.

    If you’ve made any customizations, either core or by placing files in an ‘events’ folder in your theme, you’ll want to ensure that those templates are using the latest code by comparing with the base versions of those files. I.e. if you edited /wp-content/plugins/the-events-calendar/views/table-mini.php by placing a copy in an ‘events’ folder, you’ll need to compare your modified version with the updated version in the latest copy of the plugin.

    I hope that helps!

    – Jonah

    Jonah
    Participant

    Hi Jonathan,

    It might not be ideal but conventions vary in PHP and if it works for you then that’s the main thing that matters.

    Let me know if you need anything else with this.

    Cheers,
    Jonah

    in reply to: Calendar Buttons Hanging Out in the Wrong Space #21417
    Jonah
    Participant

    Hi Ken,

    Looks like its ok in Firefox now. Can you please confirm whether or not this is resolved?

    Thanks,
    Jonah

    in reply to: Not showing "Updated" on the Event once created #21416
    Jonah
    Participant

    Hi Lydia,

    Ok gotcha, so what you’ll want to edit instead is /wp-content/plugins/the-events-calendar/views/full-address.php by making a copy and placing in the ‘events’ folder in your theme. Then, just remove whatever chunks you don’t want. If you remove something and get an error, just go back to the file, undo and try again 🙂

    I hope that helps,
    Jonah

    in reply to: Double Booking #21415
    Jonah
    Participant

    Hi Kyle,

    Unfortunately not. How would you envision this working?

    – Jonah

    Jonah
    Participant

    Hi Cooper, got a link we can check things out at? You might want to try re-installing both of our plugins to be sure all the files got copied over.

    – Jonah

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

    Hi Mark,

    Try adding this to your theme’s functions.php file:

    function remove_styles() {
    if(!is_admin()) {
    wp_dequeue_style( 'tribe_events-admin-ui' );
    }
    }
    add_action('wp_print_styles','remove_styles',1);

Viewing 15 posts - 2,551 through 2,565 (of 4,001 total)