• We’re having issues on seeing the banners, that are managed using WP-bannerize, on a HTC one XL device (running 4.2.2).

    We’ve had similar issues with other Android devices, but managed to fix this by using the code below… 
    function widget( $args, $instance ) {
    global $wpBannerizeFrontend;
    $new_args = array_merge( $args, $instance );
    if (isset($wpBannerizeFrontend)) // add this line
    echo $wpBannerizeFrontend->bannerize( $new_args );
    }

    This issue has been addressed before in this topic:
    http://wordpress.org/support/topic/android-htc-one-s-wp-bannerize-issue

    Looks like it hasn’t been resolved yet…  Are there there other users experiencing the same thing?

    https://wordpress.org/plugins/wp-bannerize/

Viewing 1 replies (of 1 total)
  • Seems the same as here: https://wordpress.org/support/topic/wp-bannerize-deactivates-on-mobile-view

    (And this is causing Fatal Errors in my errorlog as well: “PHP Fatal error: Call to a member function bannerize() on a non-object” )

    I ‘fixed’ it in the same way as you (before trying a solution that had me excluding a small array of Android powered devices that had this problem). Seems pretty hard to track down why this happens, I seem to recall Facebook was making it worse since a change last year: incoming traffic via FB-links would have this all the time, regardless of Android version.

    If anyone has any more details…

Viewing 1 replies (of 1 total)
  • The topic ‘HTC One XL isn't showing banners from WP bannerize’ is closed to new replies.