Brian

Forum Replies Created

Viewing 15 posts - 7,216 through 7,230 (of 11,256 total)
  • Author
    Posts
  • in reply to: 404 pages of events that are not reoccuring #951113
    Brian
    Member

    This reply is private.

    Brian
    Member

    Ok glad it is working some what.

    Since this is marked resolved I am going to close this ticket, but if you need anything else related to this topic or another please post a new topic on the forum and we can help you out.

    Thanks

    in reply to: Events List Widget month and date styling #951110
    Brian
    Member

    Awesome!

    I am glad to see you were able to figure it out.

    I am going to go ahead and close this ticket. If you have a similar issue or another in the future, please do not hesitate to create a new ticket.

    Thanks!

    in reply to: Constantly loading 'next month' #951075
    Brian
    Member

    Hi,

    I took a look at your site and see what you mean.

    You mentioned locking down the Admin and I believe that could be the issue.

    For our plugin to work we need access to this file for ajax requests:

    \wp-admin\admin-ajax.php

    Not sure if you can whitelist just that file, but that might fix the issue.

    Using that file is not anything special our plugin does, that is the standard method for using ajax in WordPress.

    Thanks

    in reply to: Refund Request. #951073
    Brian
    Member

    Hi sorry for the issues.

    Unfortunately, sometime with plugins and themes that do a lot to modify how WordPress works it can create issues.

    To request a refund please follow our policy outlined here:

    Refund Policy

    And we can take care of it. Thanks

    in reply to: When Photo view is default List view won't show #950971
    Brian
    Member

    Hi,

    Sorry for the issues you are having.

    I see what you mean on your site.

    I was able to visit the list view by going directly to the url here:

    http://slulink.slu.edu/piuscal/?post_type=tribe_events&eventDisplay=list

    If you change permalinks to something besides default on this page:

    Admin > Settings > Permalinks

    Does that fix the issue?

    Let me know and we can go from here.

    Thanks

    Brian
    Member

    Hi,

    I think I can help out here.

    You should be able to use the WordPress function do_shortcode() on the mini calendar shortcode to get this to work.

    Try adding this where you would like it to display:

    <?php echo do_shortcode( '[tribe_mini_calendar]'); ?>

    You can find more about the shortcode options here:

    https://theeventscalendar.com/knowledgebase/inserting-the-calendar-into-a-page-or-post/

    Let me know if that helps.

    Thanks

    in reply to: Pre-sale question regarding date range filter #950968
    Brian
    Member

    Hi Tom,

    Thanks for the interest in our plugins.

    All our date filters enable you to set a date to start searching we do not have a feature to set an end date to search so ranges are not possible with the current features.

    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

    Thanks

    in reply to: Events List Widget month and date styling #950956
    Brian
    Member

    The Day and Month functions are found in this file:

    events-calendar-pro\views\pro\widgets\modules\single-event.php

    This is the coding you will need:


    $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="list-date">
    <span
    class="list-dayname"><?php echo date_i18n( 'D', $postDate ); ?></span>
    <span
    class="list-daynumber"><?php echo date_i18n( 'd', $postDate ); ?></span>
    </div>

    I removed the filters around the date_i18n functions as they are not used in custom coding.

    Does that help?

    Thanks

    in reply to: Direct Link to Filter View, query string? #950942
    Brian
    Member

    Great, glad it helps, I am going to go ahead and close this ticket, but if you need help on this or something else please post a new ticket.

    Thanks!

    in reply to: Widget Not Working Properly #950941
    Brian
    Member

    Great, glad it helps, I am going to go ahead and close this ticket, but if you need help on this or something else please post a new ticket.

    Thanks!

    in reply to: Control date format #950879
    Brian
    Member

    Hi Spencer,

    I can help point you in the right direction on this.

    You are going to have to use php to change the date format.

    The answer to this post lays out how to change the formats:

    http://stackoverflow.com/questions/2487921/convert-date-format-yyyy-mm-dd-dd-mm-yyyy

    This page lists all the different formats for php

    http://php.net/manual/en/function.date.php

    Let me know if you have any follow up questions.

    Thanks

    in reply to: Widget Not Working Properly #950878
    Brian
    Member

    Hi,

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

    I visited your site and see the issue. For some reason some css is hiding the calendar.

    Try this css:

    .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar td {
    display: table-cell;
    }

    Add that css to your theme’s stylesheet or through a plugin such as Simple Custom CSS.

    Let me know if that helps.

    Thanks

    in reply to: Direct Link to Filter View, query string? #950876
    Brian
    Member

    Hi,

    Thanks for using Pro.

    By default in Pro venues have their own link that you can link to.

    If you want to use one of the Calendar Views for the venues, it would require the Filter Bar and coping that link with the query string.

    An example from the demo site would be:

    http://wpshindig.com/events/?tribe_venues%5B%5D=10989

    Let me know if that helps.

    Thanks

    in reply to: Problem with Event Titles in Calendar View. #950875
    Brian
    Member

    Hi,

    Sorry for the issues you are having.

    You are running into a bug in the month view when shortcodes are added to the Events it causes the title to incorrectly change.

    It is a strange issue where those shortcodes overwrite the global $post variable.

    We have a fix in the next release. I do not have a fix for this to give you though.

    I am adding this thread to your bug ticket and we will update it once we have the fix released.

    The next release should be coming out late next month, but that could change.

    Thanks

Viewing 15 posts - 7,216 through 7,230 (of 11,256 total)