How do I add andsence ad above the footer ? (and not at the bottom article)

Posted in: Newspaper
Post count: 3

Hello,
I’d like to add an ad just above the footer. How can I do that ?
Thanks in advance,
Fan

Post count: 780

Hi,
add this at the begining of the footer.php file:


    <div class="container">
        <div class="row">
            <div class="span12">
                <?php
                // show the header ad spot
                echo td_global_blocks::get_instance('td_ad_box')->render(array('spot_id' => 'custom_ad_1'));
                ?>
            </div>
        </div>
    </div>

after this you can use the custom ad 1 spot to show footer ads. The ads may need a little bit of css to be better centered.

Radu O.

Post count: 3

I’ll do it, thank you very much for answering me !

Viewing 3 posts - 1 through 3 (of 3 total)
The forum ‘Newspaper’ is closed to new topics and replies.