• Resolved sittingduck1983

    (@sittingduck1983)


    Hi, im using Share buttons on rotating ads on my site so that the ads can be shares to social media. But the buttons only show on the first Ad but as soon as it rotates to a new Ad the buttons disappear.
    Any help would be greatly appreciated!
    Thanks

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author ILLID

    (@mihail-barinov)

    Hello,

    Sorry for the long responce, but looks like I know how to help you.
    Please use following code snippet

    add_action( 'wp_enqueue_scripts', 'sti_wp_enqueue_scripts2', 9999999 );
    function sti_wp_enqueue_scripts2() {
        $script = "
             var timeoutID;
             jQuery('body').on('DOMSubtreeModified', '.adsma-home-left-top, .adsma-home-right-top', function() {
                window.clearTimeout(timeoutID);
                timeoutID = window.setTimeout( function() {
                     jQuery('.adsma-home-left-top img, .adsma-home-right-top img').sti();
                }, 1000 );
           });
        ";
        wp_add_inline_script( 'sti-script', $script);
    }

    You need to add it somewhere outside the plugins folder. For example, inside functions.php file of your theme or use some plugin for adding code snippets.

    Regards

    Thread Starter sittingduck1983

    (@sittingduck1983)

    Thank you so much! Worked perfectly!!

    Plugin Author ILLID

    (@mihail-barinov)

    Glad to help.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Share buttons not showing on Advanced Ads’ is closed to new replies.