Jonah

Forum Replies Created

Viewing 15 posts - 3,796 through 3,810 (of 4,001 total)
  • Author
    Posts
  • in reply to: Disable / hide fields on add event form #13341
    Jonah
    Participant

    Hey Dale-Anthony,

    There’s no way with the plugin to do any of this but you could certainly hide fields with CSS (you’ll have to figure out how to add custom CSS to the WP admin) and to set default values for County and City you should be able to do this via jQuery somehow along with checking the Show Google Map option.

    Good luck!

    in reply to: Enable post categories to be used by events #13335
    Jonah
    Participant

    Hi Nicholas, yeah I was a little worried it might affect things that way. That function you found should work fine and if you wanted to use it for both categories and tags you just call it twice like so:


    register_taxonomy_for_object_type('category', 'tribe_events');
    register_taxonomy_for_object_type('post_tag', 'tribe_events');

    Sounds like you already figured it out though?

    in reply to: How do you make a custom rss feed for upcoming events? #13315
    Jonah
    Participant

    Awesome, glad to hear!

    in reply to: How to exclude categories from the advanced list widget? #13296
    Jonah
    Participant

    No, it looks like you’ve got a custom function in the above code ‘pa_in_taxonomy()’ – where is this from and what does it do?

    in reply to: Calendar View Not Showing #13291
    Jonah
    Participant

    That was a shot in the dark. I wonder if it’s a theme/plugin conflict. Have you tried disabling all other plugins? Have you tried switching to Twenty Eleven? I know it’s not a solution but it will at least help us narrow this down… And what about turning debugging in WordPress on? Any errors specifically related to the plugin?

    in reply to: Calendar View Not Showing #13288
    Jonah
    Participant

    Hey Scott, have you tried switching the Events Template in Settings > The Events Calendar to “Default Page Template”? This might help…

    in reply to: How to exclude categories from the advanced list widget? #13286
    Jonah
    Participant

    Hi Greg, can you please also post the pa_in_taxonomy() function so I can see what you’ve got for that?

    in reply to: Enable post categories to be used by events #13285
    Jonah
    Participant

    Hi Nicholas, you should be able to use the following code added to your functions.php file:


    function run_init() {
    register_post_type( 'tribe_events', array(
    'taxonomies' => array('category', 'post_tag') // this is IMPORTANT
    ));
    }
    add_action('init','run_init');

    in reply to: Templating Problems yet again #13283
    Jonah
    Participant

    Weird, it’s working for me using the Genesis theme. I simply copied in your code into my list.php template file. echoing $post->ID doesn’t work and I’m not sure why not but echoing get_the_ID() works… Let me get someone else to take a quick look at this.

    in reply to: All Day Event Problems #13279
    Jonah
    Participant

    Hi Jason, you should be able to just use: tribe_get_all_day() which will return true if the event is an all day event. I will update the FAQ accordingly. Thanks for pointing this out.

    in reply to: Templating Problems yet again #13278
    Jonah
    Participant

    Hey Jason, try using get_the_ID() instead. I don’t think you can echo functions that return data.

    in reply to: Customize display of events list widget #13277
    Jonah
    Participant

    Hey Dan, yep you got it, just get todays date stored in a variable and use that. It should work.

    in reply to: Manual Query of Events #13247
    Jonah
    Participant

    Sounds good Chris, let us know if you need any other help with this.

    in reply to: Custom coding help needed #13217
    Jonah
    Participant

    Hey Tony, in order to customize the widget like you want to you’ll have to follow our tutorial on customizing widgets: https://theeventscalendar.com/how-to-completely-customize-widgets/

    To change the page titles try adding this code to your fucntions.php file: http://pastebin.com/3fyLV1g2

    in reply to: Custom coding help needed #13213
    Jonah
    Participant

    That’s not a widget, when you go to Appearance >Widgets, what is the name of the name of the widget in question?

Viewing 15 posts - 3,796 through 3,810 (of 4,001 total)