vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   Major Additions - vS-Interactive Profiles (https://vborg.vbsupport.ru/showthread.php?t=150028)

TheBlackPoet 07-28-2007 03:50 AM

the product is still not installing via admin cp --- hmmm

Guest210212002 07-28-2007 05:54 PM

Any issues with this and vBSEO?

Xorn 07-28-2007 07:22 PM

for some reason the .xml file would not install into my server. all directions followed precisely but the .xml fil would not install

keeps saying

Importing Style, Please Wait...

[:]

Invalid File Specified

cheat-master30 07-28-2007 07:50 PM

Quote:

Originally Posted by invert_nexus (Post 1303588)
Works great for me.
I've changed it a bit so that the original profile perches at the top of the page just like the old style with the comments and friends list in a single column below. A lot better looking in my opinion.

I have a couple of questions though if anyone might possibly be able to help.

1. Does the new VBulletin (3.6.8) break this mod or vice versa?

2. I'd like to enable the private profile option but only for the comments section. Frankly, I can't fathom why anyone would want the whole profile to be blanked out.

I tried moving the if page is private function further down the page, but this didn't work. In fact, I even tried removing it altogether and, oddly, there was no change in the page... I've deduced from this that the culprit is not to be found in the template, but rather in the php and it's been a long time since I played with php and even then I was only just wetting my fingers. I'm a stubborn cuss and will undoubtably continue digging at it and might well find the answer myself, given time. But it would be nice if someone could lend a hand.

Of course, this might all be moot if the new update breaks the mod.

I've also pondered the practicality of using a system that is not being actively supported to keep up with updates as I can imagine some interesting discussions taking place in profile comments that might well end up getting lost at some point in time when the mod does break. I'm sure that there would be a way to salvage some functionality should this occur, but I wonder if modifying the forum in this manner is just staying one step ahead of oblivion?

I guess some people like to live on the edge though, eh?

Although I don't know the rest, vBulletin 3.6.8 does NOT break this. If you want proof, I am running it on my site which is running version 3.6.8, and I even upgraded with the mod active.

djdonx 07-28-2007 09:58 PM

I don't know coding but am into the mods. I did all the uploads, template changes and XML installation and there were no code errors picked up. I then tested it out and on the profile view, contact us info is seperate from the rest of the page, and the contact us title is grouped with the forum info title. Screenie below:
http://img213.imageshack.us/img213/2...problemfo6.png

djdonx 07-29-2007 08:46 PM

Can anyone help me on improving the template look please? :(

invert_nexus 07-29-2007 10:50 PM

You messed up when editing the template.

It's a bit hard to describe exactly where you messed up, but it's fairly obvious that the culprit lies somewhere in the two steps after the part where you're supposed to replace:
Code:

<tr>       
        <td class="tcat" width="50%">$vbphrase[forum_info]</td>
        <td class="tcat" width="50%">$vbphrase[contact_info]</td>
</tr>

With:
Code:

<tr>       
        <td class="tcat">$vbphrase[forum_info]</td>
</tr>

tr stands for table row and everything within those tags exists on one row of a table. In the original profile, forum info and contact info are shown on the same row. In the new profile comments template, they are placed in a column. (Personally, I don't care for that... I like the comments being placed in a single column at the end of the original profile.)

Anyway.
I don't know how you screwed up, exactly, but at the end of the second step after that step you'll find:
Code:

<tr>
        <td class="tcat">$vbphrase[contact_info]</td>
</tr>

Somehow, you have placed this in your template above all the code for the forum info. Also, the screenshot doesn't exactly show the full page, I can see Additional Information peeking out from the bottom, so it looks like you have no code for the contact info at all.

So, you're going to have to look carefully and figure out what you did wrong.


Edit:
Oh. Wait. Derp.
Your screenshot does show the contact info. But, it's in the same table row as the forum info. So, you obviously missed a step or something. But, I don't see how you could have missed a step and still ended up with the contact info in the column right after forum info. Seems to me like the contact info title should vanish completely if you missed those steps following the original bit of code replacement in that section...

Why don't you post the relevant portion of the template if you can't figure it out yourself?

invert_nexus 07-29-2007 11:00 PM

Basically, here's where you had to screw up:

FIND
Code:

        <td class="panelsurround" align="center">
        <div class="panel">
                <div align="$stylevar[left]">
               
                        <div class="fieldset">
                                <table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
                                <if condition="!$show['contactlinks']">

ADD ABOVE:
Code:

</tr>
<if condition="!$show['popups'] AND $show['iprof_rating']">
<tr>
        <td class="tcat"><a name="goto_memberrating"></a>$vbphrase[iprof_rate_this_member]</td>
</tr>
<tr align="center">

        <td class="panelsurround" align="center">
        <div class="panel">
                <div align="center">
       
                <!-- rate this member -->
                <form action="member.php" method="post">
                <div class="smallfont">
                        <input type="hidden" name="s" value="$session[dbsessionhash]" />
                        <input type="hidden" name="u" value="$userinfo[userid]" />
                        <input type="hidden" name="do" value="rate" />
                        <select name="vote" onchange="this.form.submit()" style="width:175px">
                                <optgroup label="$vbphrase[choose_a_rating]">
                                        <option value="5" $voteselected[5]>5 : $vbphrase[excellent]</option>
                                        <option value="4" $voteselected[4]>4 : $vbphrase[good]</option>
                                        <option value="3" $voteselected[3]>3 : $vbphrase[average]</option>
                                        <option value="2" $voteselected[2]>2 : $vbphrase[bad]</option>
                                        <option value="1" $voteselected[1]>1 : $vbphrase[terrible]</option>
                                </optgroup>
                        </select>$gobutton
                </div>
                </form>
                <!-- / rate this member -->
               
                </div>
        </div>               
        </td>
</tr>
</if>
<tr>
        <td class="tcat">$vbphrase[contact_info]</td>
</tr>
<tr align="center">

Although, you obviously screwed up in the other step since you still have the contact info title present... that shouldn't be there since you were supposed to have deleted it earlier only to be replaced in this step which you apparently missed.

That's why the checkmarks are there. Makes it easy to keep track of what you've done and what you haven't done.

Selene 07-30-2007 03:31 AM

most of my member pages are fine . but for some members the right column is messed up like this:
can someone tell me what I have done wrong.

Selene 07-30-2007 03:34 AM

I really hope someone helps me, because I asked this same question a month ago and no one has hepled me so far :( the annoying thing is that for most member profile pages its looking fine, its just for some memebrs its causing that mess.


All times are GMT. The time now is 09:32 AM.

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.01707 seconds
  • Memory Usage 1,756KB
  • 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
  • (5)bbcode_code_printable
  • (1)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
  • (10)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