Hi, im making a new vertical menu and almost done but having probs with the profile edit option i have added, it keeps bringing up 'profile not specified' or 'profile not available'
the url link for the 'edit profile' option i have used were " mywebsitehere.com/pedit.php" that didnt work so then tried "mywebsitehere.com/pedit.php?ID={memberID}" but this also isn't working :(
i have checked out the forums and thats where i found the pedit.php?ID={memberID} from but cant seem to find anything i can get to work :(
Any help would be great.
Cheers
Charlie
You Creature!! |
You can try this one, depending on how and where you have made the code
$memberID = getLoggedId();
<a href="{$site['url']}pedit.php?ID={$memberID}">Edit Profile Info</a>
|
You can try this one, depending on how and where you have made the code
$memberID = getLoggedId();
<a href="{$site['url']}pedit.php?ID={$memberID}">Edit Profile Info</a>
Thanks okweb, it's just for a "profile edit" link on a simple vertical menu i have made in a html block
Cheers,
Charlie
You Creature!! |
<p><a href="/pedit.php"><img src="/bt0_2.gif" border="0" alt="Edit Profile" /></a></p> thats the way i went about it in the html block but wouldn't bring up profile edit page :(
Cheers
Charlie
You Creature!! |
will not work in an HTML block, you need to add this to a PHP block
post your code here and on which page you will add this code to and I can look at it
|
will not work in an HTML block, you need to add this to a PHP block
post your code here and on which page you will add this code to and I can look at it
cheers for that, i added it to a php block :)
now while im on url links, what would the url be for the tab "new topic" in forums? as i want to make a link for that too :)
Cheers
Charlie
You Creature!! |
will not work in an HTML block, you need to add this to a PHP block
post your code here and on which page you will add this code to and I can look at it
cheers for that, i added it to a php block :)
now while im on url links, what would the url be for the tab "new topic" in forums? as i want to make a link for that too :)
Cheers
Charlie
That varies depending on which forum. The link would look like this.
forum/#action=goto&new_topic=General-discussions
Replace General-discussions with the name of the forum to post a new topic in. Hyphen(-) instead of space.
https://www.deanbassett.com |
Cheers again Deano:)
will not work in an HTML block, you need to add this to a PHP block
post your code here and on which page you will add this code to and I can look at it
cheers for that, i added it to a php block :)
now while im on url links, what would the url be for the tab "new topic" in forums? as i want to make a link for that too :)
Cheers
Charlie
That varies depending on which forum. The link would look like this.
forum/#action=goto&new_topic=General-discussions
Replace General-discussions with the name of the forum to post a new topic in. Hyphen(-) instead of space.
You Creature!! |