Jump to content
DevFuse Forums

darK

Members
  • Posts

    20
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by darK

  1. Solved:

     

    <script language="JavaScript">

    function random_imglink(){

    var myimages=new Array()

    //specify random images below. You can have as many as you wish

    myimages[1]="http://eahelp.net/stf/468x68.jpg"

    //specify corresponding links below

    var imagelinks=new Array()

    imagelinks[1]="http://www.devfuse.com"

    var ry=Math.floor(Math.random()*myimages.length)

     

    if (ry==0)

    ry=1

    document.write('<div style="float:right; margin-top:0.8%; margin-right:21.4%;"><a href="'+imagelinks[ry]+'"><img src="'+myimages[ry]+'" border="0"></a></div>');

    }

    random_imglink()

    </script>

     

    Here is working version of random ads image.

  2. Hey everyone, I got IPB 3.0 RC1, is this latest version? If not please tell me how to update it. Because I guess it's reason why one of mod (exactly: Colored Topics) not working. In ReadMe file it asks to find for example this:

     

    File: \admin\applications\forums\sources\classes\post\classPost.php

    'title_seo' => IPSText::makeSeoTitle( $this->request['TopicTitle'] ),

     

    But instead of this, my classPost.php got this:

    'title_seo' => IPSText::makeSeoTitle( $this->_topicTitle ),

     

    How come? What to do?

×
×
  • Create New...