Remove link in members.php

Discussion in 'Customization & add-ons' started by presscoders, Dec 20, 2010.

  1. presscoders

    presscoders New Member

    Joined:
    Aug 3, 2009
    Messages:
    23
    Does anyone know how to remove the link: "Advertise our website to your friends and earn money"? I have the affiliate program turned on, this is intentional, I jus don't want the above link displayed in the members area.

    I don't want to hack the files, I want to remove the link via aMember hooks. I already have the following defined to ADD a link in the members area:

    Code:
    setup_plugin_hook("get_member_links", "custom_links");
    function custom_links($user){
    	return array("mylink.php" => 'New Members Area Link');
    }
    
    This has been added to site.inc.php. How can I remove links in a similar fashion? Thanks.
  2. alexander

    alexander Administrator Staff Member

    Joined:
    Jan 8, 2003
    Messages:
    6,279
    There is no hooks that can remove links.
    Why you need to remove this? How users will apply for affiliate program ?
  3. presscoders

    presscoders New Member

    Joined:
    Aug 3, 2009
    Messages:
    23
    I only wanted one user in particular, not everyone. So, I didn't want it viewable to all on the member.php page.
  4. alexander

    alexander Administrator Staff Member

    Joined:
    Jan 8, 2003
    Messages:
    6,279
    Set Affiliate signup type to "Admin only can add affiliates", link will not be availabe in member's area.

Share This Page