Automatically ad a server side include to all posts

Posted in: Newsmag
Post count: 24

Just like with the ad display how you can add an ad code to show X amount of paragraphs into a post can I do the same with server side include?

What I am trying to achieve is to have one file (a php) which I have designed using Visual Composer to be placed on every posts within the site.

Visit http://soperth.com.au/10-things-can-find-perth-12715 on a mobile device and scroll down to see the now trending box. I want to be able to automatically have this box appear on all posts that I have created and when I want to change the content that is within that box I can simply change 1 file and then upload it to the server to show different content. Ultimately I want to be able to do this so I can increase pages per session and for advertising purposes promote a sponsored article throughout the whole site – increasing traffic to the post.

At the moment I am currently having to manually copy and paste the following code to display the box on mobile only. The DIV include_pad is to allow for padding between the box and blog copy.

<div class=”ttd”>
<div class=”include_pad”>[insert_php]
$FileLocation = “/include.php”;
readfile($_SERVER[‘DOCUMENT_ROOT’].$FileLocation);
[/insert_php]</div>
</div>

Post count: 6535

HI

There is no need by any php to display a block in post content, you can simple paste it’s shortcode in post editor: http://screencast.com/t/uLMk1LkoBahttp://screencast.com/t/4htR55xwU6
To hide the block on mobile use this css:

@media(min-width: 768px){
.td-post-content .td_block_2{
display: none!important;
}
}

Hope this helps!
Thanks!

Post count: 24

Thanks so much that worked perfectly!

Is there a way to be able to incorporate autoplay video as an option aswell?

Post count: 6535

Hi

The theme does not have an option in this regard but you can customize the iframe from youtube to achieve that. Please check this link for more details in this regard: https://forum.tagdiv.com/topic/youtube-autostart/

Thanks!

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