back to search results

Heey guys, things are going verywell after a few years with Dolphine. thou I am staying with 6.1.6 for a while yet

but does anyone know how I gat add a back to search resuld button to my sprofile pages or make the clicable links in the profile resuls open in a new window

 

My problem is when a new profile is viewed by a member, they have to go back and start all over again with a new search.

I want them to be able to have the option to go back to the otiginal search results after viewing the profile

 

ANYONE?????

Quote · 6 Mar 2010

members nickname/thumb links will open in a new window on browse/search and index page

open file inc/design.inc.php

find function get_member_thumbnail( $ID, $float, $bDrawMargin=true )

and this lines

$ret .= '<div class="thumbnail_block" style="float:' . $float . '; '.$sMarginsRCAddon.' ">';
$ret .= "<a href=\"".getProfileLink($ID)."\">";


change last line to
$ret .= "<a href=\"".getProfileLink($ID)."\" target=\"_blank\">";

==================

open file inc/members.inc.php

1)
and find this line

// Template customizations

// profile Nick/Age/Sex etc.
$nick = '<a href="' . getProfileLink( $p_arr['ID'] ) . '">' . $p_arr['NickName'] . '</a>';


change last line to

$nick = '<a href="' . getProfileLink( $p_arr['ID'] ) . '" target="_blank">' . $p_arr['NickName'] . '</a>';


2)
and this line
// ------------ [end] template variables --------------
if ($aCoupleInfo) {
// profile Nick/Age/Sex etc.
$nick2 = '<a href="' . getProfileLink( $aCoupleInfo['ID'] ) . '">' . $aCoupleInfo['NickName'] . '</a>';


change last line to

$nick2 = '<a href="' . getProfileLink( $aCoupleInfo['ID'] ) . '" target="_blank">' . $aCoupleInfo['NickName'] . '</a>';

===================

open file browse.php

find this lines

$cont .= get_member_thumbnail($arr['ID'], 'none', true ) . '<div class="browse_nick"><a href="' . getProfileLink($arr['ID']) . '">' . $arr['NickName'] . '</a></div></div>';


change line to

$cont .= get_member_thumbnail($arr['ID'], 'none', true ) . '<div class="browse_nick"><a href="' . getProfileLink($arr['ID']) . '" target="_blank">' . $arr['NickName'] . '</a></div></div>';

Quote · 7 Mar 2010

Thanks OKWEb you have been the one source of information one this site that offers total responces and great information. for the record I would gladly pay you to be a agewnt or on a per item  or anything,  free is good and I sm sll for free since I make nothing on my site but man I I can not see how you do it

 

If you ever want to work out a deal or let me pay you something just contact me or add me as a friend

 

Thank you and thank god for you

Quote · 11 Mar 2010
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.