【发布时间】:2020-05-18 18:35:05
【问题描述】:
我想删除/隐藏
“您的个人资料照片将用于您的个人资料和整个 地点。如果有与您的帐户电子邮件相关联的 Gravatar,我们 将使用它,或者您可以从计算机上传图像。”
来自 BuddyPress 个人资料照片上传部分的消息。
有人可以帮忙吗?
【问题讨论】:
标签: wordpress wordpress-theming buddypress gravatar
我想删除/隐藏
“您的个人资料照片将用于您的个人资料和整个 地点。如果有与您的帐户电子邮件相关联的 Gravatar,我们 将使用它,或者您可以从计算机上传图像。”
来自 BuddyPress 个人资料照片上传部分的消息。
有人可以帮忙吗?
【问题讨论】:
标签: wordpress wordpress-theming buddypress gravatar
转到:src/public_html/wp-content/themes/(Theme Name)/buddypress/members/single/profile/change-avatar.php 并删除以下代码。可能是 25 到 29 行
<figure class="callout-blockquote light">
<blockquote>
<p><?php _e( 'Your profile photo will be used on your profile and throughout the site. If there is a <a href="http://gravatar.com">Gravatar</a> associated with your account email we will use that, or you can upload an image from your computer.', 'buddypress' ); ?></p>
</blockquote>
</figure>
【讨论】:
<p><?php _e( 'Your avatar will be used on your profile and throughout the site. If there is a <a href="http://gravatar.com">Gravatar</a> associated with your account email we will use that, or you can upload an image from your computer.', 'buddypress'); ?></p>
位于 buddypress\bp-themes\bp-default\members\single\profile\change-avatar.php
【讨论】: