Brian

Forum Replies Created

Viewing 15 posts - 7,576 through 7,590 (of 11,256 total)
  • Author
    Posts
  • in reply to: Possible to Sell Tickets for City Tours? #947199
    Brian
    Member

    Hi,

    Thanks for the interest in WooCommerce Tickets.

    Tickets are created per event and we do not support recurring events. So you would have to manually create tickets and events for each time slot and tour type.

    So it is possible, but would take a lot of manual work on your end to manage.

    Let me know if you have any follow up questions.

    Thanks

    in reply to: Showing day and month outside of list-widget #947192
    Brian
    Member

    The Event List Widget is showing today’s date?

    If so looks like a theme conflict, can you please follow our testing for conflicts guide:

    Testing Conflicts With Themes and Other Plugins

    And see if that resolves the issue.

    Thanks

    in reply to: Multi year license #947191
    Brian
    Member

    Hi,

    We just have the single year license.

    Thanks

    in reply to: Send reminders #947190
    Brian
    Member

    Hi,

    Thanks for using WooCommerce Tickets. We do not have a feature to send reminders. It maybe possible to add to the plugin, but it is beyond the support we can provide on the forum to provide that coding (nor do we have that coding).

    If you would like to request that feature please head to our UserVoice Page and add your own or upvote that feature as they will increase the chances of it being added to a future version.

    http://tribe.uservoice.com/forums/195723-feature-ideas

    in reply to: Disappearing Discount…? #947188
    Brian
    Member

    Unfortunately, you caught us right when we removed the discount so the system kicked it out.

    You will not see the reduced price again so it is not a bait and switch the price is now $89.00.

    I apologize for the confusion.

    Thanks

    in reply to: Monetize The Events Calendar #947186
    Brian
    Member

    Hi,

    Thanks for the interest in the Events Calendar.

    I have answered your questions below:

    Can we easily place our leaderboard, sidebox and other ads being served by our Double Click for Publishers program?

    We have a themer’s guide that shows you how you can edit any event template so you should be able to add your coding anywhere you would like:

    https://theeventscalendar.com/knowledgebase/themers-guide/

    Can we sell featured listings?

    We do not have a feature to do this and do not have featured events.

    Can we feed results to the homepage of the site it is install on for example layoga.com?

    There is an RSS feed you can use, but beyond that we do not have support for a direct feed.

    Can we feed results from a separate install of The Events Calendar to another WordPress website?

    Same as the above answer.

    Let me know if you have any follow up questions.

    Thanks

    in reply to: Question About WPML + TEC PRO Solution fom Other Thread #947184
    Brian
    Member

    Hi,

    WPML and TEC do have conflicts together and it is unclear on exactly what those conflicts are. It is true it has been on the roadmap for awhile, but we are finally moving forward on making them compatible with each other, but I do not have a timeline for when that might happen.

    I will leave this thread open for now, but there is not much we can help out with right now.

    Thanks

    Brian
    Member

    Hi,

    Sorry for the issues. Where are you getting the Events Calendar zip file from? It could be corrupted somehow.

    Does getting a new copy solve the issue? Or can you install by searching for the Events Calendar in the Add New Plugins screen in the admin of your site?

    Also, please make sure there is not installed copy of The Events Calendar in your plugin directory.

    Let me know if you can get that to work.

    Thanks

    in reply to: Showing day and month outside of list-widget #947182
    Brian
    Member

    I reduced the coding down to this and got it to work:

    $startDate = strtotime( $post->EventStartDate );
    $endDate = strtotime( $post->EventEndDate );
    $today = time();
    /* If the event starts way in the past or ends way in the future, let's show today's date */
    if ( $today > $startDate && $today < $endDate )
    $postDate = $today; else
    $postDate = $startDate;

    ?>
    <div class="icon-date">
    <h3><?php echo date_i18n( 'M', $postDate ) ?></h3>
    <h4><?php echo date_i18n( 'd', $postDate ) ?></h4>
    </div>

    You have to remove the filter for it to display.

    Also you will have to grab the css or use your own to style how you would like.

    That should get you started on your customization so you can take it from here.

    Thanks

    in reply to: Calendar has disappeared #947181
    Brian
    Member

    Hi,

    Sorry for the issues you are having. I can help troubleshoot this with you.

    Not sure what happened to the site, could have been a setting change or a new conflict could have been created.

    To help narrow down the issue can you please follow our testing for conflicts guide:

    Testing Conflicts With Themes and Other Plugins

    Let me know if that helps find the issue and we can go from there.

    Thanks

    in reply to: Fatal Error Message #947103
    Brian
    Member

    Hi,

    Thanks for purchasing our plugin.

    I can help troubleshoot this with you.

    get_the_permalink() was added to WordPress in 3.9, which is also the minimum requirement for the Events Calendar.

    Are you able to update to WordPress 4.1.1 to fix the issue?

    Let me know and we can go from here.

    Thanks

    in reply to: Showing day and month outside of list-widget #947099
    Brian
    Member

    Ok thanks for that.

    Have you included this above that coding:

    $startDate = strtotime( $post->EventStartDate );
    $endDate = strtotime( $post->EventEndDate );
    $today = time();

    /* If the event starts way in the past or ends way in the future, let's show today's date */
    if ( $today > $startDate && $today < $endDate ) {
    $postDate = $today;
    } else {
    $postDate = $startDate;
    }

    If you add that does it work then?

    Let me know.

    Thanks

    in reply to: Calendar appearing in Header #947098
    Brian
    Member

    Grad glad you got one thing down.

    You can add content to the default template. That will put it on all the event views and single events.

    You can dig deeper from the default template to target individual event views (month, list, photo, etc) or the single template.

    Also, in the settings there is a field to add content above and below the event content on all the event pages.

    Let me know if that helps.

    Thanks

    in reply to: Past events displaying… #947097
    Brian
    Member

    Sorry I still seem to be missing something.

    I visited this page:

    http://maastricht-students.com/events/list/

    And did not see past events there, what page are you referring to?

    in reply to: Conditional tag for ANYTHING related to plugin? #947046
    Brian
    Member

    Hi,

    The tribe_is_event_query() still exists it is now found here:

    https://theeventscalendar.com/function/tribe_is_event_query/

    Here is two other lists of conditionals I have used before as well:

    https://gist.github.com/jo-snips/2415009

    http://pastebin.com/c4yujaZC

    Let me know if you have any follow up questions.

    Thanks

Viewing 15 posts - 7,576 through 7,590 (of 11,256 total)