Viewing 1 replies (of 1 total)
  • Plugin Author Marcus (aka @msykes)

    (@netweblogic)

    yes, but you’d need to use some PHP to remove the link item from the data being returned. e.g. pasting something like this to your functions.php file of your theme

    function my_fc_filter( $events ){
      foreach($events as $key => $event){
        unset($events[$key]['url']);
      }
      return $events;
    }
    add_filter('wpfc_events','my_fc_filter');
Viewing 1 replies (of 1 total)
  • The topic ‘Disable link – just Mouse over’ is closed to new replies.