Redundant update button and associated text on categories page.
-
There is a duplicate button and text coming up when you go to posts->categories->select-any-category. I see that this is coming from the code in the TermEdit.php file (lines 354-379). Could you please take a look at this as soon as possible?
`<div class=”form-wrap”>
<p>
<?php
// if _wp_original_http_referer is not passed, redirect will be from universal exceptions edit form to type-specific exceptions edit form
if (!$referer = wp_get_original_referer()) {
$referer = wp_get_referer();
}$url = esc_url_raw(
add_query_arg(
‘_wp_original_http_referer’,
urlencode($referer),
“term.php?taxonomy=$taxonomy&tag_ID={$tag->term_id}&pp_universal=1”
)
);printf(
esc_html__(‘Displayed permissions are those assigned for the “%1$s” type. You can also %2$sdefine universal %3$s permissions which apply to all related post types%4$s.’, ‘press-permit-core’),
esc_html($type_obj->labels->singular_name),
““,
esc_html($tx_obj->labels->singular_name),
‘‘
);
?>
</p>
</div>
- The topic ‘Redundant update button and associated text on categories page.’ is closed to new replies.