• Resolved woodlandturns

    (@struewing)


    Recently installed, cannot get following shortcode to work:

    [gallery type='picasa' user_id='montgomerycountywoodturners' kind='photo' album='5176738164882169489' access='public,protected,private' protection='none' layout='square' caption='desc-title' thumb_size='72' main_size='1600' ]

    Warning: simplexml_load_string(): No album found. in /home/montgo23/public_html/wp-content/plugins/photonic/extensions/Photonic_Picasa_Processor.php on line 246

    Warning: simplexml_load_string(): ^ in /home/montgo23/public_html/wp-content/plugins/photonic/extensions/Photonic_Picasa_Processor.php on line 246

    Warning: simplexml_load_string(): Entity: line 1: parser error : Start tag expected, ‘<‘ not found in /home/montgo23/public_html/wp-content/plugins/photonic/extensions/Photonic_Picasa_Processor.php on line 246

    Warning: simplexml_load_string(): No album found. in /home/montgo23/public_html/wp-content/plugins/photonic/extensions/Photonic_Picasa_Processor.php on line 246

    Warning: simplexml_load_string(): ^ in /home/montgo23/public_html/wp-content/plugins/photonic/extensions/Photonic_Picasa_Processor.php on line 246

    Warning: simplexml_load_string(): Entity: line 1: parser error : Start tag expected, ‘<‘ not found in /home/montgo23/public_html/wp-content/plugins/photonic/extensions/Photonic_Picasa_Processor.php on line 246

    Warning: simplexml_load_string(): No album found. in /home/montgo23/public_html/wp-content/plugins/photonic/extensions/Photonic_Picasa_Processor.php on line 246

    Warning: simplexml_load_string(): ^ in /home/montgo23/public_html/wp-content/plugins/photonic/extensions/Photonic_Picasa_Processor.php on line 246

    If I change to kind=’album’ and leave album= off, I get a blank screen returned (but no error).

    Any sugestions?

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Sayontan Sinha

    (@sayontan)

    Is it possible that you are passing an albumid, not an album? In that case, simply replacing album with albumid should help.

    Thread Starter woodlandturns

    (@struewing)

    Thanks. Changing to albumid got rid of all error messages, but it doesn’t return any photos – a blank page only. Clearly I don’t have everything set up correctly, but I cannot figure it out from other forum topics and it seems like my client ID, client secret, and refresh token for back-end authentication set up correctly.

    Plugin Author Sayontan Sinha

    (@sayontan)

    Can you provide me with a URL?

    Thread Starter woodlandturns

    (@struewing)

    Plugin Author Sayontan Sinha

    (@sayontan)

    Thanks. Looks like you are being affected by a known conflict between the plugin and themes that use Bootstrap. This is fairly easy to resolve (and I have rectified it for the next version). Open the file photonic/include/scripts/photonic.js, line 837. You will see this:

    $(document).tooltip({
            items: '.title-display-tooltip a, .photonic-slideshow.title-display-tooltip img',
            track: true,
            show: false,
            hide: false
    });

    Change it to this:

    $(document).tooltip({
            items: '.title-display-tooltip a, .photonic-slideshow.title-display-tooltip img',
            track: true,
            show: false,
            selector: '.title-display-tooltip a, .photonic-slideshow.title-display-tooltip img',
            hide: false
    });
    Thread Starter woodlandturns

    (@struewing)

    That corrected it, thank you very much!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘simplexml errors’ is closed to new replies.