ericjacksonwood
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] Errors with plugin since Version 3.2I’ve fixed the issue.
I had my custom post type setup as a plugin, which was causing a permalink issue (not 100% sure why). Once I moved the CPT code from the plugin file into my themes functions.php file, it started working.
There were a few issues I needed to manually debug (because of the W3 Total Cache plugin I had installed), but I went through those issues manually, and everything seems to be working well now!
Forum: Plugins
In reply to: [The Events Calendar] Errors with plugin since Version 3.2I tried removing the plugin completely and adding the new version back in, as well as doing a standard update (using the WP dashboard).
I have a customized theme template, but it works fine with 3.2, and doesn’t work at all with 3.6.1.
The live version of the site is currently using the 3.2 version (since 3.6.1 isn’t working for me at all).
Is there anything else I should look at that may be causing this issue?
Forum: Plugins
In reply to: [Testimonials Widget] Testimonial List Loading 2nd Blank BoxYou’ve been added, and the passwords been sent. Let me know if you can figure it out! Thanks
Forum: Plugins
In reply to: [Testimonials Widget] Testimonial List Loading 2nd Blank BoxI tried updating, but nothing changed. I reviewed the testimonials, and there doesn’t seem to be any extra line breaks in the testimonial itself.
I also reviewed the code and found the extra unclosed <p> after each testimonial.
<div class="test_nuggets"> <div class="testimonialswidget_testimonials testimonialswidget_testimonials_list"> <div class="testimonialswidget_testimonial testimonialswidget_testimonial_list"><q> <p>“I learned how to answer behavioural questions effectively.”</p> <p></q></div> </div> </div>
Shouldn’t this look more like this:
<div class="test_nuggets"> <div class="testimonialswidget_testimonials testimonialswidget_testimonials_list"> <div class="testimonialswidget_testimonial testimonialswidget_testimonial_list"> <q><p>“I learned how to answer behavioural questions effectively.</p></q> </div> </div> </div>
[Moderator Note: Please post code or markup snippets between backticks or use the code button. As it stands, your posted code may now have been permanently damaged/corrupted by the forum’s parser.]