MyBB Community Forums

Full Version: My Advertisements plugin not work help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
My Advertisements plugin activate successfully but not showing in tools and maintenance what to do guyz please help me. my board version is MyBB 1.6.7 please help me guyz
Open plugin file and find the following code;
function myadvertisements_admin_tools_menu(&$sub_menu)
{
	global $lang;
	
	$lang->load('myadvertisements');
	$sub_menu[] = array('id' => 'myadvertisements', 'title' => $lang->myadvertisements_index, 'link' => 'index.php?module=tools-myadvertisements');
}

function myadvertisements_admin_tools_action_handler(&$actions)
{
	$actions['myadvertisements'] = array('active' => 'myadvertisements', 'file' => 'myadvertisements');
}
and Change it into;
function myadvertisements_admin_tools_menu(&$sub_menu)
{
	global $lang;
	
	$lang->load('myadvertisements');
	$sub_menu[] = array('id' => 'myadvertisements', 'title' => $lang->myadvertisements_index, 'link' => 'index.php?module=tools-myadvertisements');
	return $sub_menu;
}

function myadvertisements_admin_tools_action_handler(&$actions)
{
	$actions['myadvertisements'] = array('active' => 'myadvertisements', 'file' => 'myadvertisements');
	return $actions;
}
thanx man trying.....anyway thanx

not showing bro what to do ?
Where its not showing? In Tools and Maintenance or in forums ?

Additionally, you've to post your support thread in author's site.
In Tools and Maintenance
You've to make sure that whether you're allowed to manage this tool?

AdminCP > Users and Groups > Admin Permissions >
ohh there is problem now showing ohhh thnks man Big Grin