Forum Replies Created
-
AuthorPosts
-
Zach Tirrell
KeymasterVictoria,
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!
Zach Tirrell
KeymasterIt 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!
Zach Tirrell
KeymasterIt 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!
Zach Tirrell
KeymasterIt 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
KeymasterIt 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!
Zach Tirrell
KeymasterIt 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!
April 16, 2015 at 10:40 am in reply to: remove the end time from an event under the DETAILS section #956095Zach Tirrell
KeymasterIt 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!
April 3, 2015 at 1:05 pm in reply to: remove the end time from an event under the DETAILS section #953142Zach Tirrell
KeymasterThat 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.
April 3, 2015 at 7:03 am in reply to: remove the end time from an event under the DETAILS section #953017Zach Tirrell
KeymasterHi 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!
April 2, 2015 at 10:26 am in reply to: Google Map is not displayed on detailed event page in my child theme #952852Zach Tirrell
KeymasterGreat, 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.
Zach Tirrell
KeymasterHi 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.
April 2, 2015 at 6:31 am in reply to: Google Map is not displayed on detailed event page in my child theme #952747Zach Tirrell
KeymasterThis reply is private.
April 1, 2015 at 10:45 am in reply to: Google Map is not displayed on detailed event page in my child theme #952594Zach Tirrell
KeymasterThis reply is private.
April 1, 2015 at 10:41 am in reply to: Google Map is not displayed on detailed event page in my child theme #952593Zach Tirrell
KeymasterYou can just click “private reply”.
Zach Tirrell
KeymasterHi 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?
-
AuthorPosts
