Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Andrea Tarantini

    (@dontdream)

    I think so. Please make sure that your site complies with the stated plugin requirements. Version 3.4.1 requires BuddyPress 1.7 or higher, which in turn requires WordPress 3.5 or higher.

    blueoceans2002

    (@blueoceans2002yahoocom)

    Hi Andrea,
    I have made an update in my multisite and my pluggin setting is missing. I have the latest wordpess, buddypress and the updated BP profile search. Help highly appreciated. Thanks in advance
    Cheers
    Satish

    blueoceans2002

    (@blueoceans2002yahoocom)

    Hi,
    Network Activating the plugin works. The plugin setting can be seen @ /Network>users> Profile Search. But the problem here is the profile fields are in the sub sites and it does not pick them up to the network. If I activate it site wise, still the plugin doesent show up in users of subsite. Please help. Thanks
    Cheers
    Satish

    Plugin Author Andrea Tarantini

    (@dontdream)

    Hi Satish,

    I’m afraid you found a plugin bug, I’m trying to fix it soon.

    blueoceans2002

    (@blueoceans2002yahoocom)

    Hi Andrea,
    Thanks for the great plugin. I was able to figure out the issue. What I did was
    Deleted the line which choose multisite and create a section and page in Network/User.php . The lines that I deleted are

    add_action (is_multisite ()? 'network_admin_menu': 'admin_menu', 'bps_add_pages', 20);
    function bps_add_pages ()
    {
    	add_submenu_page ('users.php', 'Profile Search Setup', 'Profile Search', 'manage_options', 'bp-profile-search', 'bps_admin');
    	return true;
    }
    
    add_filter (is_multisite ()? 'network_admin_plugin_action_links': 'plugin_action_links', 'bps_row_meta', 10, 2);
    function bps_row_meta ($links, $file)
    {
    	if ($file == plugin_basename (__FILE__))
    	{
    		$url = is_multisite ()? network_admin_url ('users.php'): admin_url ('users.php');
    		$settings_link = '<a> 'bp-profile-search'), $url). '">'. __('Settings', 'buddypress'). '</a>';
    		array_unshift ($links, $settings_link);
    	}
    	return $links;
    }

    [Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]

    Now When activated in individual sites with buddypress being activated, you will find Buddypress Profile search in respective sites. This solution worked for me when I set
    Multiblog is true. Hope this helps someone.

    Plugin Author Andrea Tarantini

    (@dontdream)

    Please try the latest BP Profile search, it should fix the issue.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Plugin Settings Missing’ is closed to new replies.