Barry

Forum Replies Created

Viewing 15 posts - 12,826 through 12,840 (of 17,936 total)
  • Author
    Posts
  • in reply to: Mini Calendar: Clicking event nothing happens #65333
    Barry
    Member

    No problem at all – thanks for your support 🙂

    in reply to: Updating Recurring Events #65332
    Barry
    Member

    Hi Zengirl,

    This is a known bug – please accept our apologies for the inconvenience. It should be fixed in the next release, in the meantime we have made a fix available (you can often find items like this in our Useful Code Snippets list over on the right):

    https://theeventscalendar.com/recurring-events-dialog-fix/

    I hope that helps 🙂

    in reply to: Main Events Page with Sidebar #65330
    Barry
    Member

    Hi Derek – the forum doesn’t handle code very nicely at all, unfortunately, so it’s best to share code using a service like Pastebin, Gist or similar.

    Please note that within your theme’s tribe-events directory there is no need for a further views directory – does that help to clarify things?

    in reply to: Mini Calendar: Clicking event nothing happens #65328
    Barry
    Member

    I do understand what you mean, but really this would have to be a customization that you’d need to make by yourself (at least if you need a solution right now) … we’d definitely be open to any feature requests you might make here though – and you might be able to find an existing request you can add your voice to:

    tribe.uservoice.com

    Thanks!

    in reply to: Change month spelling on events calendar widget #65316
    Barry
    Member

    Excellent, glad it works for you 🙂

    in reply to: Event import via third-party plugin: WP All Import #65315
    Barry
    Member

    Hi Dean,

    Yeah I’m afraid we can only offer very limited support for third party plugins such as the one I think you’re referring to.

    What I can say is that it’s quite possible to use the “official” WP import/export tools to push and pull event data out of WordPress installations and that uses XML as the intermediary format. So, it’s definitely possible to do this, if only by studying the XML import/export format used by WordPress’s own importer/exporter and cooking something up that way.

    I’m afraid there’s little else we can offer at this time.

    in reply to: Main Events Page with Sidebar #65312
    Barry
    Member

    Yep – I made an error first time and had to correct it, sorry for the inconvenience!

    in reply to: Events displaying on website, but not in Admin Panel #65308
    Barry
    Member

    Much appreciated, thank you!

    in reply to: Main Events Page with Sidebar #65306
    Barry
    Member

    Hi Derek,

    Here’s an example of a customized default-template.php that would add a sidebar in the context of the default Twenty Twelve theme. That should give you a starting point, of course there are likely to be differences with your own theme (unless it is indeed Twenty Twelve or closely based on it).

    Thanks!

    Barry
    Member

    Hi uxicorp,

    That’s an interesting question and would make a valid feature request if you’re game to make one:

    tribe.uservoice.com

    I believe there are some examples of making post categories available to events here on the forum – however I’m not sure that will be the complete answer in your case as there can be other side effects to this (the category archive may not result in any matching event post types being returned, for example).

    So, at this point, this really isn’t something we can help with directly – but do make a feature request and we’ll certainly consider it 🙂

    in reply to: Help Needed in rearranging view of events #65302
    Barry
    Member

    Hi Nitin,

    We try to stick to one-issue-per-thread so please create a new thread for that 2nd issue and we’ll help with the 1st issue as best we can here 🙂

    How to move Details and Organizer block up and just after the image in this url

    So you’ll need to familiarize yourself with our Themer’s Guide and the template override process first of all – as part of the answer here is going to involve customizing the single-event.php template.

    The following line:

    <?php echo tribe_event_featured_image(); ?>

    Displays the featured image. Further down you can find the code that outputs the “meta” data:

    <?php echo tribe_events_single_event_meta() ?>

    You could basically relocate this line so it appears above the featured image call – do note however that this will also relocate the venue data. Separating these out is more involved and I’m afraid beyond the scope of what we can help with.

    I hope that at least gets you started, though 🙂

    Thanks!

    in reply to: Changing page title #65299
    Barry
    Member

    Hi schanzer,

    Could you try adding a snippet like this one to your theme’s functions.php file?

    add_filter('tribe_events_title', 'change_events_to_runs');
    function change_events_to_runs($title) { return str_replace('Events', 'Runs', $title); }

    It’s a pretty basic approach but might work for you 🙂

    in reply to: Events displaying on website, but not in Admin Panel #65297
    Barry
    Member

    Hi gracebiblechurch,

    Sorry for the delay first of all: one of the team had a chance to review this, but unfortunately – because that data comes from a multisite installation and is in CSV format – it’s not possible to easily distinguish between tables and figure out which table belongs to which site.

    Are you able to provide the same data but in SQL format?

    Thanks!

    in reply to: Extending Venues #65296
    Barry
    Member

    Hi Stephen,

    Thanks for your patience.

    I’m afraid it’s rather outside the scope of offered support to guide you through this one – to create and maintain a set of customizations like this you’re really going to need solid WP development skills/spend time digging through the Codex (or work with someone who can offer that sort of capability).

    Sorry we can’t do more here.

    in reply to: where do I put new page.php file? #65294
    Barry
    Member

    Hi elewis,

    Copying an existing theme template and simply renaming it probably isn’t going to achieve the best result here and that’s not quite what I meant, though it might form a starting point. Did you manage to keep any of the original code, particularly these lines?


    <?php tribe_events_before_html(); ?>
    <?php tribe_get_view(); ?>
    <?php tribe_events_after_html(); ?>

    Ideally they would replace “the loop” from your copy of full-width.php. Hope that helps – but if not maybe you could try the first strategy I outlined instead?

Viewing 15 posts - 12,826 through 12,840 (of 17,936 total)