controlz
Forum Replies Created
-
This plugin is jacked. I too get the same cryptic error message. There are no JS errors in the console! Garbage!
Forum: Plugins
In reply to: [AdRotate Banner Manager] Ad Clicks Stopped RecordingI did some more looking and found this code in the head section
<script type=’text/javascript’ src=’http://domain.com/wp-content/plugins/adrotate/library/jquery.adrotate.clicktracker.js’></script>
<script type=’text/javascript’ src=’http://domain.com/wp-includes/js/jquery/jquery.js?ver=1.11.3′></script>
<script type=’text/javascript’ src=’http://domain.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1′></script>Can you tell me by looking at the above why jQuery is not defined?
Forum: Plugins
In reply to: [AdRotate Banner Manager] Ad Clicks Stopped RecordingAfter checking code inspector, I see:
Uncaught ReferenceError: jQuery is not definedI tried adding the following to the head but get the same error message. <script type=”text/javascript” src=”http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js”></script>
Forum: Plugins
In reply to: [AdRotate Banner Manager] Clicks not Being Tracked in StatsHow did you solve this issue?
How did you correct the issue if you don’t mind me asking.
Forum: Plugins
In reply to: [The Events Calendar] Expired events not being removed from eventDisplayI found the answer after some digging. I was using the wrong call. Here’s what I ended up using which seems to be working as it should by only showing upcoming events.
<section class=”events”>
<h3>Upcoming Events</h3>-
<?php
- “><?php the_title(); ?>
global $post;
$current_date = date(‘j M Y’);
$end_date = date(‘j M Y’, strtotime(’30 days’));$get_posts = tribe_get_events(array(‘start_date’=>$current_date,’end_date’=>$end_date,’posts_per_page’=>3) );
foreach($get_posts as $post) {
setup_postdata($post);
?><?php } //endforeach ?>
<?php wp_reset_query(); ?></section><!–events–>