Quote:
Originally Posted by sean-zigster
HI
Great plug in got it working ok with one small problem
When in the forums and i click on Full Page Mode it works fine
If i click on Full page Mode in the vBadvanced part on the front of my site i get
Any Help thanks !
|
Hello there - I had another mod do the same thing. It appeared to be referenced perfectly with the pages specific to CMPS but no matter, it still didn't prefix the URL properly.
So...
I know I'm not supposed to need to do it but, I located mgc_cb_evo_editor in all the styles I use and found the two links that reference full mode:
Code:
<a href="mgc_cb_evo.php?$session[sessionurl]do=view_chatbox" target="_blank"><img class="inlineimg" id="mgc_cb_evo_fullmode" title="$vbphrase[mgc_cb_evo_fullmode]" src="$stylevar[imgdir_misc]/mgc_cb_evo/mgc_cb_evo_full.gif" alt="$vbphrase[mgc_cb_evo_fullmode]" border="0" /></a>
<else />
<a href="mgc_cb_evo.php?$session[sessionurl]do=view_chatbox" target="_top"><img class="inlineimg" id="mgc_cb_evo_fullmode" title="$vbphrase[mgc_cb_evo_fullmode]" src="$stylevar[imgdir_misc]/mgc_cb_evo/mgc_cb_evo_full.gif" alt="$vbphrase[mgc_cb_evo_fullmode]" border="0" /></a>
And prefixed mgc_cb_evo.php with $vboptions[bburl]/ as seen below:
Code:
<a href="$vboptions[bburl]/mgc_cb_evo.php?$session[sessionurl]do=view_chatbox" target="_blank"><img class="inlineimg" id="mgc_cb_evo_fullmode" title="$vbphrase[mgc_cb_evo_fullmode]" src="$stylevar[imgdir_misc]/mgc_cb_evo/mgc_cb_evo_full.gif" alt="$vbphrase[mgc_cb_evo_fullmode]" border="0" /></a>
<else />
<a href="$vboptions[bburl]/mgc_cb_evo.php?$session[sessionurl]do=view_chatbox" target="_top"><img class="inlineimg" id="mgc_cb_evo_fullmode" title="$vbphrase[mgc_cb_evo_fullmode]" src="$stylevar[imgdir_misc]/mgc_cb_evo/mgc_cb_evo_full.gif" alt="$vbphrase[mgc_cb_evo_fullmode]" border="0" /></a>
Pages work fine in and out of CMPS now... for me anyways