Viewing 4 replies - 1 through 4 (of 4 total)
  • What theme are you using? Where did you download it from?
    Always include as much information as possible

    Thread Starter soundsticks

    (@soundsticks)

    I’m creating my own theme and I would like to disable the link only.

    Then you will need to edit the relevant template file(s) in your custom theme.

    Thread Starter soundsticks

    (@soundsticks)

    I found a solution

    add_filter( 'bp_activity_permalink', 'bpdev_custom_rtemove_perlink_from_timesince',10,2 );
        	function bpdev_custom_rtemove_perlink_from_timesince( $time_since, $activity ){
            	$action =  $activity->action ;
            	$time_since = '<span class="time-since">' . bp_core_time_since( $activity->date_recorded ) . '</span>';
            	$content = sprintf( '%1$s %2$s', $action,  $time_since );
            return $content;
        }
Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘How to disable date link on posts?’ is closed to new replies.