Hi terya,
There is already a text “Manage Subscriptions”. The only option to change this text is editing /wpdiscuz/comment-form/form.php file. The V symbol is the ∨ code, you can change it in this script
<span
class="wc_manage_subscribtions" <?php if (class_exists('Prompt_Comment_Form_Handling') && $wc_core->wc_options_serialized->wc_use_postmatic_for_comment_notification) echo 'style="display:none"' ?>><?php echo $wc_core->wc_options_serialized->wc_phrases['wc_manage_subscribtions']; ?> ∨</span>
Thread Starter
terya
(@terya)
It worked great, Thank you! Could you please tell me how to get the same result when you use the reply function?
Thanks again
For the replies, please open /wpdiscuz/comment-form/tpl-comment.php file. The V symbol is the ∨ code, you can change it in this script:
if ($this->wc_options_serialized->wc_show_hide_comment_checkbox || $this->wc_options_serialized->wc_show_hide_reply_checkbox || $this->wc_options_serialized->wc_show_hide_all_reply_checkbox) {
$output_form .= '<span class="wc_manage_subscribtions" ' . ((class_exists('Prompt_Comment_Form_Handling') && $this->wc_options_serialized->wc_use_postmatic_for_comment_notification) ? 'style="display:none"' : '') . '>' . $this->wc_options_serialized->wc_phrases['wc_manage_subscribtions'] . ' ∨</span>';
}
Thread Starter
terya
(@terya)
gVectors Team
Thank you very much