MyBB Community Forums

Full Version: Thank You/Like System v3.4.5 + MyAlerts and Tapatalk support
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
(2015-04-16, 05:28 AM)tzameti13 Wrote: [ -> ]List of likers are not appearing. Here is the postbit_classic code


code

Again, do you use a custom theme or the MyBB default one? I added notes into first post what and where should be added into templates, please check this Smile
I am using a custom template.
Please check the first post - all changes are listen here
Thanks.

Can you tell me which file to edit to put a custom css for the following line -

The following 1 user Likes xxxxxx's post:

By the way great plugin.
(2015-04-16, 07:43 AM)tzameti13 Wrote: [ -> ]Thanks.

Can you tell me which file to edit to put a custom css for the following line -

The following 1 user Likes xxxxxx's post:

By the way great plugin.

Here you are: https://github.com/Cu8eR/thankyou-like-p...e.php#L339
thank youuuuuu!!
The button shows up on our post bit but when you click it, nothing happens. The loading image just sits there and spins. What do I do?
JS conflict... check header include
(2015-04-17, 03:45 PM)Eldenroot Wrote: [ -> ]JS conflict... check header include

In the showthread template, we have the JS installed above the end head as instructed.

<script type="text/javascript" src="{$mybb->settings['bburl']}/jscripts/thankyoulike.js?ver=120"></script>

<script type="text/javascript">
<!--
    var tylEnabled = "{$mybb->settings['g33k_thankyoulike_enabled']}";
    var tylCollapsible = "{$mybb->settings['g33k_thankyoulike_collapsible']}";
    var tylUser = "{$mybb->user['uid']}";
-->
</script>
</head>

What type of conflict should we be looking for?
Try this:

<script type="text/javascript" src="{$mybb->settings['bburl']}/jscripts/thankyoulike.js"></script>
<script type="text/javascript">
<!--
	var tylEnabled = "{$mybb->settings['g33k_thankyoulike_enabled']}";
	var tylCollapsible = "{$mybb->settings['g33k_thankyoulike_collapsible']}";
	var tylUser = "{$mybb->user['uid']}";
-->
</script>