• Resolved Northern Beaches Websites

    (@northernbeacheswebsites)


    Hi there,

    We are currently using the pro version of your plugin and we are trying to get this plugin called SpeechKit to work on our site: https://speechkit.io/ it loads an audio version of the post at the top and does this using standard WordPress actions. Whilst your plugin works for the first post, it doesn’t seem to load audio players correctly for the dynamically loaded posts.

    Do you have any ideas or advice on how I can troubleshoot this or what might be going wrong?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Moderator Yui

    (@fierevere)

    永子

    For pro or commercial product support please contact the developer directly on their site.
    This includes any pre-sales topics as well.
    As the developer is aware, commercial products are not supported in these forums.
    I am sure they will have no problem supporting you there.

    Thread Starter Northern Beaches Websites

    (@northernbeacheswebsites)

    Ok no worries, it’s just on the website you say an option is to create a forum request here. So you may need to clarify the website more.

    I will submit a ticket though. Thanks,

    Hello @northernbeacheswebsites

    Did you manage to solve your problem, I’m having the same issue with audio player.

    Thank you

    Thread Starter Northern Beaches Websites

    (@northernbeacheswebsites)

    Hi @jackmess,

    I ended up solving this, but I can’t remember how. I will paste the javascript part of my project for your reference if it’s of any value:

    window.almComplete = function (alm) {
      if (alm.length){
        if (alm.hasOwnProperty('single_post_array')){
    
          var post_id = alm['single_post_array']['id'];
          var target_div = jQuery('#speechkit-player-' + post_id);
    
          if (target_div.length){
            var project_id = target_div.attr('data-project-id');
            var podcast_id = target_div.attr('data-podcast-id');
    
            SpeechKit.player({
              projectId: project_id,
              podcastId: podcast_id,
              renderNode: 'speechkit-player-' + post_id,
            }).then((player) => {
              if (window.console && typeof window.console.log === 'function')
              {
                console.log('?? SpeechKit Player is initialized via AJAX');
              }
            });
          }
        }
      }
    };
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Trying to use this with SpeechKit plugin’ is closed to new replies.