IceTurtle4
Forum Replies Created
-
Forum: Plugins
In reply to: [Social comments by WpDevArt] FaceBook Plugin not working with safariThis is a known bug that Facebook has said they have no plans of addressing or fixing. Seems crazy to me, but that’s what the bug report here is saying.
https://developers.facebook.com/support/bugs/675984216151550/
Forum: Plugins
In reply to: [Facebook Comments] Your plugin made my Facebook comments disappearI have the same issue. Says there are X amount of comments, but nothing shows below that.
Hey deryck,
I tried your snippet of code and placed it at the end of my theme’s functions.php. I still don’t get a re-direct back to the referral page.I know you are not support, but if you know of a quick fix (did I put the code in properly?) Please let me know!
Thanks.
Forum: Plugins
In reply to: [The Events Calendar] Display order of past eventsYes, this did the trick one the events page thank you!
But on the homepage it seems to be displaying the 3 most recent events, but from oldest up top to most recent at the bottom, and it does not seem to be adding new events.
Here is the code in the homepage template
<h3 class="orange">Events</h3> <?php global $post; ?> <?php $all_events = tribe_get_events( array( 'eventDisplay' => 'upcoming', 'posts_per_page' => 3, 'tax_query' => array( array( 'taxonomy' => 'tribe_events_cat', 'field' => 'slug', 'terms' => 'featured' ) ) ) ); ?> <?php if ($all_events) : ?> <?php foreach($all_events as $post) : ?> <?php setup_postdata($post); ?> <div class="post"> <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" rel="bookmark"><?php the_title(); ?></a></h2> <p class="byline"><abbr class="published"><?php echo tribe_get_start_date($post->ID, true, 'M j, Y'); ?></abbr></p> </div> <?php endforeach; ?> <?php else : ?> <div class="post"> <p class="noevents">No Upcoming Events</p> </div> <?php endif; ?> <?php wp_reset_query(); ?> <p><a href="<?php bloginfo('url'); ?>/events/">More Events</a></p> </div> </div>
Any ideas – and thanks again!
Forum: Plugins
In reply to: [Easy Forms for Mailchimp] Change "…has already subscribed" response message.Would it be possible to tell me which file it would be in? I understand it would change with an update, but I’d love to know the quick fix.
Forum: Plugins
In reply to: [Store Locator Plus? for WP] Display address missing spacesI am having this same issue… spacing all runs together, including telephone number… been trying to fix in CSS but can’t seem to make the proper adjustment. Any help would be appreciated!