• Resolved ntb0493

    (@ntb0493)


    Hi,

    Is there any way to change the word/title “Website” in the author box?

    Just looking to add a link to the property page, ie. LoopNet and this seems to be my only option without putting it in the description field.

Viewing 1 replies (of 1 total)
  • Plugin Author WPSight

    (@wpsight)

    Hello,

    the Website Field is a default Field of the WordPress user Profile. Here is some information which might help you.

    As an alternative you can simply add your own custom profile field with the following code snippet:

    add_filter( 'wpsight_profile_contact_fields', 'custom_profile_contact_fields' );
    
    function custom_profile_contact_fields( $fields ) {
    
      $fields['loopnet']['label'] = __( 'Loopnet', 'wpcasa' );
      return $fields;
    
    }

    See here how you can add snippets to your site.

    All the best,
    Joe [WPCasa]

Viewing 1 replies (of 1 total)
  • The topic ‘author box’ is closed to new replies.