vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Major Additions - Yet Another Awards System (https://vborg.vbsupport.ru/showthread.php?t=232684)

vBNinja 12-28-2011 05:18 AM

Is there any way to downgrade to 4.0.2 (without the PL1)

because i'm getting this error when trying to request/recommend awards:

"There's some error when sending your award request. Please contact site's administrator for assistant."

Also, when someone is granted an award, their profile page messes up and all the links become unclickable..

We really need an update...

Thanks!

TiKu 12-30-2011 02:16 AM

I installed this mod on VB 4.1.8 and I've found a couple of bugs in YAAS 4.0.2 (and my mail to yaas-bugs@kd0igo.com was rejected):

1) The plugin "YAAS - Profile Tab" doesn't use the correct css classes for the <dd> tag. It should be userprof_module and userprof_moduleinactive.

2) In the plugin "YAAS - Profile Tab" the links should be "&tab=myawards#myawards". I'm not sure whether this really is important, but all other tabs are built like this.

3) In the template "memberinfo_block_myawards" the first <div> tag isn't
closed before the <br />: <div <br /> instead of <div><br />

4) YAAS doesn't work well together with iTrader 2.8.2 (https://vborg.vbsupport.ru/showthread.php?t=232044). iTrader displays a tab on the user profile page as well. If you use both add-ons, the iTrader tab will be empty. Also YAAS inserts an empty tab below the tab bar if either the YAAS tab or the iTrader tab is selected. Clicking this tab is like clicking the YAAS tab.

Regards
TiKu

sadiq6210 12-30-2011 05:52 AM

Quote:

Originally Posted by TiKu (Post 2282085)
I installed this mod on VB 4.1.8 and I've found a couple of bugs in YAAS 4.0.2 (and my mail to yaas-bugs@kd0igo.com was rejected):

1) The plugin "YAAS - Profile Tab" doesn't use the correct css classes for the <dd> tag. It should be userprof_module and userprof_moduleinactive.

2) In the plugin "YAAS - Profile Tab" the links should be "&tab=myawards#myawards". I'm not sure whether this really is important, but all other tabs are built like this.

3) In the template "memberinfo_block_myawards" the first <div> tag isn't
closed before the <br />: <div <br /> instead of <div><br />

4) YAAS doesn't work well together with iTrader 2.8.2 (https://vborg.vbsupport.ru/showthread.php?t=232044). iTrader displays a tab on the user profile page as well. If you use both add-ons, the iTrader tab will be empty. Also YAAS inserts an empty tab below the tab bar if either the YAAS tab or the iTrader tab is selected. Clicking this tab is like clicking the YAAS tab.

Regards
TiKu

https://vborg.vbsupport.ru/showpost....&postcount=742

TiKu 12-30-2011 09:32 AM

Many thanks, it works great!

TheSupportForum 12-30-2011 07:20 PM

<font color="Red">PLEASE UPDATE THIS MOD TO WORK WITH VERSION 4.1.9 PLEASE</font>

EasyEazy 12-30-2011 09:32 PM

Installed this again today after having a long time trying to get it to work.

Appreciate the update and the work you do mate. so far working like a charm.

Keep it up.

Bluefin221 01-05-2012 01:20 PM

Out of interest, can you give the same award to a member say 30 times and it will say plus 30 awards?

For example I run a tournament which is the same tournament and instead of constant new awards I'd like to use the same one, but if someone wins the tournament twice can I issue them that same award again? again?

squidsk 01-05-2012 03:11 PM

Quote:

Originally Posted by Bluefin221 (Post 2284103)
Out of interest, can you give the same award to a member say 30 times and it will say plus 30 awards?

For example I run a tournament which is the same tournament and instead of constant new awards I'd like to use the same one, but if someone wins the tournament twice can I issue them that same award again? again?

I don't think so, but you can probably use the points system for the award to achieve what you're after.

Bluefin221 01-05-2012 06:01 PM

Quote:

Originally Posted by squidsk (Post 2284131)
I don't think so, but you can probably use the points system for the award to achieve what you're after.

I tested it on myself, you can give the same user the same award again and again, it just lined up the medals.

mIQe 01-06-2012 07:49 AM

I have 4.1.8 and installed this mod.

Replaced the Memberinfo_block_myawards with this:

Code:

<div id="view-myawards" class="<vb:if condition="$selected_tab == 'myawards'">selected_view_section<vb:else />view_section</vb:if>">
<div>

<div class="blocksubhead subsectionhead userprof_headers userprof_headers_border">
{vb:rawphrase award_showcase} - {vb:raw $block_data[num]} {vb:rawphrase awards} <vb:if condition="$vboptions[aw_points]"> - {vb:raw $block_data[total_points]} {vb:rawphrase points}</vb:if>
</div>

<div class="blockbody">
<table width="100%">
<tr align="center">
        <vb:if condition="$vboptions[aw_showicon]"><th class="blocksubhead" nowrap="nowrap">{vb:rawphrase award_icon}</th></vb:if>
        <vb:if condition="$vboptions[aw_showimage]"><th class="blocksubhead" nowrap="nowrap">{vb:rawphrase award_image}</th></vb:if>
        <th class="blocksubhead" width="100%">{vb:rawphrase award_description}</th>
</tr>
{vb:raw $block_data[myawards]}
</table>
</div>
</div>
</div>

Edited the YAAS with this

Code:

$blocklist['myawards'] = array(
        'class' => 'MyAwards',
        'title' => $vbphrase['my_awards'],
        'options' => array(
                'pagenumber' => $vbulletin->GPC['pagenumber']
        ),
        'hook_location' => 'profile_tabs_last',
        'wrap' => false
);

require_once('./global.php');
global $vbulletin; 
require_once(DIR . '/includes/class_bbcode.php');
$bbcode_parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());

class vB_ProfileBlock_MyAwards extends vB_ProfileBlock
{
    var $template_name = 'memberinfo_block_myawards';

    function confirm_empty_wrap()
    {
        return false;
    }

    function confirm_display()
    {
        return ($this->block_data['myawards'] != '');
    }

    function prepare_output($id = '', $options = array())
    {
        global $show, $vbphrase, $stylevar, $vbcollapse, $bgclass, $vbulletin;
       
        require_once(DIR . '/includes/class_bbcode.php');
        $bbcode_parser =& new vB_BbCodeParser($this->registry, fetch_tag_list());

               
                $result = $this->registry->db->query_read('
            SELECT
                *
            FROM
            ' . TABLE_PREFIX . 'award_user AS award_user
                LEFT JOIN ' . TABLE_PREFIX . 'award AS award USING (award_id)
            WHERE
                award_user.userid = ' . $this->profile->userinfo['userid'] . '
                AND award.award_active = "1"
            ORDER BY
              '.$vbulletin->options['aw_awardorder'].'
        ');
       
                                if (($vbulletin->options['aw_points']) AND ($this->profile->userinfo['userid']))
                                {
                                        $userpoints = $this->registry->db->query_read('
                                                SELECT a.*, au.*, SUM(award_pointvalue) AS TotalPoints
                                                FROM ' . TABLE_PREFIX . 'award a, ' . TABLE_PREFIX . 'award_user au
                                                WHERE (au.userid = '.$this->profile->userinfo['userid'].') AND (a.award_id=au.award_id) AND (a.award_active = "1")
                                                GROUP BY au.userid
                                        ');
                               
                                        while ($array = $this->registry->db->fetch_array($userpoints))
                                                {
                                                $this->block_data['total_points'] = $array['TotalPoints'];
                                                } 
                                }
               
        $num = $this->block_data['num'] = $this->registry->db->num_rows($result);
       
        $this->block_data['myawards'] = '';
       
        if ($num > 0)
        {
            // Display Awards
            while ($award = $this->registry->db->fetch_array($result))
            {
                exec_switch_bg();
               
                $award['award_desc'] = $bbcode_parser->parse($award['award_desc']);
                $award['issue_reason'] = $bbcode_parser->parse($award['issue_reason']);
               
                $award_issue_date = vbdate($this->registry->options['dateformat'], $award['issue_time'], true);
                $award_issue_time = vbdate($this->registry->options['timeformat'], $award['issue_time']);
               
                //- VB3 -// eval('$this->block_data[\'myawards\'] .= "' . fetch_template('awards_userawards_bit') . '";');
                                //- BEGIN VB4 -//
                                $templater = vB_Template::create('awards_userawards_bit');
                                        $templater->register('award', $award);
                                        $templater->register('award_issue_date', $award_issue_date);
                                        $templater->register('award_issue_time', $award_issue_time);
                                $this->block_data['myawards'] .= $templater->render();
                                //- END VB4 -//
            }
        }
    }
}

These are the problems I'm experiencing:

When clicking a username to see their profile the last Awards is the last tab but it doesn't have a tab like all the other tabs. It's just the text. After I've clicked the text the tab appears and stays there until I leave the page and return. Then it is gone again. But there isn't anything under the tabs at all.

When looking at the user info in the forum posts there are no awards in the userinfo next to the post or in the signature.

I'm no expert so some of the suggested fixes I've not been able to do as I can't find where to do it in the admincp.


* edit *

Stupid me tried to uninstall and then install it again. Now I keep getting an error:

Code:

Database error in vBulletin 4.1.8:

Invalid SQL:
ALTER TABLE award ADD award_allowrecommend TINYINT( 1 ) DEFAULT 1 NOT NULL,ADD award_pointvalue TINYINT( 3 ) DEFAULT 0 NOT NULL;

MySQL Error  : Duplicate column name 'award_allowrecommend'
Error Number  : 1060
Request Date  : Friday, January 6th 2012 @ 03:28:17 AM
Error Date    : Friday, January 6th 2012 @ 03:28:18 AM
Script        : http://***.***.***/***/plugin.php?do=productimport
Referrer      : http://***.***.***/***/plugin.php?do=productadd
IP Address    : ***.***.***.***
Username      : ***
Classname    : vB_Database
MySQL Version : 5.0.91mm-log


TiKu 01-06-2012 09:13 AM

Did you also do this?
Quote:

2- From(Plugin Manager)
Find (YAAS - Profile Tab) and disactive it.

squidsk 01-06-2012 03:54 PM

The uninstall and then install again would seem, to me anyways, to indicate that there's an error with the uninstall code that isn't removing all the tables from the database, which of course will cause problems when re-installing.

mIQe 01-06-2012 05:40 PM

Quote:

Originally Posted by TiKu (Post 2284393)
Did you also do this?

Yes, I did that too.

Quote:

Originally Posted by squidsk (Post 2284468)
The uninstall and then install again would seem, to me anyways, to indicate that there's an error with the uninstall code that isn't removing all the tables from the database, which of course will cause problems when re-installing.

Well I don't know what went wrong as the uninstall didn't do it's job but I've tried uploading a back up of all files and the SQL databases and it didn't help. So I'm at a loss as to what happened or how to get this working as it should.

mIQe 01-07-2012 08:00 PM

Anyone know how to manually remove these so I can install again?

Code:

Database error in vBulletin 4.1.8:

Invalid SQL:
ALTER TABLE award ADD award_allowrecommend TINYINT( 1 ) DEFAULT 1 NOT NULL,ADD award_pointvalue TINYINT( 3 ) DEFAULT 0 NOT NULL;

MySQL Error  : Duplicate column name 'award_allowrecommend'
Error Number  : 1060
Request Date  : Friday, January 6th 2012 @ 03:28:17 AM
Error Date    : Friday, January 6th 2012 @ 03:28:18 AM
Script        : http://***.***.***/***/plugin.php?do=productimport
Referrer      : http://***.***.***/***/plugin.php?do=productadd
IP Address    : ***.***.***.***
Username      : ***
Classname    : vB_Database
MySQL Version : 5.0.91mm-log

I managed to manually remove everything and install this again.

So back to the original problem

When someone requests awards this happens:
Code:

The following errors occurred with your submission

There's some error when sending your award request.
Please contact site's administrator for assistant.

Code:

The following errors occurred with your submission

The following users were not found: 1

Then there is the problem with the award tables and tab.

http://www.mattachine.net/images/yaas_problems.png

1. This is how the left side looked before the user 1 got an award (I know it isn't pretty but I haven't been able to get that double border at the bottom changed).
2. This is how the same location looks after they have got one award.
3. This is where that strange tab ends up when the Awards tab link is clicked.
4. This is how the tabs look when there is no reward given. It's just the row of tabs with no box or anything under it. Looks strange. Note that the Awards tab has been clicked in this picture and then an other tab thus creating a border and box with the right design. Not like the un-clicked one in image 7.
5. Here I've clicked the Awards tab after an award has been given out and the strange tab in image 2 have moved up under the normal row of tabs creating a gap. Clicking the other tabs does not make this happen, only the Awards tab.
6. Here the Awards tab has been clicked for a user with awards. The tab background and border is correct but the gap is present.
7. This is how the Awards tab look when a user's profile is first entered.

So what should I do to get this sorted?

mIQe 01-09-2012 05:55 PM

I've done the things below and I can't see if it changed anything. Certainly not any of the problems I'm having were fixed with this. I'm running 1.4.8. Can anyone please help me?

Quote:

Originally Posted by sadiq6210 (Post 2189701)
UPDATE FOR: 4.0.8 - 4.1.3
(TAKE BACKUP BEFORE ANY REPLACE)


1- Find the template (memberinfo_block_myawards) and replace it all
Code:

<div id="view-myawards" class="<vb:if condition="$selected_tab == 'myawards'">selected_view_section<vb:else />view_section</vb:if>">
<div>

<div class="blocksubhead subsectionhead userprof_headers userprof_headers_border">
{vb:rawphrase award_showcase} - {vb:raw $block_data[num]} {vb:rawphrase awards} <vb:if condition="$vboptions[aw_points]"> - {vb:raw $block_data[total_points]} {vb:rawphrase points}</vb:if>
</div>

<div class="blockbody">
<table width="100%">
<tr align="center">
        <vb:if condition="$vboptions[aw_showicon]"><th class="blocksubhead" nowrap="nowrap">{vb:rawphrase award_icon}</th></vb:if>
        <vb:if condition="$vboptions[aw_showimage]"><th class="blocksubhead" nowrap="nowrap">{vb:rawphrase award_image}</th></vb:if>
        <th class="blocksubhead" width="100%">{vb:rawphrase award_description}</th>
</tr>
{vb:raw $block_data[myawards]}
</table>
</div>
</div>
</div>



2- From(Plugin Manager)
Find (YAAS - Profile Tab) and disactive it.


3- From (plugin manager)
Find (YAAS in Member Profile - Profile) >> EDIT >> Replace it all
Code:

$blocklist['myawards'] = array(
        'class' => 'MyAwards',
        'title' => $vbphrase['my_awards'],
        'options' => array(
                'pagenumber' => $vbulletin->GPC['pagenumber']
        ),
        'hook_location' => 'profile_tabs_last',
        'wrap' => false
);

require_once('./global.php');
global $vbulletin; 
require_once(DIR . '/includes/class_bbcode.php');
$bbcode_parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());

class vB_ProfileBlock_MyAwards extends vB_ProfileBlock
{
    var $template_name = 'memberinfo_block_myawards';

    function confirm_empty_wrap()
    {
        return false;
    }

    function confirm_display()
    {
        return ($this->block_data['myawards'] != '');
    }

    function prepare_output($id = '', $options = array())
    {
        global $show, $vbphrase, $stylevar, $vbcollapse, $bgclass, $vbulletin;
       
        require_once(DIR . '/includes/class_bbcode.php');
        $bbcode_parser =& new vB_BbCodeParser($this->registry, fetch_tag_list());

               
                $result = $this->registry->db->query_read('
            SELECT
                *
            FROM
            ' . TABLE_PREFIX . 'award_user AS award_user
                LEFT JOIN ' . TABLE_PREFIX . 'award AS award USING (award_id)
            WHERE
                award_user.userid = ' . $this->profile->userinfo['userid'] . '
                AND award.award_active = "1"
            ORDER BY
              '.$vbulletin->options['aw_awardorder'].'
        ');
       
                                if (($vbulletin->options['aw_points']) AND ($this->profile->userinfo['userid']))
                                {
                                        $userpoints = $this->registry->db->query_read('
                                                SELECT a.*, au.*, SUM(award_pointvalue) AS TotalPoints
                                                FROM ' . TABLE_PREFIX . 'award a, ' . TABLE_PREFIX . 'award_user au
                                                WHERE (au.userid = '.$this->profile->userinfo['userid'].') AND (a.award_id=au.award_id) AND (a.award_active = "1")
                                                GROUP BY au.userid
                                        ');
                               
                                        while ($array = $this->registry->db->fetch_array($userpoints))
                                                {
                                                $this->block_data['total_points'] = $array['TotalPoints'];
                                                } 
                                }
               
        $num = $this->block_data['num'] = $this->registry->db->num_rows($result);
       
        $this->block_data['myawards'] = '';
       
        if ($num > 0)
        {
            // Display Awards
            while ($award = $this->registry->db->fetch_array($result))
            {
                exec_switch_bg();
               
                $award['award_desc'] = $bbcode_parser->parse($award['award_desc']);
                $award['issue_reason'] = $bbcode_parser->parse($award['issue_reason']);
               
                $award_issue_date = vbdate($this->registry->options['dateformat'], $award['issue_time'], true);
                $award_issue_time = vbdate($this->registry->options['timeformat'], $award['issue_time']);
               
                //- VB3 -// eval('$this->block_data[\'myawards\'] .= "' . fetch_template('awards_userawards_bit') . '";');
                                //- BEGIN VB4 -//
                                $templater = vB_Template::create('awards_userawards_bit');
                                        $templater->register('award', $award);
                                        $templater->register('award_issue_date', $award_issue_date);
                                        $templater->register('award_issue_time', $award_issue_time);
                                $this->block_data['myawards'] .= $templater->render();
                                //- END VB4 -//
            }
        }
    }
}


Good luck :)


mIQe 01-09-2012 06:04 PM

Apparently, the below code which was unnecessary if I put in the other code in my previous post solved the problem.

Quote:

Originally Posted by ffaat (Post 2254525)
I fixed the lack of tab styling in the user profile by the following (the classes needed updating):

Edit YAAS - Profile Tab to be:
PHP Code:

if ($selected_tab == 'myawards'

$template_hook['profile_tabs_last'] .= '<dd class="userprof_module"><a id="myawards-tab" href="'.$vbulletin->input->fetch_relpath().'#myawards" onclick="return tabViewPicker(this);">Awards</a></dd>'

else 

$template_hook['profile_tabs_last'] .= '<dd class="userprof_moduleinactive"><a id="
myawards-tab" href="'
.$vbulletin->input->fetch_relpath().'#myawards" onclick="return tabViewPicker(this);">Awards</a></dd>'


But I also still have a ghost award tab down at the bottom with a link of &tab=myawards#myawards

Could this be a remnant from upgrading from version 3 that didn't get cleaned out?

-Rob A>

So no more additional help needed about the tab situation. :D

mIQe 01-09-2012 09:23 PM

I've read through this thread for some info on how the Automation tool works but I can't find what I'm looking for.

So lets say I want usergroup 2 to get award 1 after 365 days.
There is a Task Name box: 1 Year Membership
There's a box where I can enter the award ID: 1
There's a Criteria menu where I can select "Days as Member"
Then there's the Criteria box. Use only numbers, but doesn't say how.
(I know I have to put in usergroup_id:2 there but how? And how do I combine that with the amount of days? Next question how do I make it so that when I add a 2 year award that it replaces the 1 year award and so on?)
Last there's an issued reason box which is quite basic: You've been a member for one year!

Mobo 01-10-2012 05:17 AM

mIQe,

It's possible that I missed it some place in the thread, but I think that the Automation function is not able to replace your 1 year with the 2 year. You would have to manually go back and remove all of the 1 year awards once someone hit the 2 year mark.

The Automation part has huge potential, but in it's current form is just missing some key elements to make it worth while using... I would love to use it on my site.

mIQe 01-10-2012 07:53 AM

Ok, I can live with doing that manually, but do you know how to input the values in to the Criteria box?

As it can only be numbers I have no idea how to input UsergroupID and DaysAsMember.

Mobo 01-10-2012 10:39 AM

Sorry I don't since I do not use the Auto feature.

Bluefin221 01-10-2012 01:21 PM

I have been messing around with the custom css and trying to change the way my awards are displayed, but I keep ruining it and its not looking the way I want it to.

Basically I want the awards to look like ranks on the postbit and not tiny awards, this is because I run a variety of tournaments and full teams are issued an award. I want the award system to also stack up the awards one after the other, again just like ranks do, each time i thought I cracked it it just messed up the lot.

Is it also possible to move the awards straight under the ranks?

Mobo 01-10-2012 03:48 PM

Are you talking about the built in ranks of vB? You should be able to move them just about anywhere in your postbit template, you just have to figure out the code needed to do it.

Bluefin221 01-10-2012 04:10 PM

Quote:

Originally Posted by Mobo (Post 2286051)
Are you talking about the built in ranks of vB? You should be able to move them just about anywhere in your postbit template, you just have to figure out the code needed to do it.

Yes, and yeah I know, problem is everytime I edit the CSS I mess it up so was hoping someone could help in that respect.

Mobo 01-10-2012 05:04 PM

I can only suggest that when you get one part looking the way you want it to, you copy the code over to a txt file and save it. That way if you mess it up as you continue to work on it, you can easily go back to the last known good point. For me, it was really just a trial and error process. I did not move my awards around though, so I can't really give you any direct answers.

mIQe 01-10-2012 06:37 PM

My forum logo is aligned center on all my pages except the awards page where it is aligned to the left. I use Firebug to locate the CSS for it and found this:

fieldset, img {
border: 0 none;
}

Did a search for that and it didn't yield any results.

Does anyone know where to change this?

Bluefin221 01-10-2012 08:00 PM

Ok I solved one of my problems, I just need to sort out two issues.

When I issue someone the same award it displays the same award again and again, given that on my site you play internationals and are given a medal each time you represent your country some guys can end up with 30/40 awards (cap for playing for country) so that is going to display that many times. I need the award to only show up once, but for the awards total to display correctly at the bottom. Is there an easy way to do this?

Second issue is how to display it under the ranks without wrecking the place.

Rekinek 01-11-2012 10:28 PM

Hi. I get this error:

Database error in vBulletin 4.1.4:

Invalid SQL:
ALTER TABLE award ADD award_allowrecommend TINYINT( 1 ) DEFAULT 1 NOT NULL,ADD award_pointvalue TINYINT( 3 ) DEFAULT 0 NOT NULL;

MySQL Error : Table 'pstrophy_ps3trophy.award' doesn't exist
Error Number : 1146

Any one can help me. Like step by step what to do. Thanks.

Toshinobu 01-12-2012 01:18 PM

Quote:

Originally Posted by Rekinek (Post 2286754)
Hi. I get this error:

Database error in vBulletin 4.1.4:

Invalid SQL:
ALTER TABLE award ADD award_allowrecommend TINYINT( 1 ) DEFAULT 1 NOT NULL,ADD award_pointvalue TINYINT( 3 ) DEFAULT 0 NOT NULL;

MySQL Error : Table 'pstrophy_ps3trophy.award' doesn't exist
Error Number : 1146

Any one can help me. Like step by step what to do. Thanks.

I am getting the same error with vbulletin 4.1.9 :(

*EDIT*
Fixed by changing all instances of "TYPE=MyISAM" in the XML file to "ENGINE=MyISAM"

mIQe 01-12-2012 09:13 PM

So no one knows how to center the logo on the awards.php page?

squidsk 01-13-2012 03:47 AM

Which logo?

mIQe 01-13-2012 07:19 AM

The forum logo in the header. It is centred in all the other forum pages but the awards.php one.

dej 01-13-2012 11:20 PM

Question with a screencast.

I was running this fine for months, then just upgraded to 4.1.10 and have 1 small issue.

Everything works great, except now the "Awards Tab" on Profiles is acting weird.

It's hard to explain, so here's a video snippet.

http://bit.ly/xeSpqg

This happens on all profiles, even when they have less tabs (example, no blog).

This is on the default vb theme.

Thanks!

P.S. Btw, I did search this thread and found that the "earlier fix" for tabs doesn't actually work =/

https://vborg.vbsupport.ru/showpost....&postcount=906

mIQe 01-13-2012 11:38 PM

I've even edit the pages themselves with no result.
The rest of my pages have the website logo centered on all of them except the Aeards page which has it aligned to the left.

I even edited the header template and added the parts marked in bold below but it had no effect at all.

Quote:

<div valign="center" id="header" class="floatcontainer doc_header">
<div valign="center"><a name="top" href="index.php" class="logo-image"><img align="middle" src="images/logo.png" alt="Home" /></a></div>

dej 01-14-2012 12:07 AM

Quote:

Originally Posted by mIQe (Post 2287471)
I've even edit the pages themselves with no result.
The rest of my pages have the website logo centered on all of them except the Aeards page which has it aligned to the left.

I even edited the header template and added the parts marked in bold below but it had no effect at all.

Did you use the above_body tag on that?

bremereric 01-14-2012 04:05 AM

I just installed this and am in the process of testing and learning. First question is what's the points system?
Can the Total Points text be removed?

sadiq6210 01-14-2012 04:19 AM

Quote:

Originally Posted by dej (Post 2287467)
Question with a screencast.

I was running this fine for months, then just upgraded to 4.1.10 and have 1 small issue.

Everything works great, except now the "Awards Tab" on Profiles is acting weird.

It's hard to explain, so here's a video snippet.

http://bit.ly/xeSpqg

This happens on all profiles, even when they have less tabs (example, no blog).

This is on the default vb theme.

Thanks!

P.S. Btw, I did search this thread and found that the "earlier fix" for tabs doesn't actually work =/

https://vborg.vbsupport.ru/showpost....&postcount=906

It is working in my forum
It is three steps & make sure to apply the second step
https://vborg.vbsupport.ru/showpost....&postcount=906

bremereric 01-14-2012 05:31 AM

1 Attachment(s)
It's late at night for me. I will try those three steps as in post 906 tomorrow and see if it works. I have two screenshots of it in action. All tabs in a users profile will display one at the bottom and then at the top left in the awards tab.

sadiq6210 01-14-2012 05:49 AM

Quote:

Originally Posted by bremereric (Post 2287548)
It's late at night for me. I will try those three steps as in post 906 tomorrow and see if it works. I have two screenshots of it in action. All tabs in a users profile will display one at the bottom and then at the top left in the awards tab.


This post will also solve it
https://vborg.vbsupport.ru/showpost....&postcount=742

1
2
3

;)

mIQe 01-14-2012 07:57 AM

Quote:

Originally Posted by dej (Post 2287484)
Did you use the above_body tag on that?

This is the raw code from the Header template. It works on all my pages in the forum, except the Awards.php page. Which leads me to think that it is not the Header template that has an error it is the Awards.php that is faulty.

Code:

<div class="above_body"> <!-- closing tag is in template navbar -->
<div valign="center" id="header" class="floatcontainer doc_header">
        <div valign="center"><a name="top" href="{vb:link forumhome}" class="logo-image"><img align="middle" src="{vb:stylevar titleimage}" alt="{vb:rawphrase x_powered_by_vbulletin, {vb:raw vboptions.bbtitle}}" /></a></div>
        <div id="toplinks" class="toplinks">
                <vb:if condition="$show['member']">
                        <ul class="isuser">
                                <li><a href="login.php?{vb:raw session.sessionurl}do=logout&amp;logouthash={vb:raw bbuserinfo.logouthash}" onclick="return log_out('{vb:rawphrase sure_you_want_to_log_out}')">{vb:rawphrase log_out}</a></li>
                                <vb:if condition="$show['registerbutton']">
                                <li><a href="register.php{vb:raw session.sessionurl_q}" rel="nofollow">{vb:rawphrase register}</a></li>
                                </vb:if>
                                <li><a href="usercp.php{vb:raw session.sessionurl_q}">{vb:rawphrase control_panel}</a></li>
                                <li><a href="{vb:link member, {vb:raw bbuserinfo}}">{vb:rawphrase your_profile}</a></li>
                                <vb:if condition="$notifications_total">
                                <li class="popupmenu notifications" id="notifications">
                                        <a class="popupctrl" href="usercp.php{vb:raw session.sessionurl_q}">{vb:rawphrase your_notifications}: <span class="notifications-number"><strong>{vb:raw notifications_total}</strong></span></a>
                                        <ul class="popupbody popuphover">
                                                {vb:raw notifications_menubits}
                                        </ul>
                                </li>
                                <vb:else />
                                <li class="popupmenu nonotifications" id="nonotifications">
                                        <a class="popupctrl" href="usercp.php{vb:raw session.sessionurl_q}">{vb:rawphrase your_notifications}</a>
                                        <ul class="popupbody popuphover">
                                                <li>{vb:rawphrase no_new_messages}</li>
                                                <li><a href="private.php{vb:raw session.sessionurl_q}">{vb:rawphrase inbox}</a></li>
                                        </ul>
                                </li>
                                </vb:if>
                                <li class="welcomelink">{vb:rawphrase welcome_x_link_y, {vb:raw bbuserinfo.username}, {vb:link member, {vb:raw bbuserinfo}}}</li>
                                <vb:if condition="$vboptions['enablefacebookconnect']">
                                        {vb:raw facebook_header}
                                </vb:if>
                        </ul>
            {vb:raw template_hook.header_userinfo}
                        <vb:comment><p>{vb:rawphrase last_visited_x_at_y, {vb:raw pmbox.lastvisitdate}, {vb:raw pmbox.lastvisittime}}</p></vb:comment>
                <vb:else />
                        <ul class="nouser">
                        <vb:if condition="$show['registerbutton']">
                                <li><a href="register.php{vb:raw session.sessionurl_q}" rel="nofollow">{vb:rawphrase register}</a></li>
                        </vb:if>
                                <li><a rel="help" href="faq.php{vb:raw session.sessionurl_q}">{vb:rawphrase help}</a></li>
                                <li>
                        <script type="text/javascript" src="clientscript/vbulletin_md5.js?v={vb:raw vboptions.simpleversion}"></script>
                        <form id="navbar_loginform" action="login.php?{vb:raw session.sessionurl}do=login" method="post" onsubmit="md5hash(vb_login_password, vb_login_md5password, vb_login_md5password_utf, {vb:raw show.nopasswordempty})">
                                <fieldset id="logindetails" class="logindetails">
                                        <div>
                                                <div>
                                        <img src="images/username.png" alt="Username" /><input type="text" class="textbox<vb:if condition="!$username"> default-value</vb:if>" name="vb_login_username" id="navbar_username" size="10" accesskey="u" tabindex="101" value="<vb:if condition="$username">{vb:raw username}<vb:else />{vb:rawphrase username}</vb:if>" />
                                        <img src="images/password.png" alt="Password" /><input type="password" class="textbox" tabindex="102" name="vb_login_password" id="navbar_password" size="10" />
                                        <input type="text" class="textbox default-value" tabindex="102" name="vb_login_password_hint" id="navbar_password_hint" size="10" value="{vb:rawphrase password}" style="display:none;" />
                                        <input type="submit" class="loginbutton" tabindex="104" value="{vb:rawphrase log_in}" title="{vb:rawphrase enter_username_to_login_or_register}" accesskey="s" />
                                                </div>
                                        </div>
                                </fieldset>
                                <div id="remember" class="remember">
                                        <label for="cb_cookieuser_navbar"><input type="checkbox" name="cookieuser" value="1" id="cb_cookieuser_navbar" class="cb_cookieuser_navbar" accesskey="c" tabindex="103" checked="checked" /> {vb:rawphrase remember_me}</label>
                                </div>

                                <input type="hidden" name="s" value="{vb:raw session.sessionhash}" />
                                <input type="hidden" name="securitytoken" value="{vb:raw bbuserinfo.securitytoken}" />
                                <input type="hidden" name="do" value="login" />
                                <input type="hidden" name="vb_login_md5password" />
                                <input type="hidden" name="vb_login_md5password_utf" />
                        </form>
                        <script type="text/javascript">
                        YAHOO.util.Dom.setStyle('navbar_password_hint', "display", "inline");
                        YAHOO.util.Dom.setStyle('navbar_password', "display", "none");
                        vB_XHTML_Ready.subscribe(function()
                        {
                        //
                                YAHOO.util.Event.on('navbar_username', "focus", navbar_username_focus);
                                YAHOO.util.Event.on('navbar_username', "blur", navbar_username_blur);
                                YAHOO.util.Event.on('navbar_password_hint', "focus", navbar_password_hint);
                                YAHOO.util.Event.on('navbar_password', "blur", navbar_password);
                        });
                       
                        function navbar_username_focus(e)
                        {
                        //
                                var textbox = YAHOO.util.Event.getTarget(e);
                                if (textbox.value == '<vb:if condition="$username">{vb:raw username}<vb:else />{vb:rawphrase username}</vb:if>')
                                {
                                //
                                        textbox.value='';
                                        textbox.style.color='{vb:stylevar toplinks_form_input.color}';
                                }
                        }

                        function navbar_username_blur(e)
                        {
                        //
                                var textbox = YAHOO.util.Event.getTarget(e);
                                if (textbox.value == '')
                                {
                                //
                                        textbox.value='<vb:if condition="$username">{vb:raw username}<vb:else />{vb:rawphrase username}</vb:if>';
                                        textbox.style.color='{vb:stylevar toplinks_form_input_defaultValue.color}';
                                }
                        }
                       
                        function navbar_password_hint(e)
                        {
                        //
                                var textbox = YAHOO.util.Event.getTarget(e);
                               
                                YAHOO.util.Dom.setStyle('navbar_password_hint', "display", "none");
                                YAHOO.util.Dom.setStyle('navbar_password', "display", "inline");
                                YAHOO.util.Dom.get('navbar_password').focus();
                        }

                        function navbar_password(e)
                        {
                        //
                                var textbox = YAHOO.util.Event.getTarget(e);
                               
                                if (textbox.value == '')
                                {
                                        YAHOO.util.Dom.setStyle('navbar_password_hint', "display", "inline");
                                        YAHOO.util.Dom.setStyle('navbar_password', "display", "none");
                                }
                        }
                        </script>
                                </li>
                                <vb:if condition="$vboptions['enablefacebookconnect']">
                                        {vb:raw facebook_header}
                                </vb:if>
                        </ul>
                </vb:if>
        </div>
        <div class="ad_global_header">
                {vb:raw ad_location.global_header1}
                {vb:raw ad_location.global_header2}
        </div>
        <hr />
</div>


mIQe 01-16-2012 04:43 PM

So who handles the support with this mod in this thread?


All times are GMT. The time now is 04:02 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.03275 seconds
  • Memory Usage 2,013KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (9)bbcode_code_printable
  • (1)bbcode_php_printable
  • (15)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete