hcs wrote:

Set duration of animation to 0

Thanks for the advice. I actually did do so, but for some reasons my PC at home isnt that much of rough. I use Chrome at home too. I guess there is something wrong with the PC at work.

102

(118 replies, posted in Supported extensions)

Question: how to set folder permissions on a local host computer?

That's what I have been using. But later on when I used IE and Firefox both were perfectly fine. So .. Chrome cant keep up. Seems like that

Well, I found out that the transitions worked fine on Firefox 9+ and IE 9+. Its hella slow on Chrome. Chrome my my fav browser sad ... sad

Tested with the default theme. It was normal. So problem caused by my theme. Not sure if because I use gradients for the forum headers

Thank you for this great extension. However, I dont know if its because of my theme or something else, the animation seems very slow and not smooth at all. Can anyone take a look and tell me why? or its just to me?

link: http://vphansite.com/forum

107

(3 replies, posted in Feature requests)

I just did. Thank you smile

108

(3 replies, posted in Feature requests)

Noone is interested to see the work of other people?

109

(3 replies, posted in Feature requests)

Hi, I would love to see everyone's work so please consider this. Thanks

110

(71 replies, posted in PunBB 1.4 additions)

map210690 wrote:

nevermind found the fix. for anyone that also wants it.

<?php
     if (FORUM_PAGE == 'viewtopic') if ($forum_user['is_guest'] != true) { ?>
    <div class="main-head"><h2 class="hn"><span class="item-info"> <?php echo($lang_topic['Quick post']); ?> </span></div>
    <?php } //if it is viewtopic, we display header ?>

Isn't it already set for guests not being able to post if not logged in? Why we need this code can someone explains?

111

(28 replies, posted in PunBB 1.4 troubleshooting)

It works great. Thank you for supporting smile

112

(28 replies, posted in PunBB 1.4 troubleshooting)

Hi supporters,
I tried but I could not get the icons on buttons to show up. All i got were texts only. Please help

link: http://vphansite.com/forum
(PunBB 1.4.1, punbbcode 1.4.18)

It is working perfectly except the part that no images on buttons.

Hi supporters,

I tried but I could not get the images shown up in the "sprite.png". All i got are texts only. Please help

link: http://vphansite.com/forum

114

(71 replies, posted in PunBB 1.4 additions)

Kushi wrote:

I also twisted the code just a bit so that it does not require an external PHP file (Urban1.php in your case).

Of course it is some way but as soon as this is style for everyone, it's quite rude to force users to edit their source files. And it's not so good solution at all.
Thanks for your feedback wink. It took me a few hours to understand how does it really work and as You can see from comments it is still not fully understood tongue.

Thank you so much for the explain. You are right. If there is a new update to the core files and I write them over the old ones, I am screwed. I just fixed the codes so that they only work according to the current theme. Happy face smile

115

(71 replies, posted in PunBB 1.4 additions)

I have a question. My website is working fine so far, but when i view it on mobile (my iPhone). The layout changes a bit. It seems like the background is not centered at all. Its off to the left. I wonder if you can help me solve this sad

116

(71 replies, posted in PunBB 1.4 additions)

Thanks for the help. I wonder how long it took you to figure out all the forum calls. I tried to do it without injecting the code you provided but I could not. I was able to get the avatar by calling "$forum_page['avatar_markup']" but it only showed up when clicked on "Profile". It did not show up on other pages such as Index, Search ...

Anyways, I have successfully done it using your code. I also twisted the code just a bit so that it does not require an external PHP file (Urban1.php in your case). It would work the same way. Put this block of codes in the "header.php" line 192 (within the Else. Remember to add {} to have multiple lines)

else
{
    $visit_elements['<!-- forum_welcome -->'] = '<p id="welcome"><span>'.sprintf($lang_common['Logged in as'], '<strong>'.forum_htmlencode($forum_user['username']).'</strong>').'</span></p>';
   
    switch ($forum_user['avatar'])
    {
        case FORUM_AVATAR_GIF:
            $avatar_filename = $forum_user['id'].'.gif';
            break;

        case FORUM_AVATAR_JPG:
            $avatar_filename = $forum_user['id'].'.jpg';
            break;

        case FORUM_AVATAR_PNG:
            $avatar_filename = $forum_user['id'].'.png';
            break;

        case FORUM_AVATAR_NONE:
            $noavatar = TRUE;
            break;
        default:
            $noavatar = TRUE;
            break;
    }
   
    if(!isset($noavatar))
        echo '<a href="' .forum_link($forum_url['user'],$forum_user['id']). '"><img id="avatar" src="' .$base_url. '/' .$forum_config['o_avatars_dir']. '/' .$avatar_filename. '"/></a>';
}

link: vphansite.com/forum

117

(71 replies, posted in PunBB 1.4 additions)

Hi, I would like to ask how did you make the profile logo next to the "logged in as, Urban" so that user can click on it to view the profile?

I see. Thank you so much.

I havent tried that, but will. Can you tell what to modify in the config file?

120

(11 replies, posted in PunBB 1.4 additions)

This is 1.4.1 latest

121

(11 replies, posted in PunBB 1.4 additions)

Diabl0 - Diablo 3 theme

http://vphansite.com/forum/

122

(8 replies, posted in PunBB 1.4 troubleshooting)

icon new is working

KeyDog wrote:

you can also change this code in the extension... not sure icon new is working!

/****************************************************************/
/* POST STATUS INDICATORS */
/****************************************************************/
/* remove default first */
 .brd .main-content .main-item .icon {
     border-width: 0;
     height: 20px;
     width: 20px;
}
.brd .main-content .main-item .icon {
    background:transparent url(images/icon.png) no-repeat;
}
.brd .main-content .main-item .icon.moved {
    background:transparent url(images/iredirect.png) no-repeat;
}
.brd .main-content .main-item .icon.new {
    background:transparent url(images/inew.png) no-repeat;
}
.brd .main-content .main-item .icon.sticky{
    background:transparent url(images/isticky.png) no-repeat;
}
.brd .main-content .main-item .icon.closed{
    background:transparent url(images/iclosed.png) no-repeat;
}
.brd .main-content .main-item .icon.sticky.closed{
    background:url(images/iclosedandsticky.png) no-repeat;

I figured it out.

First: go to phpAdmin - Your database - table config - find "o-maintenance" - switch to 0
Second: go to where your forum files are at - under catche - delete all the files in there

Refresh the page then you should be able to get back in.

I accidently turned on the maintenance mode and logged out. I did some research about the turn-off script however none of them was specific enough. Please help me resolve this. Thanks.

125

(4 replies, posted in PunBB 1.4 troubleshooting)

Beautifully done. Thank you.