Jonah

Forum Replies Created

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

    Sounds good Naomi!

    Jonah
    Participant

    Hi Naomi,

    Thanks for your post. First off, I just want to say that you may be running into issues by running the two plugins side by side and the first thing you should try is to deactivate the other plugin to see if this clears things up.

    In this case though you shouldn’t need to do that. To remove the links at the bottom of single events all you need to do is modify the single events template located in /wp-content/plugins/the-events-calendar/views/single.php – make a copy of this file and place in an ‘events’ folder in your theme. Then, open up the file for editing and at the bottom on lines 109 & 111 you’ll see the code for the prev/next links. Just remove those lines, save and they should be gone!

    For the category specific back links you can use something like this: https://gist.github.com/2004548

    You’ll want to again modify single.php where the current back link is.

    I hope that helps but let me know if you need anything else!

    Cheers,
    Jonah

    in reply to: Show all Categories & Subcategories #19158
    Jonah
    Participant

    Hi John,

    There’s no easy way to do this now. You need to tap into the formCategoryDropdown() function but we don’t have a filter for it so you would need to modify the core to change the category selection at all. I’ve just created a ticket to add this functionality in a future version and we’ll likely add this functionality soon as it’s a pretty important function to be able to control what categories are displayed.

    Cheers,
    Jonah

    in reply to: The Events Calendar Log: Initializing Tribe Events #19156
    Jonah
    Participant

    Hey all, closing this out because it is resolved. If any further issues come up that are related, please open a new thread.

    Thanks,
    Jonah

    in reply to: Community Form not displaying all fields #19155
    Jonah
    Participant

    Hi Kyle,

    Maybe a CSS issue or maybe a plugin conflict? Have you tried deactivating all other plugins? Are there any differences in theme CSS between the two sites?

    in reply to: Tickets/Info not hidden for password protected event #19153
    Jonah
    Participant

    Hi Michael,

    I think you can solve this by simply adding a conditional wrapper to check whether or not the event post is password protected. You can do that by editing /wp-content/plugins/the-events-calendar/views/single.php – make a copy of this and place in an ‘events’ folder in your theme. Then wrap all the code in the following:

    Put this at the top of single.php:

    if ( post_password_required() ) {
    $output = get_the_password_form();
    echo $output;
    } else {

    ..and this all the way at the bottom:

    }

    You’ll need to wrap that code in PHP tags so it executes properly too.

    I’m not sure whether or not this should be built in to our templates and will create a ticket for the devs to take a look.

    Let me know whether or not this helps.

    Cheers,
    Jonah

    in reply to: Event categories stylized with Revista Yootheme #19152
    Jonah
    Participant

    Hey Javier,

    There are a few ways you can style specific events categories. When you are on a particular category viewing the calendar you can tap into the .events-category-{your-category-slug} body class (replace your-category-slug with the slug of your category) or for individual events you can also use .cat_{your-category-slug} to specifically target events in certain categories in the calendar itself…

    Does that help?

    in reply to: Css Padding/Margin #19151
    Jonah
    Participant

    Hey Benji, glad that worked! To get the venues in there just add the following:

    .page .page, .post, .post-wrap .tribe_events, .post-wrap .tribe_venue {
    margin: 0;
    padding: 30px;
    }

    Jonah
    Participant

    Hi Max,

    The next couple of months would not be too far fetched. Keep an eye out!

    Cheers,
    Jonah

    in reply to: Calendar no longer showing #19149
    Jonah
    Participant

    Glad to hear you got this worked out Audrey! If there’s anything else you need, just let us know.

    Cheers,
    Jonah

    in reply to: Keywords meta data #19139
    Jonah
    Participant

    Hi Benji,

    I don’t know about other plugins but there is support for the awesome WordPress SEO plugin: http://wordpress.org/extend/plugins/wordpress-seo/

    Have you tried that?

    Jonah
    Participant

    Hi Max,

    This feature is currently not available and would need to be built as an extra. We do have this on our radar for a future version so hopefully sooner than later it will be implemented.

    Let us know if there’s anything else you need help with.

    Cheers,
    Jonah

    in reply to: Css Padding/Margin #19137
    Jonah
    Participant

    Hey Benji,

    In your theme’s style.css on line 681 you have this:

    .page .page, .post {
    margin: 0;
    padding: 30px;
    }

    You need to add a class for events like so:

    .page .page, .post, .post-wrap .tribe_events {
    margin: 0;
    padding: 30px;
    }

    in reply to: Event categories stylized with Revista Yootheme #19130
    Jonah
    Participant

    Hi Javier,

    What exactly are you trying to accomplish? Are you needing to apply specific styling to event categories within your website?

    Cheers,
    Jonah

    Jonah
    Participant

    Hi Michele,

    I cannot guarantee that changing the permalinks will not mess anything because I don’t know all of the particulars about your setup. But in general changing permalinks is a relatively harmless operation and actually provides benefits like SEO due to having more readable URL’s. My suggestion would be to backup your website so you can revert if things go awry.

    Good luck!

Viewing 15 posts - 2,941 through 2,955 (of 4,001 total)