Zach Tirrell

Forum Replies Created

Viewing 15 posts - 151 through 165 (of 175 total)
  • Author
    Posts
  • in reply to: Event search features #956898
    Zach Tirrell
    Keymaster

    Victoria,

    Nice to hear from you! You can do a radius search in map view using The Events Calendar Pro plugin. You can see a demo of this here: http://wpshindig.com/events/map/. You can set the search distance in the settings page, the default is 25 miles. However, this is a site wide setting and not controllable by the visitor.

    Let me know if there is anything else I could help you with.

    Cindy – would you mind creating a separate issue so we can be sure to get your questions addresses as well? Thanks!

    in reply to: Static Events not showing but Recurring Events are #956102
    Zach Tirrell
    Keymaster

    It has been a while since the last time that I heard back from you so I hope that means everything is working well! 🙂 I am going to go ahead and close this thread, but if you have any further questions, don’t hesitate to open a new one!

    in reply to: ical and multiplied events2 #956101
    Zach Tirrell
    Keymaster

    It has been a while since the last time that I heard back from you so I hope that means you don’t have any other questions 🙂 I am going to go ahead and close this thread, but if you have any further questions, don’t hesitate to open a new one!

    in reply to: Flexibility of the Calendar Event Category filter #956099
    Zach Tirrell
    Keymaster

    It has been a while since the last time that I heard back from you so I hope that means your question was answered! 🙂 I am going to go ahead and close this thread, but if you have any further questions, don’t hesitate to open a new one!

    in reply to: How to: style form fields #956098
    Zach Tirrell
    Keymaster

    It has been a while since the last time that I heard back from you so I hope that means everything is working well! 🙂 I am going to go ahead and close this thread, but if you have any further questions, don’t hesitate to open a new one!

    in reply to: Tickets #956097
    Zach Tirrell
    Keymaster

    It has been a while since the last time that I heard back from you so I hope that means your question was answered! 🙂 I am going to go ahead and close this thread, but if you have any further questions, don’t hesitate to open a new one!

    Zach Tirrell
    Keymaster

    It has been a while since the last time that I heard back from you so I hope that means you got it figured out without me! 🙂 I am going to go ahead and close this thread, but if you have any further questions, don’t hesitate to open a new one!

    Zach Tirrell
    Keymaster

    That CSS should only hide the end time label and the data itself, not the start time. At least that’s what it did on my instance running the Twenty Fifteen theme.

    If you provide me a link to your site I can see if there is a small tweak I can suggest.

    Zach Tirrell
    Keymaster

    Hi James,

    You are correct, you will need a different approach for hiding this end date. I think the easiest way would be with CSS. You can do something along these lines:

    [code language=”css”].tribe-events-meta-group-details dl dt:nth-of-type(2),
    .tribe-events-meta-group-details dl dd:nth-of-type(2) {
    display: none;
    }[/code]

    Let us know if that works for you!

    Zach Tirrell
    Keymaster

    Great, I’m glad it is working! I’ll go ahead and close this ticket, but if you need help on this or something else please post a new ticket.

    in reply to: Tickets #952751
    Zach Tirrell
    Keymaster

    Hi Howard!

    Thanks for the compliment! At this time, the Tickets extension is only available in the Dashboard.

    Enabling ticket sales through Community Events is something we are actively considering. If you would be interested in this, I would encourage you to vote for it in our feature ideas. Here is the request you can add your support to: http://tribe.uservoice.com/forums/195723-feature-ideas/suggestions/4409106-allow-community-events-users-to-add-tickets-via-fr

    Let me know if you have any follow up questions.

    Zach Tirrell
    Keymaster

    This reply is private.

    Zach Tirrell
    Keymaster

    This reply is private.

    Zach Tirrell
    Keymaster

    You can just click “private reply”.

    in reply to: How to: style form fields #952510
    Zach Tirrell
    Keymaster

    Hi Tim,

    Currently there is no way to make two custom field appear on the same line. Since these fields are displayed in a table, a CSS solution is a bit tricky.

    However, you can accomplish this with relative ease using javascript/jQuery. I put together a quick example snippet to help get you started:

    [code language=”javascript”]
    // find the distance field, adjust for your site, assuming here that it is field #2
    $distance = jQuery( ‘input[name="_ecp_custom_2"]’ );
    // find the units drop down, adjust for your site, assuming here that it is field #3
    $unit_drop_down = jQuery( ‘select[name="_ecp_custom_3"]’ );
    // hide the row the unit drop down is in
    $unit_drop_down.closest( ‘tr’ ).hide();
    // move the unit drop down to the same cell as the distance field
    $unit_drop_down.appendTo( $distance.closest(‘td’) );
    // make the distance field narrower so the unit drop down will fit (this could be done in CSS)
    $distance.css( ‘width’, ’10em’ );
    [/code]

    You would want to add this snippet wherever your theme has other jQuery executing.

    Does this help?

Viewing 15 posts - 151 through 165 (of 175 total)