Forum Replies Created
-
AuthorPosts
-
July 15, 2015 at 6:29 pm in reply to: View as not working/displayin correctly after switching to https #986864
benjamin1986
ParticipantApologies, id does appear to be a conflict with my custom themes stylsheet files.
Thanks for the pointers, and sorry for the inconvenience!
Ben
July 15, 2015 at 3:13 pm in reply to: View as not working/displayin correctly after switching to https #986799benjamin1986
ParticipantDisabling all plugins and also switching to Twenty Thirteen theme doesn’t resolve the error. (Did however have to keep the ‘wordpress HTTPS’ plugin enabled, otherwise i’d be unable to view the site correctly.
July 15, 2015 at 10:12 am in reply to: View as not working/displayin correctly after switching to https #986676benjamin1986
ParticipantDisabled and cleared cache plugin, apologies – this site doesn’t use cloudflare as previously mentioned. Same issue persists.
July 15, 2015 at 8:31 am in reply to: View as not working/displayin correctly after switching to https #986630benjamin1986
ParticipantThanks for the reply, i’m using WP Super Cache and Cloudflare so i’ll try disabling these and see if it has any impact.
It does work when viewed on non https url though?
January 27, 2015 at 12:06 pm in reply to: Custom events loop, trying to add 'no upcoming events message' #938227benjamin1986
ParticipantWorked out the code pasting thing.
Thanks for the assistance
January 27, 2015 at 12:05 pm in reply to: Custom events loop, trying to add 'no upcoming events message' #938226benjamin1986
ParticipantHi,
Thanks, I managed to figure it out in the end like this:
<?php if ( $loop->have_posts() ) : while ( $loop->have_posts() ) : $loop->the_post(); ?> <---Loop Content---> <?php endwhile; ?> <?php else : ?> <p> No Events </p> <?php endif; ?> <?php wp_reset_query(); ?> </div>So not far off, just had odd bit of code in wrong order.
Also, how do i add the paste the code neatly into this, rather than the mess I’ve been posting?January 27, 2015 at 10:12 am in reply to: Custom events loop, trying to add 'no upcoming events message' #938170benjamin1986
ParticipantHey, thanks for the speedy reply, I tried this but didn’t seem to work, apologies if I misunderstood, i’m trying my best to learn about the loop, but can’t figure this particular one out:
`<div class=”event-loop”>
<?php $loop = new WP_Query( array( ‘post_type’ => ‘tribe_events’, ‘posts_per_page’ => 4,’tax_query’ => array(
array(
‘taxonomy’ => ‘tribe_events_cat’,
‘field’ => ‘slug’,
‘terms’ => ‘event-type-a’
)
) ) ); ?><?php if ($loop) : ?>
<?php while ( $loop->have_posts() ) : $loop->the_post(); ?>
<div class=”training-item”>
<?php do_action( ‘tribe_events_before_the_event_title’ ) ?>
<h3 class=”tribe-events-list-event-title entry-title summary”>
” title=”<?php the_title() ?>” rel=”bookmark”>
<?php the_title() ?>
</h3>
<?php do_action( ‘tribe_events_after_the_event_title’ ) ?><!– Event Meta –>
<?php do_action( ‘tribe_events_before_the_meta’ ) ?>
<div class=”tribe-events-event-meta vcard”>
<div class=”author <?php echo $has_venue_address; ?>”><!– Schedule & Recurrence Details –>
<div class=”updated published time-details”>
<?php echo tribe_events_event_schedule_details() ?>
</div><?php if ( $venue_details ) : ?>
<!– Venue Display Info –>
<div class=”tribe-events-venue-details”>
<?php echo implode( ‘, ‘, $venue_details ); ?>
</div> <!– .tribe-events-venue-details –>
<?php endif; ?></div>
</div><!– .tribe-events-event-meta –><!– Event Image –>
<?php echo tribe_event_featured_image( ) ?><!– Event Content –>
<?php do_action( ‘tribe_events_before_the_content’ ) ?>
<div class=”tribe-events-list-event-description tribe-events-content description entry-summary”>
<?php the_excerpt() ?>
” class=”tribe-events-read-more” rel=”bookmark”><h4><?php _e( ‘View course information / book tickets’, ‘tribe-events-calendar’ ) ?> » </h4>
</div>
<!– .tribe-events-list-event-description –>
<?php do_action( ‘tribe_events_after_the_content’ ) ?>
</div>
<?php endwhile; ?><?php else : ?>
<p>
No Events
</p><?php endif; ?>
<?php wp_reset_query(); ?>
December 15, 2014 at 7:00 am in reply to: Community Events Edit page keeps asking users to log-in #918503benjamin1986
ParticipantHi, sorry, i think i found the culprit. It was linking to “domain”.org rather than “www.domain”.org, thus creating the horrid loop.
Looks like i’ve resolved it. Cheers
benjamin1986
ParticipantHi,
Thanks, that’s a shame, so at the moment I’ll not be able to achieve it? I guess for now I could use the calendar widget which i’ve managed to insert into my template, but do prefer the larger layout.benjamin1986
ParticipantAh, no worries, I followed the instruction in the previous topic provided by the user. Wasn’t as complicated a fix as I first thought, lucky that someone else has better knowledge of php than me! 🙂
Cheers, BenAugust 23, 2014 at 2:43 pm in reply to: Bug and fix for problem with default status for submitted events #694429benjamin1986
ParticipantHi, I was just about to ask about this exact same problem myself, could you please fix asap, as I have users of my site complaining their events aren’t being listed. Kind-of negates the main use of this paid for plugin if I have to review all submitted events. Thanks
benjamin1986
ParticipantHi Casey,
Thanks, yes – what I did in the end was increase the container width and reduce some padding by around 20 pixels, and then slightly adjusted items around that.
Not ideal, but I’m happy with it now. 🙂 Would still be useful to know why the function code didn’t work, as I’m bound to use your plugin again on other sites in the future, as its one of the best and would be good to understand.
I’ll study the support pages a little more.
Thanks,
Benbenjamin1986
ParticipantHi,
Also disabled my theme and tried with no luck. Is there just a minimum width at which it will only display them in a row (events from, search & near) in a row?
Thanks, Ben
benjamin1986
ParticipantThanks Casey,
I’ve added the following to my functions.php file at the bottom:
function customize_tribe_events_breakpoint() {
return 600;
}
add_filter( ‘tribe_events_mobile_breakpoint’, ‘customize_tribe_events_breakpoint’ );however, its still displaying as it would on a mobile? have I missed something?
Ben
benjamin1986
ParticipantThanks, which file do I need to add the ‘ tribe_events_mobile_breakpoint filter ‘ – its not clear from the guide?
-
AuthorPosts
