CÁCH 1: CHỈNH SỬA THỦ CÔNG ♥
- Tìm các link ảnh có dạng .bp.blogspot.com
- Thay thế bằng lh4.googleusercontent hoặc lh4.ggpht
CÁCH 2: THÊM JQUERY ♥
- Vào Mẫu > Chỉnh sửa HTML
- Tìm đến thẻ </body>
- Thêm đoạn code sau và trước nó:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script type='text/javascript'>
//<![CDATA[
$("body img").each(function () {$(this).attr("src", $(this).attr("src").replace(/\/[0-9]+(\.bp\.blogspot)?/, "/lh4.googleusercontent")) });
//]]>
</script>
- Bạn có thể thay lh4.googleusercontent bằng lh4.ggpht nếu muốn
- Nếu template đã có thư viện jquery thì các bạn có thể bỏ đoạn script đầu đi
- Lưu mẫu và quaylại trang blog để kiểm tra link ảnh nhé !
CÁCH 3: SỬ DỤNG JS ♥
- Vào Mẫu > Chỉnh sửa HTML
- Tìm đến thẻ </body>
- Thêm đoạn code sau và trước nó:
<script type='text/javascript'>
//<![CDATA[
var images = document.getElementsByTagName("img");
for(var i=0;i<images.length;i++) {
images[i].src = images[i].src.replace(/[0-9]+.bp.blogspot.com/,"lh4.googleusercontent.com");
}
//]]>
</script>
- Bạn có thể thay lh4.googleusercontent bằng lh4.ggpht nếu muốn.
CHÚ Ý : Chỉ áp dụng cho Custum Domain
0 comments:
Post a Comment