我正在使用AddThis社交媒体小部件,它在图标右侧为我提供了一个图标,后面是文本描述符,如下图所示。
描述符文本覆盖了我页面上的内容,我想将其删除。我编写了以下JQuery脚本来删除'文本。它适用于some pages但不适用other pages。如何解决有问题的页面以找出导致错误的原因并更正错误?
public function updatepassword(Request $request)
{
$user =new User;
if(!$request->has('password')){
return redirect()->withStatus('password field is blank');
}
$user->where('email', '=' ,Auth::user()->email)
->update([ 'password' => Hash::make($request->has('password'))]);
return Redirect::to('user_profile')->withStatus('Password has been successfully updated.');
}
由于
答案 0 :(得分:0)
我一般不知道AddThis,但为什么不添加
.addthis_follow_label{
display:none;
}
到你的主css文件? 这应该可以解决你的问题。