I found the solution myself.
Modify the following file:
manage-summary.php (comment-mail/src/includes/templates/type-s/site/sub-actions)
Line 282 – 285:
<?php if ($_sub_post && $_sub_post_type_label) : ?>
<?php echo sprintf(__('%1$s ID <a href="%2$s">#<code>%3$s</code></a> <a href="%4$s">%5$s</a>', 'comment-mail'),
esc_html($_sub_post_type_label), esc_attr($_sub_post_url),
esc_html($_sub_post->ID), esc_attr($_sub_post_comments_url),
esc_html($_sub_post_title_clip)); ?>
<?php else : // Post no longer exists for whatever reason; display post ID only in this case. ?>
<?php echo sprintf(__('Post ID #<code>%1$s</code>', 'comment-mail'), esc_html($_sub->post_id)); ?>
<?php endif; ?>
and modify it as follows….
<?php if ($_sub_post) : ?>
<?php echo sprintf(__('%1$s ID <a href="%2$s">#<code>%3$s</code></a> <a href="%4$s">%5$s</a>', 'comment-mail'),
esc_html($_sub_post_type_label), esc_attr($_sub_post_url),
esc_html($_sub_post->ID), esc_attr($_sub_post_comments_url),
esc_html($_sub_post_title_clip)); ?>
<?php endif; ?>
-
This reply was modified 4 years, 10 months ago by Dirk.
-
This reply was modified 4 years, 10 months ago by Dirk.
-
This reply was modified 4 years, 10 months ago by Dirk.
-
This reply was modified 4 years, 10 months ago by Dirk.