eaugustine
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] Events List Widget is a LiarIt appears there was an issue with my theme. I was using a child theme and the list-widget.php file in that child theme wasn’t being updated when I updated the plugin. The issue is fixed and the Events List widget is now behaving properly. Thanks!
- This reply was modified 7 years, 4 months ago by eaugustine.
Forum: Plugins
In reply to: [The Events Calendar] Events List Widget is a LiarThanks for your response, Sky. I did try adding a new instance of the Events List widget, but it performed the same. I will try the theme switch and the rest of it later and get back to you.
Never got an answer or figured out how to do what I was trying to do—and honestly, forgot that I was trying to do this. I feel like I understand how it works a little better now, so maybe I’ll look into it again.
Forum: Plugins
In reply to: [WPaudio MP3 Player] [Plugin: WPaudio MP3 Player] Tips that might helpI found another issue. I did make the change in both of the .js files, changing:
{jQuery('a[href$=.mp3]').addClass('wpaudio');}to{jQuery('a[href$=".mp3"]').addClass('wpaudio');}But I noticed that my javascript files were both inactive and things were still not working. In the wpaudio.php file, there is a line that references the filepath, but it didn’t match up with the actual filepath. So change this:
define( 'WPAUDIO_URL', WP_PLUGIN_URL . '/wpaudio-mp3-player' );
to
define( 'WPAUDIO_URL', WP_PLUGIN_URL . '/wpaudio-mp3-player.3.1' );Together, those two changes fixed it for me.