MyBB Community Forums

Full Version: [1.4.x/1.6.x] Thank You/Like System v1.5 (Updated: 10/26/2011)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I dont understand... have you got some errors? Do you use any other thank you like plugins?
1: Does it support MyAlert ?

I mean to ask when anybody will like or thank to any post will author receive any alert notification ?
(2015-01-25, 12:36 PM)mujeebdgk Wrote: [ -> ]Does it support MyAlert ?

No, we are waiting for MyAlerts v2, then we can add a support.

2) just open lang file and change the text
when i install that plugin and i want to comment a thread it shown pop up error..
I cannot reproduce it... fresh clean install mybb 1.8 without plugins?
@ Eldenroot , Please Guide how to replace thanks or like button images to Font Awesome , thanks in advance .
Just replace images in /image folder
(2015-01-25, 05:27 PM)Eldenroot Wrote: [ -> ]Just replace images in /image folder

i want to replace it with font awesome css icon , not with an image 
(2015-01-25, 06:05 PM)mujeebdgk Wrote: [ -> ]
(2015-01-25, 05:27 PM)Eldenroot Wrote: [ -> ]Just replace images in /image folder

i want to replace it with font awesome css icon , not with an image 

If your theme always use "font-awesome" icons for postbit buttons then go to ACP > Templates & Styles > Themes > YOUR-THEME and open g33k_thankyoulike.css to edit.

Search for:
a.add_tyl_button span{
background-image: url(images/thankyoulike/thx_add.png);
}

a.del_tyl_button span{
background-image: url(images/thankyoulike/thx_del.png);
}

Replace this part with:
a.add_tyl_button span:before{
content: "\f087";
}

a.del_tyl_button span:before{
content: "\f088";
}

This will add "font-awesome" thumbs icons in TYL-Buttons.

[attachment=33607] [attachment=33608]
a.add_tyl_button span:before{
font-family:FontAwesome;
  content: "\f087";
}

above mention are my code , and result is 

[attachment=33646]

for removing search icon i have to remove this code mention below :

<span id="tyl_i{$post['pid']}">{$lang->add_tyl}</span>