Anastis Sourgoutsidis
Forum Replies Created
-
Hi there,
the free version doesn’t track any usage, so no.
The Pro version can gather analytics (optional), so it does give you an admin dashboard where you can see top playlists, top tracks, average listening time, etc.

It does not provide a shortcode or a widget to display this information publicly however.
Please contact us directly with any questions regarding AudioIgniter Pro. The WordPress Forums should only be used for questions regarding the Free AudioIgniter plugin.
Forum: Plugins
In reply to: [AudioIgniter Music Player] track covers in tracklist missingHi Chuck,
It looks like the tracks don’t have an image assigned. You’ll need to click on the “Upload cover” icon and re-select the image on any tracks that are missing it. Then make sure to save your changes / playlist.
This may be because you delete the images (and therefore the “connection” between the images and the tracks that used them “broke”), or they didn’t have an image assigned to begin with.
In any case, try re-assigning them, save, and give it a test.
Forum: Plugins
In reply to: [GutenBee - Gutenberg Blocks] Default Gallery SettingsHi Josh,
if I remember correctly, the image sizes dropdown is populated based on information returned by the images themeselves, so it’s (probably) not possible to pre-populate it before selecting any images.
But, assuming you just need that to create patterns with a specific size, you should keep the block information when removing the images, i.e. the <!– wp:gutenbee/justified-gallery… and <!– /wp:gutenbee/justified-gallery –> lines:
<!-- wp:gutenbee/justified-gallery {"uniqueId":"36d6e8-47d5-4a","size":"large"} -->
<div id="block-36d6e8-47d5-4a" class="wp-block-gutenbee-justified-gallery block-36d6e8-47d5-4a wp-block-gutenbee-gallery-columns gutenbee-columns-3" data-gallery-type="columns" data-row-height="120" data-margins="1" data-last-row="nojustify" data-randomize="false"><div class="wp-block-gutenbee-gallery-content"></div></div>
<!-- /wp:gutenbee/justified-gallery -->The “size”:”large” bit on the first line is the size I selected before I removed the image. Any images added to this gallery will then have this size preselected.
Hope this helps.
Forum: Plugins
In reply to: [GutenBee - Gutenberg Blocks] Default Gallery SettingsHi Josh,
add a new gallery block, change the settings that you want to be the defaults, and when you are ready, remove the images and click on the three dots button and then “Create pattern”. Type a name, such as “Justified gallery” or something else that will help you find it, and make sure the “Synced” checkbox is unchecked. Finally, press Add.
Now you can add the “Justified gallery” pattern easily from the block inserter, with the defaults you specified. You essentially created a one-block pattern. No code necessary 😀
Happy holidays!
- This reply was modified 5 months ago by Anastis Sourgoutsidis.
Hi there,
AudioIgniter uses the system’s capabilities of audio playback, so the user’s O.S. and browser versions determine what is playable and what is not. You can find a list of popular formats and their compatibility/availability here: https://caniuse.com/?search=audio
If you find that a file type should be supported under iOS, the issue might be the file’s encoding, such as its bit rate, sample rate (frequency), etc, especially if you’re talking about very high quality audio.
Forum: Plugins
In reply to: [AudioIgniter Music Player] Track playback possitionHi there,
this is a Pro feature.
Please get in touch via our support page if you have Pro-related questions, as these this forum is for the free AudioIgniter plugin only.
Forum: Plugins
In reply to: [AudioIgniter Music Player] “forward-back track” option is not visibleHi Susan,
you need to have at least two tracks in the playlist in order for the “next/previous track” buttons to be displayed. With a single track, there’s no previous or next track to go to.
Forum: Plugins
In reply to: [AudioIgniter Music Player] Cache issueHi Thierry, glad you found the culprit!
You may want to check for any special handling that the plugin may do on URLs with query strings.
AudioIgniter uses URLs of the form https://www.your-domain.com/?audioigniter_playlist_id=123 to actually load the playlist data, so you may even want to exclude this pattern altogether.
Forum: Plugins
In reply to: [AudioIgniter Music Player] Cache issueHi Thierry,
when you save the playlist and refresh or re-visit the playlist edit page, are the changes reflected properly?
In short, is this a back-end issue (how data data saved), or a front-end issue (how data are displayed)?
From you description up until now, it sounds more like a front-end issue, and probably a caching issue, just like you mentioned. So, my first suggestion is to completely disable all caching plugins/features and see if the issue persists. Assuming it works correctly, you can then start enabling caching plugins/features one by one, until the problem comes back, so that we can identify the exact culprit.
I’m saying caching plugins/features as you may have separate plugins for e.g. object caching (redis, memcached, etc), and page caching (e.g. WP Rocket, Litespeed cache, etc). But you might have a plugin that handles both or more.
I also see that you use Polylang. This might also be responsible in case of improper configuration. For example, if you have configure the plugin to translate AudioIgniter playlists, you might be editing the English playlists while you display the French ones. So, make sure that either you are not translating the playlists, and if you do, that you’re editing the appropriate ones.
Forum: Plugins
In reply to: [GutenBee - Gutenberg Blocks] All slides are broken in version 2.19.0Hi there,
we just released 2.19.1 which fixes the issue.
Forum: Plugins
In reply to: [GutenBee - Gutenberg Blocks] All slides are broken in version 2.19.0Hi there,
thanks for reporting this. We’ll investigate and push an update as soon as possible.
For the time being, please downgrade to 2.18.1, available through https://github.com/cssigniter/gutenbee/releases and https://ww.wp.xz.cn/plugins/gutenbee/advanced/
Forum: Plugins
In reply to: [GutenBee - Gutenberg Blocks] plugin closed?For the time being yes. We’ev already submitted an updated and waiting for its review.
As I said before, just make sure to update to the latest version once released.
Forum: Plugins
In reply to: [GutenBee - Gutenberg Blocks] plugin closed?Hi there,
No need to take any action. The closure is only temporary. We will submit an update as soon as possible and it will reopen, just make sure to update to the latest version once we release it.
Forum: Plugins
In reply to: [Elements Plus!] Plugin under reviewHi Chris,
we are in the process of updating the plugin, and we will submit it in the following days. Hopefully the review process will be quick, but I can’t really give an estimate.
Forum: Plugins
In reply to: [AudioIgniter Music Player] SyntaxError Unexpected tokenHi there,
have you installed any kind of security or redirection plugins? Or even changed your .htaccess file?
AudioIgniter loads playlists dynamically, by requesting URLs in the following format:
https://your-url.com/?audioigniter_playlist_id=123
These should return JSON content. Most likely, something changed on your installation and they return HTML content (most likely a 404 page).