Posted by baronmunchowsen on April 2, 2009 at 10:31pm
Jump to:
| Project: | OpenX |
| Version: | 6.x-1.01 |
| Component: | Code |
| Category: | feature request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Issue Summary
Hi there,
Just getting into using OpenX here - thanks so much for the mod. At present I'm not able to use the 'Text below image' functionality for the banners - it doesn't appear.
I can get it working when I hard-code the 'Invocation code' from OpenX directly into my template, but when the same ad is served via Drupal, the 'text below image' text doesn't appear.
Any thoughts on this, or perhaps I'm missing something?
Thanks for any help.
--------------------
Drupal version: 6.10
OpenX version: 2.8.0
Drupal OpenX module version: 6.x-1.0
Comments
#1
The text doesn’t show by default, i’m not sure if you are able to change this behavior in OpenX itself.
A quick fix for this is editing the Drupal OpenX module 6.x-1.01
Inside openx.inc, find around line 33:
<?php$url = $protocol .'://'. trim($server, '/') .'/spcjs.php';
?>
And change to:
<?php$url = $protocol .'://'. trim($server, '/') .'/spcjs.php?withtext=1';
?>
#2