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)
-   -   Profile Enhancements - Extra Profile Fields Page (https://vborg.vbsupport.ru/showthread.php?t=123253)

Wired1 02-28-2008 01:16 PM

Quote:

Originally Posted by RokuDaMerlin (Post 1452547)
i have installed this and i see not the link in my profil :/

http://www.rdm-designportal.com Correct?

That site uses Version 3.7.0 Beta 5 as of this posting, and this mod is clearly NOT for 3.7.

PC-Junky 03-02-2008 01:03 PM

For the Moment..... installed in my Testforum. Works fine. :)

NeuroLancer 03-03-2008 12:32 PM

Quote:

Originally Posted by Wired1 (Post 1452886)
http://www.rdm-designportal.com Correct?

That site uses Version 3.7.0 Beta 5 as of this posting, and this mod is clearly NOT for 3.7.

This looks great, just the sort of thing I need. Will this mod be updated for 3.7?

Wired1 03-03-2008 03:56 PM

Yep.

Hugo Firth 03-05-2008 08:56 PM

When I am selecting the display page for another profile field, extra options doesnt show up - even though I have followed instructions to the letter up to now - I use vB 3.6.8 - any ideas ? :) thanks

Wired1 03-06-2008 08:12 PM

Quote:

Originally Posted by Hugo Firth (Post 1457922)
When I am selecting the display page for another profile field, extra options doesnt show up - even though I have followed instructions to the letter up to now - I use vB 3.6.8 - any ideas ? :) thanks

You followed this to the letter, correct? If so, this should have done it. If not, please PM me the code around these edits. I'd guess that when you edited functions_user.php, it wasn't saved, or uploaded perhaps?

Quote:

The following code adds an extra area to:

User Profile Fields -> User Profile Field Manager

When a new profile field is added, in the Display Page area, select Options: Extra Options (or whatever you placed in the extra_options vB Phrase)


// *** open admincp/profilefield.php

find

"$vbphrase[options]: $vbphrase[other]"

replace with

"$vbphrase[options]: $vbphrase[other]",
"$vbphrase[options]: $vbphrase[extra_options]"

find

5 => "$vbphrase[options]: $vbphrase[other]",
add under

6 => "$vbphrase[options]: $vbphrase[extra_options]",

// *** save and close admincp/profilefield.php




// *** open includes/functions_user.php



find

case 5:
$customfields['other'] .= $tempcustom;
break;
add under

case 6:
$customfields['extra'] .= $tempcustom;
break;


// *** save and close includes/functions_user.php

t55 03-09-2008 07:41 PM

Just thought I should mention this, the link does not appear in the UserCP if you have this addon installed: GTUserCP - Enhanced USERCP Interface

I disabled the above addon and this finally appeared in the UserCP.

Wired1 03-09-2008 09:23 PM

Quote:

Originally Posted by t55 (Post 1460969)
Just thought I should mention this, the link does not appear in the UserCP if you have this addon installed: GTUserCP - Enhanced USERCP Interface

Makes sense considering that the GTUserCP mod replaces the USERCP_SHELL.

Took a quick look at it, and I THINK (NOTE: UNTESTED, TRY AT YOUR OWN RISK, preferably on a test bed first) you can make 2 quick edits to add the Extra Options link.

In GTPM_USERCP_SHELL Find:
Code:

    <tr>
      <td class="$navclass[options]" nowrap="nowrap"><a class="smallfont" href="profile.php?$session[sessionurl]do=editoptions">$vbphrase[edit_options]</a></td>
    </tr>

after it paste:
Code:

    <tr>
      <td class="$navclass[extra]" nowrap="nowrap"><a class="smallfont" href="profile.php?$session[sessionurl]do=extra">$vbphrase[edit_extra_options]</a></td>
    </tr>


and in gtpm_usercp_navbit Find:
Code:

        <tr><td class="vbmenu_option" align="$stylevar[left]"><a href="profile.php?$session[sessionurl]do=editoptions">$vbphrase[edit_options]</a></td></tr>
after it paste:
Code:

        <tr><td class="vbmenu_option" align="$stylevar[left]"><a href="profile.php?$session[sessionurl]do=extra">$vbphrase[edit_extra_options]</a></td></tr>


Again, note: UNTESTED! Not my fault if you run it on a live server and blow it up!

Jase2 03-25-2008 02:46 PM

Hi Wired1,

Any chance you can release a 3.7 one anytime soon, since it's in RC stage? It would be greatly appreciated.

Regards Jason :)

DieselTruck 03-25-2008 07:56 PM

Talk about Nerve racking..:(

I've went over my edits to my .php files. There are all correct. Template Edits are correct..

I see the Edit Options in my Edit profile. But, I can't see to add any options to edit. Under USER PROFILE FIELD MANAGER:

I don't see the "Extra Options" Line anywhere on there...

I know this has been asked alot... Any Ideas?

R@V3N 03-27-2008 03:14 PM

Uninstalled. No longer needed since 3.7 already has this feature.

Jase2 03-28-2008 12:30 AM

Quote:

Originally Posted by R@V3N (Post 1475940)
Uninstalled. No longer needed since 3.7 already has this feature.

Are you sure? I haven't seen such an option.

Regards Jason :)

nightbloom 04-05-2008 07:58 PM

I completely uninstalled this with the upgrade to 3.7.0 until it can be updated and I have the strangest issue.

It is all uninstalled... yet the fields still show in the registration. I cant figure out how they got there or how to get rid of them. I DLed the install and tried to reverse it step by step, but nope.

http://silkroadaddiction.com/forum2

MissKalunji 04-05-2008 09:48 PM

U have to delete de profile fields yourself. That's why

nightbloom 04-05-2008 11:41 PM

Well.. Would they be somewhere other than User Profile Fields Manager?

ugh.. this is so annoying. Ive tried everything.

MissKalunji 04-06-2008 12:02 AM

that happens that they are deleted but still there like hidden that happened to be once... :-/ so i dont really know what ot tell you i had to go in the database to delete them

Wired1 04-06-2008 03:31 AM

Quote:

Originally Posted by Jase2 (Post 1474197)
Hi Wired1,

Any chance you can release a 3.7 one anytime soon, since it's in RC stage? It would be greatly appreciated.

Regards Jason :)

Only when the full release is out and I have fully tested it on that will I release a new version. I only release something with support that I can fully stand behind.



Quote:

Originally Posted by DieselTruck (Post 1474453)
Talk about Nerve racking..:(

I've went over my edits to my .php files. There are all correct. Template Edits are correct..

I see the Edit Options in my Edit profile. But, I can't see to add any options to edit. Under USER PROFILE FIELD MANAGER:

I don't see the "Extra Options" Line anywhere on there...

I know this has been asked alot... Any Ideas?

What version of vB are you using?



Quote:

Originally Posted by R@V3N (Post 1475940)
Uninstalled. No longer needed since 3.7 already has this feature.

Quote:

Originally Posted by Jase2 (Post 1476343)
Are you sure? I haven't seen such an option.

Only thing I can think of is the option in the ADDON where you can add additional profile fields to the Member Page. vB 3.7.0 has a LOT of changes to the Member Page.



Quote:

Originally Posted by nightbloom (Post 1483860)
I completely uninstalled this with the upgrade to 3.7.0 until it can be updated and I have the strangest issue.

It is all uninstalled... yet the fields still show in the registration. I cant figure out how they got there or how to get rid of them. I DLed the install and tried to reverse it step by step, but nope.

Quote:

Originally Posted by MissKalunji (Post 1483920)
U have to delete de profile fields yourself. That's why

Quote:

Originally Posted by nightbloom (Post 1483990)
Well.. Would they be somewhere other than User Profile Fields Manager?

ugh.. this is so annoying. Ive tried everything.

Quote:

Originally Posted by MissKalunji (Post 1484001)
that happens that they are deleted but still there like hidden that happened to be once... :-/ so i dont really know what ot tell you i had to go in the database to delete them

My addon has NOTHING to do with profile fields being in the registration. Go to the AdminCP -> User Profile Fields -> User Profile Field Manager, then edit a field. Go down to Field Required. One of the options in the dropdown is "No, but display at registration". Change that to just "No", and it'll remove it from the registration. Keep in mind my mod is just a manipulation of the DATA in the custom profile fields you create, doesn't actually change the profile field options.

nightbloom 04-06-2008 05:13 AM

Alright, Ill ask at vB.com and see what they can do to help me. Thanks for your response.

viper357 04-06-2008 06:44 AM

Quote:

Originally Posted by Wired1 (Post 1461024)
Makes sense considering that the GTUserCP mod replaces the USERCP_SHELL.

Took a quick look at it, and I THINK (NOTE: UNTESTED, TRY AT YOUR OWN RISK, preferably on a test bed first) you can make 2 quick edits to add the Extra Options link.

In GTPM_USERCP_SHELL Find:
Code:

    <tr>
      <td class="$navclass[options]" nowrap="nowrap"><a class="smallfont" href="profile.php?$session[sessionurl]do=editoptions">$vbphrase[edit_options]</a></td>
    </tr>

after it paste:
Code:

    <tr>
      <td class="$navclass[extra]" nowrap="nowrap"><a class="smallfont" href="profile.php?$session[sessionurl]do=extra">$vbphrase[edit_extra_options]</a></td>
    </tr>


and in gtpm_usercp_navbit Find:
Code:

        <tr><td class="vbmenu_option" align="$stylevar[left]"><a href="profile.php?$session[sessionurl]do=editoptions">$vbphrase[edit_options]</a></td></tr>
after it paste:
Code:

        <tr><td class="vbmenu_option" align="$stylevar[left]"><a href="profile.php?$session[sessionurl]do=extra">$vbphrase[edit_extra_options]</a></td></tr>


Again, note: UNTESTED! Not my fault if you run it on a live server and blow it up!

Works like a charm, now I can finally install your hack, thanks Wired1 :up::up::up:

Wired1 04-06-2008 07:49 AM

Quote:

Originally Posted by nightbloom (Post 1484122)
Alright, Ill ask at vB.com and see what they can do to help me. Thanks for your response.

Did you try what I mentioned in the AdminCP? That should remove the field from the registration page.



Quote:

Originally Posted by viper357 (Post 1484143)
Works like a charm, now I can finally install your hack, thanks Wired1 :up::up::up:

kewl beans :)

NeuroLancer 04-12-2008 04:29 PM

I have tested this in 3.7, and its working 100% good :up:

thanks so much Wired1, this mod is just what I needed, you really helped me alot with this.

Edit: I have tested this back to front, its working great as far as I can see. I really dig how easy this is to customise, ive managed to get 2 extra options pages functioning perfectly

Wired1 04-12-2008 06:44 PM

Quote:

Originally Posted by NeuroLancer (Post 1489153)
I have tested this in 3.7, and its working 100% good :up:

thanks so much Wired1, this mod is just what I needed, you really helped me alot with this.

Edit: I have tested this back to front, its working great as far as I can see. I really dig how easy this is to customise, ive managed to get 2 extra options pages functioning perfectly

Glad to hear! Got a link to the forum?

DieselTruck 04-15-2008 09:37 PM

Quote:

Originally Posted by Wired1 (Post 1484091)


What version of vB are you using?

I was running 3.6.8 when I attempted to install this.

Jase2 04-24-2008 10:50 AM

Good to hear it is running on version 3.7.0. However, I currently use this hack: https://vborg.vbsupport.ru/showthrea...t=system+specs

Will see if that can join together to work with this.

Wired1 04-24-2008 04:00 PM

DieselTruck: Go over the instructions again, must've missed something.



Quote:

Originally Posted by Jase2 (Post 1498034)
Good to hear it is running on version 3.7.0. However, I currently use this hack: https://vborg.vbsupport.ru/showthrea...t=system+specs

Will see if that can join together to work with this.

Or... you can use the add-on for this plugin, which does the SAME THING. My dropdown plugin also came out months before that one, and my plugins for profile modifications are supported :)

imports 04-25-2008 03:03 AM

im having the same problem as you this is my fourth time checking my work now and still no dice.:(

Quote:

Originally Posted by DieselTruck (Post 1474453)
Talk about Nerve racking..:(

I've went over my edits to my .php files. There are all correct. Template Edits are correct..

I see the Edit Options in my Edit profile. But, I can't see to add any options to edit. Under USER PROFILE FIELD MANAGER:

I don't see the "Extra Options" Line anywhere on there...

I know this has been asked alot... Any Ideas?


Wired1 04-25-2008 05:01 AM

... because it's not under USER PROFILE FIELDS MANAGER, directly that is. Edit the PROFILE FIELD. Go to the bottom, under DISPLAY PAGE. What's the last thing on that dropdown?

Jase2 04-25-2008 08:34 PM

I have it working fine with the other hack. Thanks for this wired. :)

Wired1 04-25-2008 11:39 PM

NOTE!!!! Change for 3.6.10!!!

Technical explanation on CSRF changes

Because of this change, one line needs to be added to the PAGE template. You can either edit the template with the instructions below, or you can download the attached product-wired1_epfp(3.6.10 ONLY).xml, RENAME it to product-wired1_epfp.xml, and then install normally. As per any vB upgrade with this mod, when upgrading to vB 3.6.10 you'll still have to do the manual edits that are listed in the instructions again.

vB AdminCP -> Styles & Templates -> Style Manager -> (Select Style) -> page

Find:
Code:

<form action="profile.php" method="post">
<input type="hidden" name="s" value="$session[dbsessionhash]" />
<input type="hidden" name="do" value="updateextra" />

Under it add:
Code:

<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />

dsexton1055 04-26-2008 03:08 AM

Quote:

Originally Posted by Wired1 (Post 1499395)
NOTE!!!! Change for 3.6.10!!!

Technical explanation on CSRF changes

Because of this change, one line needs to be added to the PAGE template. You can either edit the template with the instructions below, or you can download the attached product-wired1_epfp(3.6.10 ONLY).xml, RENAME it to product-wired1_epfp.xml, and then install normally. As per any vB upgrade with this mod, when upgrading to vB 3.6.10 you'll still have to do the manual edits that are listed in the instructions again.

vB AdminCP -> Styles & Templates -> Style Manager -> (Select Style) -> page

Find:
Code:

<form action="profile.php" method="post">
<input type="hidden" name="s" value="$session[dbsessionhash]" />
<input type="hidden" name="do" value="updateextra" />

Under it add:
Code:

<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />

been beating my head on the wall for this one.

checked the default and my main style on my forum. there is no "Page" template to edit. clarify please?

Wired1 04-26-2008 03:15 AM

Example of Page Template Location:
Attachment 79262

The other attachment is just an example of the extra display option.

dsexton1055 04-26-2008 04:54 AM

3.6.10

im not seeing this.

Wired1 04-26-2008 05:50 AM

Just to cover our bases, you installed the product, right?

Jase2 04-26-2008 09:04 AM

The "Rest Fields" button doesn't seem to work with 3.7. Hmmm....

nighthalk 04-26-2008 12:13 PM

Thanks for the upgrade.

dsexton1055 04-26-2008 01:58 PM

Quote:

Originally Posted by Wired1 (Post 1499543)
Just to cover our bases, you installed the product, right?

yep. and it works.

Wired1 04-26-2008 03:26 PM

Quote:

Originally Posted by Jase2 (Post 1499620)
The "Rest Fields" button doesn't seem to work with 3.7. Hmmm....

No idea what you're talking about.


Quote:

Originally Posted by dsexton1055 (Post 1499778)
yep. and it works.

Glad to hear.

RedeemedWarrior 04-26-2008 03:47 PM

thanks works great :D

Jase2 04-26-2008 09:01 PM

On the system specs page "Edit System specs" -- you have at the bottom "Save Changes" and "Reset Fields". The "Reset Fields" doesn't remove all content you've added in 3.7.

Wired1 04-27-2008 01:17 AM

Quote:

Originally Posted by Jase2 (Post 1500109)
On the system specs page "Edit System specs" -- you have at the bottom "Save Changes" and "Reset Fields". The "Reset Fields" doesn't remove all content you've added in 3.7.

Not tested in 3.7.0


All times are GMT. The time now is 02:25 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.01603 seconds
  • Memory Usage 1,858KB
  • 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
  • (12)bbcode_code_printable
  • (26)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (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