[FILLED] Facebook style from vb org

quickening

New Member
post 51:
Code:
$profileblock =& $blockfactory->fetch('ProfileFields');
$profileblock->build_field_data();

foreach ($profileblock->locations AS $profilecategoryid => $location)
{
if ($location)
{
$blocklist["profile_cat$profilecategoryid"] = array(
'class' => 'ProfileFields',
'title' => $vbphrase["category{$profilecategoryid}_title"],
'options' => array('category' => $profilecategoryid),
'hook_location' => $location
);
}
}

Post 52:
Code:
$vbulletin->GPC['simple'] = ($prepared['myprofile'] ? $vbulletin->GPC['simple'] : false);

$profileblock =& $blockfactory->fetch('ProfileFields');
$profileblock->build_field_data($vbulletin->GPC['simple']);

foreach ($profileblock->locations AS $profilecategoryid => $location)
{
	if ($location)
	{
		$blocklist["profile_cat$profilecategoryid"] = array(
			'class'         => 'ProfileFields',
			'title'         => $vbphrase["category{$profilecategoryid}_title"],
			'options'       => array(
				'category' => $profilecategoryid,
				'simple'   => $vbulletin->GPC['simple'],
			),
			'hook_location' => $location
		);
	}
}
 

HAiDER

New Member
Hi there
ii thank all who helped

i got a query

i have arabic language on the forum

and when i use the language the style flippes the other way round, and there is gaps
you can see the pic
btw the seperation is between two templates the header and the ad_header_end

how can i make them touch each other just like if i use the english language also pic attached?
 
Top