Barry

Forum Replies Created

Viewing 15 posts - 7,426 through 7,440 (of 17,936 total)
  • Author
    Posts
  • in reply to: shared calendar #238027
    Barry
    Member

    Definitely – one other thing to note is we’re always on the look out for new feature requests, so do feel free to post this/look and see if there is a suitable existing issue you can upvote 🙂

    I’ll go ahead and close this thread – but if we can help with anything else please don’t hesitate to create new threads as needed.

    in reply to: Date range #238019
    Barry
    Member

    Great – and thank you for sharing the final solution 🙂

    I’ll go ahead and close this thread, but if you have any further questions please do feel free to post new threads as needed. Thanks!

    Barry
    Member

    Yes that makes sense – sorry I didn’t pick up on that 🙂

    That would however be a more advanced customization and one we’d really need to leave to you to figure out (if it’s necessary). If you are interested in investigating this in more depth, please review the following sections of code to see how it pieces together:

    • resources/tribe-events.js (approx lines 1037-1052 and tribe_ev.data.date_formats in particular)
    • resources/tribe-events-ajax-calendar.js (approx lines 38-58 where you can see the month-style format being selected)

    Beyond that, we always welcome new feature requests if you’d like to post one along the lines of making this a configurable option.

    Thanks!

    Barry
    Member

    Thanks – that helps!

    It looks to me like a theme-specific problem and that, perhaps, it is rendering the title before the start of the loop. I don’t want to jump to conclusions though as you did mention this also happened with a default theme. Can you confirm this was the case and let me know which default theme you switched to?

    As it looks like the site is still in development and behind a maintenance mode page, can you demonstrate this by temporarily changing themes so I can take a look and see how it shapes up under those conditions (ie, no other plugins – except ours and WooCommerce, if you like, plus a default, unmodified theme)?

    Thanks!

    in reply to: iCal single event import file creates new calendar #237939
    Barry
    Member

    Glad it’s all sorted 🙂

    in reply to: issue with child theme in Calendar-Pro #237933
    Barry
    Member

    …just to add, a great place for any custom rules like these is a tribe-events.css stylesheet – please see our Themer’s Guide for details on setting this up 🙂

    in reply to: issue with child theme in Calendar-Pro #237928
    Barry
    Member

    I think there are many child theme users using WordPress’ default themes (2014, 2013, 2012, 2011) and I would want my plugin’s content displaying properly when using default themes using an empty child theme.

    That doesn’t sound unreasonable and I’ve logged an issue so we can investigate doing just that 🙂

    I’m not exactly sure what you mean when you say “port across using an appropriate class” .Do you mean copy those particular style sheets into my child-theme? Relatively new with CSS so I need a bit of clarification on the procedure.

    Copying them verbatim won’t help here – you’ll need to adjust them to work with your child theme. One way to do this is find all stylesheet rules targeting tribe-theme-twentyfourteen and replace that part of the selector with tribe-theme-parent-twentyfourteen. To take an example:

    .tribe-theme-twentyfourteen.events-archive .entry-content {
    	width:90%;
    }

    You would copy the above rule across to one of your own stylesheets but adjust it to look like:

    .tribe-theme-parent-twentyfourteen.events-archive .entry-content {
    	width:90%;
    }

    Or, if you look at the body classes, you will see that there is a specific class for your child theme. The exact name of this class will vary but based on your screenshots a good guess is:

    .tribe-theme-twentyfourteen-child.events-archive .entry-content {
    	width:90%;
    }

    Does that help?

    Barry
    Member

    I’m glad you’ve got an interim solution 🙂

    If you want to look at the other issues we definitely can – but the best starting point is to run through the troubleshooting steps I outlined in order to isolate which issues might be triggered by a conflict with your theme/another plugin and go from there.

    We’re here to help if we can 🙂

    in reply to: Overlapping events on daily view? #237865
    Barry
    Member

    Please note this thread will no longer be monitored by staff: if you need help with anything else, please do create a new thread!

    in reply to: Page not found #236467
    Barry
    Member

    Hi: I visited your main events page and followed a link to an event on June 21st, which seemed to work as expected.

    Can you confirm if you resolved this or if there are any specific steps I need to follow to see the problem?

    in reply to: All events disappeared #236459
    Barry
    Member

    Hi – sorry you’re experiencing problems.

    When you say nothing appears on the events pages that sounds like you are talking about the frontend of the site (ie, what the public see) – yet that seems to be working when I visit your site.

    Can you confirm if this is actually a problem in the admin environment (and have you tried clearing any filters that may have inadvertently been set via the Filters & Columns box that appears above the list of events if so)?

     

    Barry
    Member

    Hi – sorry to hear you’re experiencing problems.

    There is a known issue right now with our countdown widget (and so if it looks like everything “stops” on the widget screen after that widget begins, that is quite likely the cause of this). You can workaround it by following the steps described here.

    Does that help in the interim? We are of course aiming to fix this as quickly as possible.

     

    in reply to: Orderby question, with a twist… #236443
    Barry
    Member

    Hi!

    Great question. I do want to note first of all, though, that we are fairly limited in terms of helping out with custom development questions like this one. That said, we’d love to point you in the right direction if we can.

    Yes, it’s completely possible to order dates chronologically – it is in fact what we do on our upcoming events view (and we do the reverse in our past events view).

    Would it be viable for you to simply obtain a list of upcoming events, running earliest to latest, with a short snippet like this one – and then use the results to populate your template?

    	$args = array( 'eventDisplay' => 'upcoming' );
    	$events = tribe_get_events( $args );
    in reply to: Multi Tiered event ticketing #236421
    Barry
    Member

    Hi – great question!

    That’s certainly possible but you would probably need to make a few tweaks/customizations to fully realize this idea.

    Certainly you could set up tickets for a number of different events (each at $10) and they would stack up in the shopping cart accordingly: you could independently create venue products through WooCommerce to handle the venue price aspect.

    Does that answer your question?

    Barry
    Member

    Would this help?

    add_filter( 'tribe_bar_datepicker_caption', 'change_date_filter_text' );
    
    function change_date_filter_text( $caption ) {
    	if ( ! tribe_is_photo() ) return $caption;
    	return 'Events in';
    }

    You could add this to your theme’s functions.php file, for example.

Viewing 15 posts - 7,426 through 7,440 (of 17,936 total)