Forum Replies Created
-
AuthorPosts
-
Brian
MemberThis reply is private.
March 26, 2015 at 7:30 am in reply to: Error 500 internal admin facebook import page goes down before loading #951112Brian
MemberOk 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
Brian
MemberAwesome!
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!
Brian
MemberHi,
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
Brian
MemberHi 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:
And we can take care of it. Thanks
Brian
MemberHi,
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
March 25, 2015 at 5:05 pm in reply to: PHP Code to include mini calendar in custom theme side bar? #950969Brian
MemberHi,
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
Brian
MemberHi 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
Brian
MemberThe 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
Brian
MemberGreat, 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!
Brian
MemberGreat, 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!
Brian
MemberHi 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
Brian
MemberHi,
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
Brian
MemberHi,
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
Brian
MemberHi,
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
-
AuthorPosts
