Dannyloski |
04-15-2008 09:24 PM |
Megatr0n, it should, I dont see why it wouldnt. Matter of fact it should work with all vB Version ... Let me know though ...
Code Monkey, you rock bro, thanks! I updated the .XML File ... I changed the document.getElementById() to fetch_object() as well for the following part of the code, is that needed or not?
It was like this:
PHP Code:
function view() { document.getElementById('hidelink').className = "viewable"; document.getElementById('viewlink').className = "hidden"; document.getElementById('photobucket').className = "viewable"; document.getElementById('jwidget').src = "http://photobucket.com/svc/jwidget.php?width={$vbulletin->options['photobucket_width']}&height={$vbulletin->options['photobucket_height']}&largeThumb=false&pbaffsite=272&bg={$vbulletin->options['photobucket_bgcolor']}&border=false&bordercolor=%23000000&url=&linkType=img&textcolor={$vbulletin->options['photobucket_color']}&linkcolor={$vbulletin->options['photobucket_linkcolor']}&media=both&btntxt=&searchenabled=true&searchlinkcolor=&searchbgcolor=" return false; }
Now its like this:
PHP Code:
function view() { fetch_object('hidelink').className = "viewable"; fetch_object('viewlink').className = "hidden"; fetch_object('photobucket').className = "viewable"; fetch_object('jwidget').src = "http://photobucket.com/svc/jwidget.php?width={$vbulletin->options['photobucket_width']}&height={$vbulletin->options['photobucket_height']}&largeThumb=false&pbaffsite=272&bg={$vbulletin->options['photobucket_bgcolor']}&border=false&bordercolor=%23000000&url=&linkType=img&textcolor={$vbulletin->options['photobucket_color']}&linkcolor={$vbulletin->options['photobucket_linkcolor']}&media=both&btntxt=&searchenabled=true&searchlinkcolor=&searchbgcolor=" return false; }
I gave you credit in the First Post for the help ;) ...
|