View Full Version : End-User Options - Favorite Smilies
Darwinist
08-04-2006, 10:00 PM
This add-on will allow members to create their own favorite smilies list, which can be useful on boards with lots of smilies. If a member creates a list, it will be displayed in place of the normal smilie box.
Maximum number of smilies is based on the 'Smilie Menu Total Smilies' option in 'Message Posting Interface Options'.
Features:
Edit List in UserCP
Javascript Enforced Limit
Ignore Certain Smilie Categories
Allow/Disallow usage based on usergroup
Admin CP HelpInstallation Overview:
Files to Modify: 1
Templates to Modify: 1
Files to Upload: 2
Product:
-Plug-Ins: 6
-Templates: 5
-vB Options: 4
-Phrases: 29
NOTICE: If you're upgrading to version 1.0.4 from a previous version, please read the 'Upgrade.htm' file. Otherwise, read the 'Install_3.6.0.htm' for vBulletin 3.6.0 installations or 'Install_3.6.1.htm' file for vBulletin 3.6.1 or newer installations for the installation procedure.
Version History:
1.0.5 - Fixed vulnerability.
1.0.4 - Added smilie selection count under smilie selection menu. One less template to edit.
1.0.3 - Added option to hide smilie titles on the selection menu (for boards with a very large number of smilies). Icon link to edit the list on the editor toolbar. Admin CP help text. Improved integration with the UserCP. One less file to edit. Fixed some text that wasn't phrased.
1.0.2 - Added option to limit who can use the Favorite Smilies listed based on usergroup permissions. Changed smilie selection page to include category names. Fixed Missing 'More' link in Smilie dropdown menu.
1.0.1 - Fixed problem with missing table prefixes.
1.0.0 - Initial release.
A version for 3.5 can be found Here (https://vborg.vbsupport.ru/showthread.php?p=1045645#post1045645)
A version for 3.7 can be found Here (https://vborg.vbsupport.ru/showthread.php?t=192184)
vphost
08-05-2006, 02:26 PM
Ah, interesting, thank you :)
Kaleem
08-05-2006, 03:07 PM
good
"Install"
CoreIssue
08-05-2006, 03:32 PM
"Sweeeet!
Been wanting this for a long time!
Thanks!
Wordplay
08-05-2006, 03:37 PM
nice, thanks for creating this.
Snake
08-05-2006, 04:32 PM
Thanks I love it!
Sooner95
08-05-2006, 11:10 PM
this should be put into VB default.. nice job!
Sooner95
08-06-2006, 02:15 AM
crap, guessign this wont work in 3.5.5 tho... no prob..
Sooner95
08-06-2006, 02:51 AM
welp, ok.. pretty pissed here.
Hack didnt work..ok NP. Yes, when i remove the steps, now my BBS is hosed. I understand that in the title it days 3.6, but would be nice if it Stated that it worked in ONLY 3.6
error
Fatal error: Call to undefined function: query_read_slave() in /home/bull/public_html/forums/includes/functions_editor.php on line 432
for those that care. I am continuing to find a fix for this, as my board is crap now.
webwench
08-06-2006, 03:34 AM
When I try to install this, I get a database error:
Database error in vBulletin 3.6.0:
Invalid SQL:
ALTER TABLE user ADD favsmilies TEXT NOT NULL;
MySQL Error : Table 'ogfadmin_newdb.user' doesn't exist
Error Number : 1146
Date : Sunday, August 6th 2006 @ 04:33:17 AM
Script : http://www.oregongreenfree.com/forum/admincp/plugin.php?do=productimport
Referrer : http://www.oregongreenfree.com/forum/admincp/plugin.php?do=productadd
IP Address : 24.21.214.27
Username : liane
Classname : vb_database
The table of course should be vb_user, but I don't know what to change to make this install. Can anyone help?
43082448
08-06-2006, 04:05 AM
$vbulletin->db->query("ALTER TABLE user ADD favsmilies TEXT NOT NULL");
==>
$vbulletin->db->query("ALTER TABLE " . TABLE_PREFIX . "user ADD favsmilies TEXT NOT NULL");
Darwinist
08-06-2006, 05:20 AM
welp, ok.. pretty pissed here.
Hack didnt work..ok NP. Yes, when i remove the steps, now my BBS is hosed. I understand that in the title it days 3.6, but would be nice if it Stated that it worked in ONLY 3.6
When the description states 3.6, best bet is to assume it's for 3.6 only unless told otherwise. You could've asked...
error
for those that care. I am continuing to find a fix for this, as my board is crap now.
You didn't revert the code in 'functions_editor.php'. Change 'query_read_slave' to 'query_read'.
I've posted a version that will work in 3.5 Here (https://vborg.vbsupport.ru/showthread.php?p=1045645#post1045645).
When I try to install this, I get a database error:
The table of course should be vb_user, but I don't know what to change to make this install. Can anyone help?
Install code fixed.
webwench
08-06-2006, 11:14 AM
$vbulletin->db->query("ALTER TABLE user ADD favsmilies TEXT NOT NULL");
==>
$vbulletin->db->query("ALTER TABLE " . TABLE_PREFIX . "user ADD favsmilies TEXT NOT NULL");
And if so, could you please explain? Thanks
Darwinist
08-06-2006, 02:08 PM
And if so, could you please explain? Thanks
Just download the updated files and reinstall... in contains the fixes.
kvnband
08-06-2006, 04:09 PM
Weird. I installed but when I try to set my favorite smilies, I get this error
Database error in vBulletin 3.6.0:
Invalid SQL:
UPDATE user SET favsmilies='212' WHERE userid='1';
MySQL Error : Unknown column 'favsmilies' in 'field list'
Error Number : 1054
Date : Sunday, August 6th 2006 @ 12:07:17 PM
Script : http://www.secondwivesclub.com/portal/forum/misc.php
Referrer : http://www.secondwivesclub.com/portal/forum/misc.php?do=editfavsmilies
IP Address : 70.173.100.38
Username : admin
Classname : vB_Database
I checked in phpmyadmin and the column does indeed exist. Any idea what the deal is?
kvnband
08-06-2006, 04:40 PM
You have problems in the product.
Line 143 should be changed from
$db->query("UPDATE user SET favsmilies='$favsmilies' WHERE userid='" . $vbulletin->userinfo['userid'] . "'");
to
$db->query("UPDATE " . TABLE_PREFIX . "user SET favsmilies='$favsmilies' WHERE userid='" . $vbulletin->userinfo['userid'] . "'");
and line 126 should be changed from
$db->query("UPDATE user SET favsmilies='' WHERE userid='" . $vbulletin->userinfo['userid'] . "'");
to
$db->query("UPDATE " . TABLE_PREFIX . "user SET favsmilies='' WHERE userid='" . $vbulletin->userinfo['userid'] . "'");
Kevin
Darwinist
08-06-2006, 05:47 PM
I fixed it this morning... download the script again and reinstall.
webwench
08-06-2006, 06:32 PM
Thanks very much!
GoNz00
08-08-2006, 06:20 AM
i think i found a bug related, i removed this and deleted bitfield_user_smiley.xml from the xml folder, now i can save usergroups without the following error.
is this related to your product ?
Database error in vBulletin 3.6.0:
Invalid SQL:
UPDATE vb3_usergroup SET
### UPDATE QUERY GENERATED BY fetch_query_sql() ###
`title` = '(COPPA) Users Awaiting Moderation',
`description` = '',
`usertitle` = '',
`opentag` = '',
`closetag` = '',
`passwordexpires` = '0',
`passwordhistory` = '0',
`forumpermissions` = '131072',
`attachlimit` = '0',
`pmquota` = '50',
`pmpermissions` = '0',
`pmsendmax` = '0',
`calendarpermissions` = '32',
`wolpermissions` = '0',
`adminpermissions` = '0',
`genericpermissions` = '0',
`genericoptions` = '48',
`profilepicmaxwidth` = '100',
`profilepicmaxheight` = '100',
`profilepicmaxsize` = '65535',
`avatarmaxwidth` = '80',
`avatarmaxheight` = '80',
`avatarmaxsize` = '20000',
`signaturepermissions` = '139263',
`sigpicmaxwidth` = '500',
`sigpicmaxheight` = '100',
`sigpicmaxsize` = '20000',
`sigmaxrawchars` = '4000',
`sigmaxchars` = '2000',
`sigmaxlines` = '0',
`sigmaxsizebbcode` = '7',
`sigmaximages` = '30',
`usmilie_permissions` = '0'
WHERE usergroupid=4;
MySQL Error : Unknown column 'usmilie_permissions' in 'field list'
Error Number : 1054
Date : Tuesday, August 8th 2006 @ 09:08:37 AM
Script : http://www.clandesertrats.co.uk/foru....php?do=update
Referrer : http://www.clandesertrats.co.uk/foru...&usergroupid=4
IP Address : 62.253.128.14
Username : GoNz0
Classname : vb_database
i tried your updated version as well to no joy :(
GoNz00
08-09-2006, 09:15 AM
bump?
Darwinist
08-10-2006, 01:26 AM
No, this is not related to this add-on. Sounds like it's a problem with the 'Custom User Smileys (https://vborg.vbsupport.ru/showthread.php?t=115993)' product you installed.
GoNz00
08-10-2006, 06:07 AM
ahh, its no longer installed, it was removed with the upgrade, it must have left that file after the uninstall then.. great news as they have all been crying for there fav smilies back :D
thanks for clearing it up for me, i shall reinstall after work :)
acegames
08-11-2006, 10:20 AM
installed and working
Aislinn
08-14-2006, 06:15 PM
Ok can you please tell what misc.php file do we edit for step 2. Where is it located as there are quite a few misc.php files.
Never mind, after checking three misc.php files I found it.
And Im having an error now that its all installed.. I get the error when clicking the popup smilie box on the quick reply and in the user cp when trying clicking the link for the edit favorite smilies. But I dont get it when clicking the smilies on my signature box in the user cp or in the advanced reply.
Parse error: parse error, unexpected ',' in /usr/local/psa/home/vhosts/sitename/httpdocs/forum/misc.php on line 77
Heres the section of that file:
'getsmilies' => array(
'smiliepopup',
'smiliepopup_category',
'smiliepopup_row',
'smiliepopup_smilie',
'smiliepopup_straggler'
),
############### FAVORITE SMILIES #################
'editfavsmilies' => array(
'favoritesmilies',
'favoritesmilies_bit',
'favoritesmilies_bit_blank',
'favoritesmilies_row'
),
############### /FAVORITE SMILIES ################
),
'showsmilies' => array(
'help_smilies',
'help_smilies_smilie',
'help_smilies_category',
)
);
$actiontemplates['none'] =& $actiontemplates['showsmilies'];
// allows proper template caching for the default action (showsmilies) if no valid action is specified
if (!empty($_REQUEST['do']) AND !isset($actiontemplates["$_REQUEST[do]"]))
{
$actiontemplates["$_REQUEST[do]"] =& $actiontemplates['showsmilies'];
}
Darwinist
08-14-2006, 08:06 PM
You have two closing parentheses... delete the line that I highlighted below:
'getsmilies' => array(
'smiliepopup',
'smiliepopup_category',
'smiliepopup_row',
'smiliepopup_smilie',
'smiliepopup_straggler'
),
############### FAVORITE SMILIES #################
'editfavsmilies' => array(
'favoritesmilies',
'favoritesmilies_bit',
'favoritesmilies_bit_blank',
'favoritesmilies_row'
),
############### /FAVORITE SMILIES ################
),
'showsmilies' => array(
'help_smilies',
'help_smilies_smilie',
'help_smilies_category',
)
);
$actiontemplates['none'] =& $actiontemplates['showsmilies'];
// allows proper template caching for the default action (showsmilies) if no valid action is specified
if (!empty($_REQUEST['do']) AND !isset($actiontemplates["$_REQUEST[do]"]))
{
$actiontemplates["$_REQUEST[do]"] =& $actiontemplates['showsmilies'];
}
Aislinn
08-15-2006, 01:25 AM
thank you. Works perfectly.
But I noticed the favorite smilies only show up in the tool box in the advanced post and the advanced post drop down, not in the quick reply drop down. Anyway to put them into the quick reply drop down too?
Muellmann
08-15-2006, 12:26 PM
Now my Users can choose them favorite Smilies.
I have so many Smilies in my Board, that everyone had to search
long time to find his favorite ones. Thankies :D
ComputerVitals
08-16-2006, 01:18 AM
Wonder if you can help me
I Installed Catagory smilies. And would also like the Favorite smiley
Heres my problem
In template 'editor_smiliebox', find:
title="<phrase 1="$vboptions[smtotal]" 2="$totalsmilies">$vbphrase[showing_x_smilies_of_y_total]</phrase>"
I dont have that. This is my line
<td class="smallfont" colspan="$vboptions[smcolumns]">[<a href="#" onclick="vB_Editor['$editorid'].open_smilie_window(430, smiliewindow_y); return false" title="<phrase 1="$vboptions[smtotal]" 2="$totalsmilies">$vbphrase[showing_x_smilies_of_y_total]</phrase>">$vbphrase[more]</a>]</td>
How would I change it to make them both work? This is what I did and it doesn't show the favorites
<td class="smallfont" colspan="$vboptions[smcolumns]">[<a href="#" onclick="vB_Editor['$editorid'].open_smilie_window(430, smiliewindow_y); return false" title="<if condition="$vbulletin->userinfo['favsmilies']"><phrase 1="$favsmtotal" 2="$totalsmilies">$vbphrase[showing_x_favsmilies_of_y_total]</phrase><else /><phrase 1="$vboptions[smtotal]" 2="$totalsmilies">$vbphrase[showing_x_smilies_of_y_total]</phrase></if>">$vbphrase[more]</a>]</td>
Any way for this to work for me?
Never mind.... Guess it would work if I were to upload the 2 edited files.. Hehe...
Well atleast you can use the above if somone has Catagory Smilies installed.
Works great!!
jw00dy
08-17-2006, 01:45 AM
Great hack, thank you!!!
*installed*
jwaany
08-17-2006, 01:17 PM
installed and working
thank you
Maagic
08-22-2006, 02:18 PM
Installed and working however the [More] link in the smilies window does not appear now. Is there any way to get that back?
Darwinist
08-22-2006, 03:31 PM
Installed and working however the [More] link in the smilies window does not appear now. Is there any way to get that back?
Sounds like you skipped the second part of step #1, editting the 'includes/functions_editor.php' file. It's a change to the '$show['moresmilieslink']' variable.
Maagic
08-22-2006, 11:36 PM
Sounds like you skipped the second part of step #1, editting the 'includes/functions_editor.php' file. It's a change to the '$show['moresmilieslink']' variable.
No I did edit that file, but I may have done it incorrectly. Me go check now... TY!
(cool mod btw... my users love it!)
Maagic
08-23-2006, 12:39 AM
Hmm I re-checked my functions_editor.php file and I DID make the proper edit, yet I still don't see the [More] part. This is in Firefox btw... I checked it in IE and it shows [] just like in Firefox but I can click on the ] and get the smilies window. Weird.
Darwinist
08-23-2006, 03:50 AM
Double check that you have the changes to the 'editor_smiliebox' template exactly as they should be.
If you don't mind, can you post a link to your forum so I can check out the problem?
Maagic
08-23-2006, 12:59 PM
Double check that you have the changes to the 'editor_smiliebox' template exactly as they should be.
Ahh that was it... I left out one of these
<
Apparently they're quite necessary to the code :)
Darwinist
08-23-2006, 01:25 PM
:up:
scoles15
08-27-2006, 01:05 AM
Ok, I'm lost. Everything is installed and everything has been double checked.
It all seems to work. Only one small problem. The smilie box is not the ones chosen. It is my sites' standard set of smilies. I've checked the DB and the new fields are there with my selected smilies in the correct field. So I am at a loss.
The only Thing I've noticed is that in the code and templates, whether or not the custom set is shown, depends on whether or not the value of $vbulletin->userinfo['favsmilies'] is set. I can't find in the code where it is set to the value in the DB and when I display the value in a template, it is null.
scoles15
08-27-2006, 01:46 PM
Ok, I'm lost. Everything is installed and everything has been double checked.
NEVER MIND! I re-did all the manual edits and now all is working. Wonderful hack!!!
But I still don't understand How it works. Where does value of $vbulletin->userinfo['favsmilies'] get set. As far as I know simply adding a new field to the user table does not get the value automatically loaded into the userinfo array
Darwinist
08-27-2006, 05:07 PM
Any field you add to the user table is loaded into the userinfo cache.
gauravseth
08-28-2006, 02:52 PM
Anyway, where permission can be given to use these custom selected smiles only for certain usergroups rather than everyone.
Installed the hack by the way. Nice one.
ArabSQuad
08-28-2006, 04:38 PM
Thanks a lot Dude :)
Gnappy
08-28-2006, 09:23 PM
great hack, thank you
dknelson
08-29-2006, 08:34 PM
I have this installed and working but one problem. In the box to the right of the text area...I have the user selected smilies and the "More" button...in the dropdown smilie box in the tool bar....there is no "more".
Darwinist
08-31-2006, 12:17 AM
Anyway, where permission can be given to use these custom selected smiles only for certain usergroups rather than everyone.
I have this installed and working but one problem. In the box to the right of the text area...I have the user selected smilies and the "More" button...in the dropdown smilie box in the tool bar....there is no "more".
Both of these have been addressed in the lastest version, 1.0.2. Please read the 'Upgrade.htm' file to upgrade your version.
dknelson
08-31-2006, 05:39 AM
Very good. Appreciate the fast response. Upgrade done and everything works perfectly.
Don
gauravseth
09-01-2006, 01:08 PM
Both of these have been addressed in the lastest version, 1.0.2. Please read the 'Upgrade.htm' file to upgrade your version.
Thanks for the upgarde. :D
jw00dy
09-01-2006, 09:10 PM
Yes, thank you!
Boots
09-01-2006, 09:16 PM
I'd LOVE this if it didn't require file edits.
nevetS
09-01-2006, 10:16 PM
Excellent work!
I have noticed in firefox that the popup window for the additional smilies is too thin, but I think that's a vb out of the box thing. I'm sure it won't be too difficult to track down when I get around to it.
This really makes having several different smilie sets up on your board a LOT more feasible from an end user perspective.
Gnappy
09-03-2006, 02:46 PM
thx for the update
dknelson
09-14-2006, 02:48 AM
OK...I don't know what the heck I did but I just upgraded to VBulletin 3.6.1 Everything is working fine but now when I click on the Smilie dropdown box in the editor...It says "Favorite Smiles" followed by one smilie...then there is a bar that says "Show ALL Smilies" and then the rest of my favorites. How would the Show All have gotten moved to the second line from the top instead of the bottom?
Darwinist
09-15-2006, 02:42 AM
There is a minor change with 3.6.1 that affects this add-on. One of the things to 'find' in functions_editor.php has changed slightly. I've added a second set of installation instructions for 3.6.1 to the zip file.
Finding:
else
{
$vBeditJs['smilie_options_array']["$smilie[category]"][] = "\t\t'more' : '" . addslashes_js($vbphrase['show_all_smilies']) . "'\n";
break;
}
}
Becomes:
else
{
$vBeditJs['smilie_options_array']["$prevcategory"][] = "\t\t'more' : '" . addslashes_js($vbphrase['show_all_smilies']) . "'\n";
break;
}
$prevcategory = $smilie['category'];
}
dknelson, it sounds like you placed the add-on's code either before or immediately after:
$prevcategory = $smilie['category'];
It should be after the closing bracket after that line.
If you're unsure, get an unaltered copy of the 'functions_editor.php' file and make the modifications as shown in the 'Install_3.6.1' file I uploaded in the new zip.
dknelson
09-15-2006, 08:07 AM
That did it. Thank you very much.
Don
kylek
09-15-2006, 08:27 PM
just installed, works great, thanks for this!!!!
interceptor
09-16-2006, 08:04 PM
I get mesege Uncached templates favoritesmilies_category
Darwinist
09-16-2006, 08:30 PM
Confirm that you completed step #2 in the install instructions.
Gripemaster
09-17-2006, 03:56 PM
I'd LOVE to install this hack, but before I do, I have a modification installed which displays "random smilies" next to the post window. (I have over 500 smilies on my forum)
That mod required editing functions_editor.php with new code for "order by random"... will this hack null out the random smilies, and if so, is there a fix for that?
*Reserving a spot for install* :)
Darwinist
09-17-2006, 04:10 PM
In the very first part of step 1 of the installation instructions, look at the 'replace with' code. In this part:
else {
$smilies = $vbulletin->db->query_read_slave("
SELECT smilieid, smilietext, smiliepath, smilie.title,
imagecategory.title AS category
FROM " . TABLE_PREFIX . "smilie AS smilie
LEFT JOIN " . TABLE_PREFIX . "imagecategory AS imagecategory USING(imagecategoryid)
ORDER BY imagecategory.displayorder, imagecategory.title, smilie.displayorder
");
$totalsmilies = $vbulletin->db->num_rows($smilies);
}
You would replace the...
ORDER BY imagecategory.displayorder, imagecategory.title, smilie.displayorder
line with...
ORDER BY rand()
The result would be random smilies in the smilie box when the user has not selected a favorite smilies list.
Gripemaster
09-17-2006, 04:30 PM
AWESOME. I'll give it a whirl later this evening. Thanks for the quick response. ;)
radarhunter
09-17-2006, 05:03 PM
sorry posted by mistake editing the post
Gripemaster
09-17-2006, 05:35 PM
Seems to have installed fine. Tested it on a regular member account, and it allowed me to select favorite smilies. However, after submitting my favorites, when I hit the reply button it returns the VB database error. Went back in and cleared the list of favorites, and no database error. Did everything by the book and had no errors on install. Where did I go wrong?
EDIT: OK either I did something wrong (which is more likely), or it doesn't like the Order By rand line, that is what returned the DB error. Used your original code and it works fine. Where might I have gone wrong?
Gripemaster
09-17-2006, 07:34 PM
I figured our where I went wrong...typing on one computer while reading from the other...LOL I had a space between rand and ()... I had:
rand ()
Instead of:
rand()
One little space...LMAO.
*Gripemaster clicks Install and says Thank You*
SCRIPT3R
09-17-2006, 07:39 PM
anyone else getting an ncwoodworker.net login prompt when the 1st page of this thread loads?
jw00dy
10-13-2006, 06:46 AM
Thanks for the update. I like the added smilie on the new post/reply... very nice.
goodguy
10-14-2006, 11:37 AM
I'm being dumb here, I can see the smilies when replying to a post but cant work out how to select them in the control panel, any ideas?
Thanks
Darwinist
10-14-2006, 11:44 AM
Just click on 'edit favorite smilies' and then click the check boxes next to the smilies you want added to your favorites list and click 'save'.
goodguy
10-14-2006, 11:47 AM
Just click on 'edit favorite smilies' and then click the check boxes next to the smilies you want added to your favorites list and click 'save'.
I dont seem to have that in the control panel, as I said I've done something dumb, first time of trying hack though so I thought I'd do two at once :confused:
Darwinist
10-14-2006, 01:17 PM
Confirm you completed step #2 in the install instructions (editing the 'USERCP_SHELL' template). Also confirm that your usergroup permissions have the favorite smilies option set to 'on' (it's on by default, but may have been changed).
goodguy
10-14-2006, 01:36 PM
Confirm you completed step #2 in the install instructions (editing the 'USERCP_SHELL' template). Also confirm that your usergroup permissions have the favorite smilies option set to 'on' (it's on by default, but may have been changed).
All seems to be done but it still isnt there, cant see an option in the user group manager either though?
goodguy
10-14-2006, 01:36 PM
Confirm you completed step #2 in the install instructions (editing the 'USERCP_SHELL' template). Also confirm that your usergroup permissions have the favorite smilies option set to 'on' (it's on by default, but may have been changed).
All seems to be done but it still isnt there, cant see an option in the user group manager either though?
Darwinist
10-14-2006, 09:08 PM
At the very bottom of the usergroup permissions page, in the 'Usergroup Options' section, there should be the option 'Allow Users to Select Favorite Smilies'. If it's not there, then you'll have to make sure the 'bitfield_favoritesmilies.xml' file has been uploaded to the includes/xml directory.
BrandiDup
10-19-2006, 09:11 PM
I installed this and it was working perfectly fine until several members who upgraded to Internet Explorer 7 started complaining that their smilie box was cut off. I didn't have problems with mine because I was using the previous version of IE but now that I just upgraded, the box is being cut off on mine also. It doesn't matter what I set the number of rows to, it still cuts them off. If I set it to 5 rows, it only shows 4 of them. If I set it to 4 rows, it only shows 3 of them. But it only does this for a new reply and new thread. When PMing, it seems to be okay :ermm:
Here are the two screen shots so you can see what I'm talking about. One is of the smilies being cut off and the other is with them showing fine when I'm PMing someone. This seems to only be an error with IE 7 because it works fine on the other browsers. Any idea how to correct this?
BrandiDup
10-20-2006, 03:25 PM
no ideas? :/
Ricardo
10-20-2006, 06:21 PM
First: I love the mod ! I am using it ! Second: Is there a way to go one step further and add the Favorites to a Quick-Reply post form ? That would be great !!! There is a mod already for Quick-Reply smilies, but I would like to use the favorite ones there ! Thanks ...
Darwinist
10-21-2006, 04:02 AM
BrandiDup:
This add-on simply alters the list of smilies that is shown (the data). It does not change the way the data is displayed. Apparently the problem is browser-related and is a result of vBulletin's template not being displayed properly. I tried looking up information on this problem, but seem to come up empty handed. I'll keep my eye out and when I upgrade to IE7 myself, I'll see if I encounter the same problem. Sorry I can't be more of a help.
Ricardo: I'll certainly look into that option when I get a chance.
BrandiDup
10-21-2006, 07:56 PM
BrandiDup:
This add-on simply alters the list of smilies that is shown (the data). It does not change the way the data is displayed. Apparently the problem is browser-related and is a result of vBulletin's template not being displayed properly. I tried looking up information on this problem, but seem to come up empty handed. I'll keep my eye out and when I upgrade to IE7 myself, I'll see if I encounter the same problem. Sorry I can't be more of a help.
Ricardo: I'll certainly look into that option when I get a chance.
OK, thanks for checking into it for me. I figured it was just browser specific since I didn't have any problems on the old version of IE and I'm getting no complaints from anyone except those on the new version. Its not a huge deal, but please do let me know if you find a fix for it! I've tried just about everything I can as far as changing the number of smilies and rows to turning off the tabbed browsing in IE and nothing seems to be working. So, any info you can find would be wonderful! Thank you. :classic:
BrandiDup
10-21-2006, 07:59 PM
Oh, I did want to let you know... when I clear my list of fav smilies and just use the default ones I have set for the board, there are no problems with displaying them, even with the same number of smilies and rows. So, it seems to be only when you select your fav smilies that the error happens.
Viper007Bond
10-22-2006, 01:14 AM
Uh, guests can visit the smilies page. Is this intended? Does it save it to a cookie or something?
Ricardo
10-22-2006, 02:56 AM
BrandiDup:
This add-on simply alters the list of smilies that is shown (the data). It does not change the way the data is displayed. Apparently the problem is browser-related and is a result of vBulletin's template not being displayed properly. I tried looking up information on this problem, but seem to come up empty handed. I'll keep my eye out and when I upgrade to IE7 myself, I'll see if I encounter the same problem. Sorry I can't be more of a help.
Ricardo: I'll certainly look into that option when I get a chance.
Hey i did it ! It works for me and in no way I am saying it will work for anybody else. Here what I did:
On functions_editor.php I commented this lines:
// if ($editor_type == 'qr')
// {
// // no smilies
// }
// else
On the Templates at showthread_quickreply I found:
<td><div class="imagebutton" id="{$editorid}_cmd_wrap0_quote"><img src="$stylevar[imgdir_editor]/quote.gif" width="21" height="20" alt="$vbphrase[wrap_quote_tags]" /></div></td>
And added after it:
<!-- wysiwyg smilies -->
<td><img src="$stylevar[imgdir_editor]/separator.gif" width="6" height="20" alt="" /></td>
<td><div class="imagebutton" id="{$editorid}_popup_smilie" title="$vbphrase[smilies]">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td><img src="$stylevar[imgdir_editor]/smilie.gif" alt="" width="21" height="20" /></td>
<td class="alt_pickbutton"><img src="$stylevar[imgdir_editor]/menupop.gif" width="11" height="16" alt="" /></td>
</tr>
</table>
</div></td>
<!-- / wysiwyg smilies -->
Please check it out ! The website is:
http:\\www.floridasportbikers.com
Thanks again for your awesome add-on !!!!
Darwinist
10-22-2006, 03:36 AM
Uh, guests can visit the smilies page. Is this intended? Does it save it to a cookie or something?
I would recommend turning the option off for guests (and anyone who cannot post) in the usergroup manager. As it stands, any attempt by guests to save a favorite list will do nothing. I'll make a change in the future to clear this up.
Ricardo: Thanks, I'll check it out.
apiasto
11-07-2006, 02:03 PM
hi, love this mod but can't get it to work.it let me choose favorite smilies and save them.but when i go to post reply i dont see any smilies nor the favorite smilies icon, just an empty space. can any one tell me what i am doing wrong thnx
It can't be because i have smilies in quick reply as well
rknight111
11-11-2006, 05:35 PM
Where is the USERCP_SHELL file, I can find a USERCP file but when I go to edit it I cannot find any of the text it says to add text below??
abramelin
11-11-2006, 09:05 PM
i want to install this mod is this mod ok?
Darwinist
11-12-2006, 12:03 AM
hi, love this mod but can't get it to work.it let me choose favorite smilies and save them.but when i go to post reply i dont see any smilies nor the favorite smilies icon, just an empty space. can any one tell me what i am doing wrong thnx
It can't be because i have smilies in quick reply as well
Start with a clean, unmodified copy of the 'includes/functions_editor.php' file and perform the modifications in step 1 of the installation instructions.
Where is the USERCP_SHELL file, I can find a USERCP file but when I go to edit it I cannot find any of the text it says to add text below??
USERCP_SHELL is a template. You'll find it under 'User Control Panel Templates' in the style manager of the admin CP.
i want to install this mod is this mod ok?
Follow the installation instructions exactly, and you shouldn't have any problems. If you do, let me know.
dagummit
11-12-2006, 04:06 PM
I upgraded to 3.6.3 and now the fav smilies doesn't work anymore...is there going to be an update? Or is there something that I need to do to the 3.6.2 mod to get it to work now?
CoreIssue
11-12-2006, 04:20 PM
I upgraded to 3.6.3 and now the fav smilies doesn't work anymore...is there going to be an update? Or is there something that I need to do to the 3.6.2 mod to get it to work now?
Works okay for me at 3.6.3.
Maybe you missed something?
rknight111
11-12-2006, 10:31 PM
Got it working, thanks, But where do I get extra smiles so I can add to it.
Are they hard to add.
Ron
Darwinist
11-13-2006, 12:07 AM
A quick search on Google will supply you with more then you'll ever need. Try http://www.mysmilies.com for starters. To add them, go to your admin CP, 'Smilies' -> 'Add New Smilie' or 'Upload Smilie'.
rknight111
11-13-2006, 12:49 AM
Thanks for your quick response and the add-on, this will work great
RON
Invalid ID
11-20-2006, 02:19 AM
I noticed in my functions_editor.php, the code is different from what I was asked to find in the instructions. My actual code is as below:
$smilies = $vbulletin->db->query_read_slave("
SELECT smilieid, smilietext, smiliepath, smilie.title,
imagecategory.title AS category
FROM " . TABLE_PREFIX . "smilie AS smilie
LEFT JOIN " . TABLE_PREFIX . "imagecategory AS imagecategory USING(imagecategoryid)
ORDER BY imagecategory.displayorder, imagecategory.title, smilie.displayorder
");
}else{
$nabn = explode(" ", $vbulletin->userinfo['smilie']);
$smilies= $vbulletin->db->query_read_slave("SELECT smilieid,smilietext,title,smiliepath FROM " . TABLE_PREFIX . "smilie AS smilie WHERE smilieid IN (" . implode(",", $nabn) . ")");
eval('$vbcode_smilies_editfav = "' . fetch_template('vbcode_smilies_editfav') . '";');
}
// get total number of smilies
$totalsmilies = $vbulletin->db->num_rows($smilies);
When I replaced it with
############### FAVORITE SMILIES #################
global $permissions;
if (($vbulletin->userinfo['favsmilies']) AND ($vbulletin->options['favsmiliesactive']) AND ($permissions['favsmiliepermissions'] & $vbulletin->bf_ugp_favsmiliepermissions['canusefavsmilies'])) {
$show['favsmilies'] = true;
$favsmilies = str_replace(" ", ", ", $vbulletin->userinfo['favsmilies']);
$smilies = $vbulletin->db->query_read_slave("
SELECT smilieid, smilietext, smiliepath, smilie.title,
imagecategory.title AS category
FROM " . TABLE_PREFIX . "smilie AS smilie
LEFT JOIN " . TABLE_PREFIX . "imagecategory AS imagecategory USING(imagecategoryid)
WHERE smilieid IN ($favsmilies)
ORDER BY imagecategory.displayorder, imagecategory.title, smilie.displayorder
");
$favsmtotal = $vbulletin->db->num_rows($smilies);
$smilietotal = $vbulletin->db->query_first("SELECT COUNT(*) as total FROM " . TABLE_PREFIX . "smilie");
$totalsmilies = $smilietotal['total'];
}
else {
$smilies = $vbulletin->db->query_read_slave("
SELECT smilieid, smilietext, smiliepath, smilie.title,
imagecategory.title AS category
FROM " . TABLE_PREFIX . "smilie AS smilie
LEFT JOIN " . TABLE_PREFIX . "imagecategory AS imagecategory USING(imagecategoryid)
ORDER BY imagecategory.displayorder, imagecategory.title, smilie.displayorder
");
$totalsmilies = $vbulletin->db->num_rows($smilies);
}
############### /FAVORITE SMILIES ################
A parse error message appeared.
May I know what to do?
Thanks
acegames
11-22-2006, 01:53 PM
Awesome hack , love it , and worked fine untill I upgraded I now have this small bug which hopefully you can help me fix :
Darwinist
11-23-2006, 03:22 PM
I noticed in my functions_editor.php, the code is different from what I was asked to find in the instructions. My actual code is as below:
SNIP
When I replaced it with
SNIP
A parse error message appeared.
May I know what to do?
Thanks
Looks like your script was previously modified. Try using a fresh copy of the script.
Awesome hack , love it , and worked fine untill I upgraded I now have this small bug which hopefully you can help me fix :
Does your smilie box display properly? If so, you may have a coding error in the 'includes/functions_editor.php' file. Confirm you've made all the necessary changes exactly as they are shown in the installation instructions.
shete
11-24-2006, 07:40 AM
hi, love this mod but can't get it to work.it let me choose favorite smilies and save them.but when i go to post reply i dont see any smilies nor the favorite smilies icon, just an empty space. can any one tell me what i am doing wrong thnx
It can't be because i have smilies in quick reply as well
I ahve the same problem as this guy . Everything I did was correct , set the right options in Admin CP . Saved some fav. smilies .
But then I go to the Reply section and its not modified . Same stuff . Nothing new .
What do I need to do ?
shete
11-24-2006, 07:47 AM
Nevermind I got it to work ,Wonderful hack .
acegames
11-25-2006, 10:22 AM
Does your smilie box display properly? If so, you may have a coding error in the 'includes/functions_editor.php' file. Confirm you've made all the necessary changes exactly as they are shown in the installation instructions.
Yes it displays ok but is just empty , I have made all the changes as shown in the installation , I think it may be another hack that has conflicted but not sure
I will check my functions_editor.php
cykelmyggen
11-28-2006, 07:26 AM
Did anyone try this with 3.5.7 - what are the chances it'll work?
Darwinist
11-28-2006, 10:02 AM
A version for 3.5 can be found Here (https://vborg.vbsupport.ru/showthread.php?p=1045645#post1045645).
cykelmyggen
11-28-2006, 06:54 PM
A version for 3.5 can be found Here (https://vborg.vbsupport.ru/showthread.php?p=1045645#post1045645).
I'm fully aware of this, but I was not sure if the 3.5.7. changes would affect some of the features in this mod. In the meantime I installed it , and it worked out fine!
I was just wondering about how to translate the phrases and submit/clear List-buttons to my own language. Can't seem to find these in the phrase manager?
WAHMama
12-01-2006, 10:34 AM
This is an awesome code, I just installed it NP :)
Natalie@Club
12-05-2006, 10:58 AM
Amazing hack, thank you :D:D
Cloudrunner
12-12-2006, 02:01 PM
I would love to use this, but I need to know will it handle 3,500+ smilies?
If so, is this modification confirmed to work with 3.6.4 using the 3.6.1 instructions?
Thanks for your time.
CR
qqb825
12-12-2006, 04:09 PM
working great, thanks! :up:
NathanLedet
12-23-2006, 05:21 AM
Successful installation on 3.6.4...Thanks ;)
Darwinist
12-23-2006, 03:12 PM
I would love to use this, but I need to know will it handle 3,500+ smilies?
If so, is this modification confirmed to work with 3.6.4 using the 3.6.1 instructions?
Thanks for your time.
CR
I've never tested it with that many smilies, but if vBulletin handles it, then this mod will.
Runs just fine on 3.6.4.
Thanks...working fine on my 3.6.4 site :)
Installed
Distance
12-24-2006, 06:22 PM
seen post above oops
Insert Username
12-24-2006, 10:38 PM
Sweet! I've been wanting this EXACT functionality for quite some time. Awesome!
Cyricx
12-26-2006, 06:19 PM
In order to handle a large number of smilies it would need to be able to split them up into pages I'd think...
Otherwise can you imagine opening up a page and having to wait to load 3000 images? :)
I'm in a similar boat as we have close to 500 smilies :)
If this can split them into pages to browse, I'd be sold! :) And would contribute to the author :P
thepub
01-18-2007, 12:03 AM
I upgraded to 3.6.4 and now it no longer works :( Anything I can do about it?
akulion
01-29-2007, 08:32 AM
hi
wonderful mod - love it
However it is causing an issue for me when Composing a New message (new thread)
The site header gets replicated and doubled for some reason...(see screen shotbelow)
Can you advise me how to fix this?
Thanks
Aku
http://img222.imageshack.us/img222/6682/tutorial1eg6.jpg
akulion
01-29-2007, 08:35 AM
o never mind
i just realized whats causing this
I have a Rule Hack for new threads installed which shows a short version of forum rules when composing new threads..disabled that hack and everything works beautifully!!
thanks so much
thepub
01-29-2007, 12:13 PM
I upgraded to 3.6.4 and now it no longer works :( Anything I can do about it?
also added vbadvanced as well. I still cannot get it to work.
Insert Username
01-29-2007, 10:31 PM
I upgraded to 3.6.4 and now it no longer works :( Anything I can do about it?
Mine died, too. I'm just assuming that one or more of the template changes got wiped out, so I'm going to go redo them. I'll let you know if it works (whenever it is I get to it).
Insert Username
01-30-2007, 02:51 PM
I upgraded to 3.6.4 and now it no longer works :( Anything I can do about it?
thepub, if your problem is the same as mine, you need to re-apply the changes to the functions_editor.php file. After our upgrade, that file had been replaced. I re-applied those changes and it works fine now.
thepub
01-30-2007, 06:29 PM
thepub, if your problem is the same as mine, you need to re-apply the changes to the functions_editor.php file. After our upgrade, that file had been replaced. I re-applied those changes and it works fine now.
what are the changes? I have to change file how?
Insert Username
01-31-2007, 01:37 AM
what are the changes? I have to change file how?
Don't know offhand. It's in the intructions that come with the download. Same changes that you had to do last time around. I think there are four edits to the file.
zompus
01-31-2007, 11:06 PM
This is one of those hidden gem mods. :)
FANTASTIC!
thepub
02-19-2007, 01:34 AM
I dont understand why it's not working for me anymore. I've just reinstalled it and still nothing. This was a very popular addon for my board, the members love it.
Insert Username
02-19-2007, 04:46 PM
I dont understand why it's not working for me anymore. I've just reinstalled it and still nothing. This was a very popular addon for my board, the members love it.
Did you reapply the changes to the functions_editor.php file?
thepub
02-21-2007, 05:40 PM
Did you reapply the changes to the functions_editor.php file?
I don't know what that is or how to do it. :o
PinkDaisy
02-21-2007, 06:34 PM
My members love this. I have 2-3 members tho that say they can't use the smilies tho, they check them and all that but they don't show up, any reason why? this seems to work ok for me I think, so I'm kinda confused!!!
Insert Username
02-22-2007, 12:23 AM
I don't know what that is or how to do it. :o
Download the hack again. In there, open up the Install_3.6.1.htm (or whichever) file and look at the instructions. Look for the part that requires modifying the functions_editor.php file. You'll have to download it from the includes/ folder. There are 4 different changes that need to be made in that file. The upgrade likely wiped them out from the last time it was done. I'm assuming you didn't install the hack the first time? You'll need to open up the file in a text editor to perform the changes.
Hope that helps a little.
Keyser S?ze
03-03-2007, 04:15 AM
works in 3.6.5 however the link for "more smilies" is not showing up
Bounce
03-03-2007, 04:33 PM
works in 3.6.5 however the link for "more smilies" is not showing up
you need to have more than 25 , not sure I you can alter this anywhere
Keyser S?ze
03-04-2007, 12:21 AM
my site has 137 smilies
Bounce
03-06-2007, 12:19 AM
my site has 137 smilies
in the favorites smilies page I ment, from your attachment I see you have selected 10,try selecting more than 25 :up:
Caddyman
03-07-2007, 12:58 PM
i did the whole install to the tee, i just re-checked it all, now there are no smilies showing up anywhere,
they are in the usercp>favorite smilies
but not shown on go advanced, quick reply dropdown, anything, HELP!!!!
3.6.4 www.talkdelaware.com
Darwinist
03-07-2007, 11:56 PM
i did the whole install to the tee, i just re-checked it all, now there are no smilies showing up anywhere,
they are in the usercp>favorite smilies
but not shown on go advanced, quick reply dropdown, anything, HELP!!!!
3.6.4 www.talkdelaware.com (http://www.talkdelaware.com)
Looks to me like the code was copied to your script without the line breaks, so everything was commented out. Try this...
Keyser S?ze
03-08-2007, 07:22 AM
looks like thread title needs to be updated, also the install and upgrade are incorrect, if u upgrade from 103 u got to replace the includes/function_editor with the original, and start over
also u can skip usershell edits since nothing changed,
question: how can u get rid of the star in the editor, i dont like it and find it unneeded
thanks
Caddyman
03-08-2007, 10:48 AM
Looks to me like the code was copied to your script without the line breaks, so everything was commented out. Try this...
worked perfect, i was using wordpad, i kinda figured that may be the issue, thats why i attached it
Thanks man!:up:
jw00dy
03-13-2007, 03:35 AM
I must be nuts, but does this or is it supposed to add a smile button to the quick reply? I don't think it does... Just wanted to see if anyone could confirm.
tawnygirl
03-13-2007, 07:52 AM
I just updated to vB3.6.5, and then updated the Fav Smilies to the current version using the Update instructions and then the 3.1+ instructions.
Everything "looks" fine when we go to reply, but when we click to edit fav smilies:
Database error in vBulletin 3.6.5:
/misc.php?do=editfavsmilies
we get this error, which I don't know how to fix...
Invalid SQL:
SELECT smilieid, smilietext, smiliepath, smilie.title,
imagecategory.title AS category
FROM smilie AS smilie
LEFT JOIN imagecategory AS imagecategory USING(imagecategoryid)
WHERE smilie.imagecategoryid NOT IN (Admin, Use)
ORDER BY imagecategory.displayorder, imagecategory.title, smilie.displayorder;
MySQL Error : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Use)
ORDER BY imagecategory.displayorder, imagecategory.title, smilie.display' at line 5
Error Number : 1064
Date : Tuesday, March 13th 2007 @ 01:43:02 AM
Classname : vb_database
Does anyone know how I would go about fixing this? :o
Tralala
03-13-2007, 10:43 AM
Is anyone using this in conjunction with My Smilies VB? (https://vborg.vbsupport.ru/showthread.php?t=135336) Seems like a perfect match, just wanted to make sure they work nicely together before diving in...
Bounce
03-13-2007, 09:04 PM
Is anyone using this in conjunction with My Smilies VB? (https://vborg.vbsupport.ru/showthread.php?t=135336) Seems like a perfect match, just wanted to make sure they work nicely together before diving in...
I have both installed with no issues at all (vb3.6.5)..well apart from the ones already known lol :)
Darwinist
03-13-2007, 11:22 PM
I just updated to vB3.6.5, and then updated the Fav Smilies to the current version using the Update instructions and then the 3.1+ instructions.
Everything "looks" fine when we go to reply, but when we click to edit fav smilies:
Database error in vBulletin 3.6.5:
/misc.php?do=editfavsmilies
we get this error, which I don't know how to fix...
Does anyone know how I would go about fixing this? :o
In the favorite smilie options, when entering the 'Ignored Categories', you must enter the category ID, not the category title. A quick way to find the category ID is to go to the Smilie Manager in your admin CP and hover over the title name. Take note of the link... it should be something like...
'http://www.mysite.com/forum/admincp/image.php?do=viewimages&table=smilie&imagecategoryid=1'
...notice 'imagecategoryid=1'. Enter the IDs you want ingored into the options.
tawnygirl
03-14-2007, 10:55 AM
:up: Thank you SO much, that's exactly what it was! You have no idea how much I appreciate your help!
Tralala
03-15-2007, 11:12 AM
I have both installed with no issues at all (vb3.6.5)..well apart from the ones already known lol :)
Thanks for the reply, hIBEES. I've just installed this one too, but I note that it's not recognizing any customized "My Smilies," so I can't set (or unset) any one of them as Favorites. Is that how it's working for you too?
That sort of defeats the purpose for me; I was hoping to use this add-on to help users clean up and prioritize their personalized smilie collection.
Bounce
03-16-2007, 12:54 AM
Thanks for the reply, hIBEES. I've just installed this one too, but I note that it's not recognizing any customized "My Smilies," so I can't set (or unset) any one of them as Favorites. Is that how it's working for you too?
That sort of defeats the purpose for me; I was hoping to use this add-on to help users clean up and prioritize their personalized smilie collection.
Tralala my humble apologises,it was this one (https://vborg.vbsupport.ru/showthread.php?t=127734) I have installed https://vborg.vbsupport.ru/external/2009/11/12.gif
WebConnection
03-27-2007, 07:06 AM
Hi,
Installed the hack and followed all the instruction for vBulletin 3.6.1. Installation seems fine but when I go through userCP, this is the link fo the Edit Favorite Smilies: /misc.php?do=editfmilies
I looked at the USERCP_SHELL template but the url should be /misc.php?do=editfavsmilies.
What seems to be the problem with my installation?
ePrOmD
03-30-2007, 01:27 PM
nice hack! it was just my users ask me to implement :D
i?ve al little problem.. i?ve installed version 1.0.3, then i update vb to 3.6.4, so i?ve to update favorite smilies to 1.0.4 version, I exactly followed the steps of the guide, but when i wanna create a post, the smilies that i previously have selected, doesn?t appear :S
I ask for pardon early, if this problem already was explained before and I didn?t see it.
i?ll estimate a lot your help! tks!
Darwinist
03-30-2007, 03:46 PM
Hi,
Installed the hack and followed all the instruction for vBulletin 3.6.1. Installation seems fine but when I go through userCP, this is the link fo the Edit Favorite Smilies: /misc.php?do=editfmilies
I looked at the USERCP_SHELL template but the url should be /misc.php?do=editfavsmilies.
What seems to be the problem with my installation?
The correct link should be 'misc.php?do=editfavsmilies'. Not sure why it's displaying differently for you. Your template shows it correctly?
nice hack! it was just my users ask me to implement :D
i?ve al little problem.. i?ve installed version 1.0.3, then i update vb to 3.6.4, so i?ve to update favorite smilies to 1.0.4 version, I exactly followed the steps of the guide, but when i wanna create a post, the smilies that i previously have selected, doesn?t appear :S
I ask for pardon early, if this problem already was explained before and I didn?t see it.
i?ll estimate a lot your help! tks!
Do they appear checked when you go to the 'Edit Favorite Smilies' page in your UserCP?
ePrOmD
04-01-2007, 01:13 AM
do they appear checked when you go to the 'Edit Favorite Smilies' page in your UserCP?
hi! Darwinist yes! they are already checked! :S
*
*** editing myself *** its working :D and i dont know why :D jeje
thanks!
sharego
04-03-2007, 02:53 AM
Nice one for all the smilie addicts I have!! :D
djbaxter
04-03-2007, 11:35 AM
I had this bookmarked to try on my test forum. Then a couple of my members posted a wish list asking for just such a feature.
Thanks to this add-on, time from request to fulfilling request = less than half an hour. :)
SeeingStars
04-05-2007, 08:13 PM
I installed this and it was working perfectly fine until several members who upgraded to Internet Explorer 7 started complaining that their smilie box was cut off. I didn't have problems with mine because I was using the previous version of IE but now that I just upgraded, the box is being cut off on mine also. It doesn't matter what I set the number of rows to, it still cuts them off. If I set it to 5 rows, it only shows 4 of them. If I set it to 4 rows, it only shows 3 of them. But it only does this for a new reply and new thread. When PMing, it seems to be okay :ermm:
Here are the two screen shots so you can see what I'm talking about. One is of the smilies being cut off and the other is with them showing fine when I'm PMing someone. This seems to only be an error with IE 7 because it works fine on the other browsers. Any idea how to correct this?
Anyone ever solve this problem? Ricardos mod didn't work for me :confused:
imported_Alpine
04-11-2007, 01:15 PM
Was in the process of installing this and when I thought I got installed went to veiw a thread and they are all coming up blank, White page??? Someone please help. I went back and removed all the code changes but still blank.... help urgent needed ERK!!
If I reinstall the Update for 3.6.5 will I kill all my Hacks? and solve my problem?
Or is there someone willing to advise.
imported_Alpine
04-11-2007, 04:06 PM
Fixed - Installed original php file. and reinstalled Hack.
Panic over.
PinkDaisy
04-19-2007, 08:42 PM
I can't get this to work. I have installed, uninstalled and tried to re-install and it doesnt work. It doesnt update when you go in to add fave's and they don't show up in the screen when making a post. I'm not sure what I'm doing wrong, but I am doing ALL it says in the instructions to a T! :( I have to un-install I think!!
thepub
04-19-2007, 08:44 PM
I can't get this to work. I have installed, uninstalled and tried to re-install and it doesnt work. It doesnt update when you go in to add fave's and they don't show up in the screen when making a post. I'm not sure what I'm doing wrong, but I am doing ALL it says in the instructions to a T! :( I have to un-install I think!!
I had the same thing :(
inciarco
04-26-2007, 04:52 AM
Good Add On Darwinist!! :up:
Works Ok On vb3.6.5!! :up:
Thank You Very Much!! :up:
:)
PinkDaisy
04-27-2007, 11:38 PM
I have installed this and uninstalled and 2 of my members are somehow stuck still seeing what they had in their 'favorite' list. Now they can't even get the more link to work in the smilie box in threads...
Any CLUES on how to fix this??
PinkDaisy
04-27-2007, 11:38 PM
ACK.. Nevermind, this is the other hack!!
PinkDaisy
04-27-2007, 11:40 PM
No, gosh.. I'm a DITZ tonight.. it was this one.. Sorry yall!!
inciarco
04-28-2007, 12:43 AM
Be careful when you Edit the Files mentioned in the Instructions, because some Lines Should be REPLACED and other should be PLACED BELOW the Text mentioned there!! :up:
Be careful, because when I first made the Modifications, I REPLACED all the mentioned Lines, and after I received some Errors I realized that I didn't read the Instructions Well and that some Lines should be PLACED BELOW the existing ones!! :up:
If you have a Version of vBulletin greater than 3.6.1, follow the Instructions of "Install_3.6.1", and remember to copy the files "bitfield_favoritesmilies.xml" and "favoritesmilies.gif", in the indicated Folders!! :up:
:)
PinkDaisy
04-28-2007, 01:00 PM
Be careful when you Edit the Files mentioned in the Instructions, because some Lines Should be REPLACED and other should be PLACED BELOW the Text mentioned there!! :up:
Be careful, because when I first made the Modifications, I REPLACED all the mentioned Lines, and after I received some Errors I realized that I didn't read the Instructions Well and that some Lines should be PLACED BELOW the existing ones!! :up:
If you have a Version of vBulletin greater than 3.6.1, follow the Instructions of "Install_3.6.1", and remember to copy the files "bitfield_favoritesmilies.xml" and "favoritesmilies.gif", in the indicated Folders!! :up:
:)
Yes, I did all of that and still nothing. Here is the exact error I get when I do this:
Parse error: parse error, unexpected $ in /home/belliesb/public_html/forums/includes/functions_editor.php on line 647
inciarco
04-28-2007, 03:35 PM
Yes, I did all of that and still nothing. Here is the exact error I get when I do this:
Parse error: parse error, unexpected $ in /home/belliesb/public_html/forums/includes/functions_editor.php on line 647
I received a similar Error, and was when I copied the Text I didn't noticed that one of the next Lines of Text was included after one of the Lines "############### /FAVORITE SMILIES ################", and that caused the Line of Code to be Ignored with the Error caused by That!! So is better to leave some Free Lines before and After the Lines you'll Include, to avoid that from happening!! :up:
That error could mean that One Line inside the file "functions_editor.php" isn't well edited, so is better that you repeat the process of altering the Lines of that File from the Beginning with a New and Unmodified file of "functions_editor.php", perhaps a copy of the one you downloaded and copied in your Hosted Server and that you keep in your Coputer!! :up:
:)
Neal-UK
04-28-2007, 04:28 PM
Is there a way for people to have more than 6 favourite smilies?
Christine
04-28-2007, 09:59 PM
Is there a way for people to have more than 6 favourite smilies?
I am not seeing where we can set this -- can someone help?
Christine
04-28-2007, 10:14 PM
Where is the edit for editor_smiliebox? Should we use the one in the old folder?
You may want to clean these up and upload a single copy with one set of instructions.
Christine
04-28-2007, 10:15 PM
Is there a way for people to have more than 6 favourite smilies?
I think I found it. It looks to be pulling the value from the Smiliebox Total Smilies field in the Message Posting and Interface section of the Options.
Neal-UK
04-29-2007, 08:47 AM
Ok, I wasn't sure if that was the setting I had to change, i'll take a look at it now.
inciarco
05-12-2007, 01:11 PM
Magnific Add-On!! :up:
Works Ok With vBulletin 3.6.6!! :up:
:)
TheRealF'nShow
05-19-2007, 04:25 PM
Nevermind, I used a file attached a few pages back, that sorted it!
Nice mod man =]
vbreal
05-19-2007, 05:26 PM
*edit*
madbrit
05-19-2007, 08:20 PM
Hi Guys,
All is working... but the Favoritesmilies Gif image is not showing up above the smilies when doing a post. It is giving the typical "icon' as if it isnt there on the server.
I have double checked.. it is there... and it is in the right directory...
'images/editor'
Any suggestions on a piece of code that I have not carried across properly???
I am using 3.6.7
Cheers
Martin
deafluckyirish
05-22-2007, 06:43 PM
Hi Guys,
All is working... but the Favoritesmilies Gif image is not showing up above the smilies when doing a post. It is giving the typical "icon' as if it isnt there on the server.
I have double checked.. it is there... and it is in the right directory...
'images/editor'
Any suggestions on a piece of code that I have not carried across properly???
I am using 3.6.7
Cheers
Martin
Same for me too.
Using 3.6.7
I want to use Sports teams on smiles.
How to get that kind of code? Any idea to work that out?
Click on NFL Smilies and it expand to 30 team smilies.
http://www.leaguegaming.com/forums/newreply.php?do=newreply&p=658167
Fungsten
05-23-2007, 12:36 AM
Not showing up.
Hi Guys,
All is working... but the Favoritesmilies Gif image is not showing up above the smilies when doing a post. It is giving the typical "icon' as if it isnt there on the server.
I have double checked.. it is there... and it is in the right directory...
'images/editor'
Any suggestions on a piece of code that I have not carried across properly???
I am using 3.6.7
Cheers
Martin
ammoskumar
05-26-2007, 04:59 PM
does this work in 3.6.7:D
nice hack:) kool.....
Thnaks
djbaxter
05-26-2007, 05:18 PM
Yes. Works fine in 3.67 and 3.67PL1.
Neal-UK
05-28-2007, 10:03 AM
Works fine on 3.6.7 PL1
IceFanatic
05-28-2007, 10:38 PM
Hi Guys,
All is working... but the Favoritesmilies Gif image is not showing up above the smilies when doing a post. It is giving the typical "icon' as if it isnt there on the server.
I have double checked.. it is there... and it is in the right directory...
'images/editor'
Any suggestions on a piece of code that I have not carried across properly???
I am using 3.6.7
Cheers
Martin
I am having this same problem. Anyone?
Neal-UK
05-28-2007, 11:17 PM
Make sure you do the template and file edits correctly, i'm on 3.6.7 PL1 and it works fine for me.
IceFanatic
05-29-2007, 01:59 AM
Ever since I installed this, I have no smilies link anywhere on my reply page. All of them disappeared....
I'm going to try uninstalling it and see if they come back.
edit: Smilies are back. Oh well...guess this hack isn't for me...
Bounce
05-30-2007, 12:02 AM
Works a treat on vb3.6.7 PL1 ..
One Q however , is it possible to add to the quick edit feature that vb has ?
Manys thanks
princessmandy
06-01-2007, 10:53 PM
I just updated to vBulletin® Version 3.6.7. Works fine in it. Thanks for the nice mod!
julia44
06-14-2007, 04:20 AM
installed and working, thanks!
Dutchytje
07-12-2007, 11:32 PM
Really like this mod!! :D
Just 1 question.
Is it possible to change it so that in the editor toolbar favorite smilies show at the top
and all other smilies show beneath them?
Would be great.
Have this installed on VB 3.6.7 PL1 without any troubles. ;)
Sitting
07-19-2007, 09:54 AM
very good man... thanks...
captainron19
07-20-2007, 08:10 PM
Question...in the replace section for functions_editor.php it says to find:
else
{
$vBeditJs['smilie_options_array']["$prevcategory"][] = "\t\t'more' : '" . addslashes_js($vbphrase['show_all_smilies']) . "'\n";
break;
}
$prevcategory = $smilie['category'];
}
But that exact phrase does not appear anywhere
I am using V 3.6.7
Darwinist
07-23-2007, 01:08 AM
It should be somewhere around line 530.
Darwinist
07-23-2007, 01:09 AM
Really like this mod!! :D
Just 1 question.
Is it possible to change it so that in the editor toolbar favorite smilies show at the top
and all other smilies show beneath them?
Would be great.
Have this installed on VB 3.6.7 PL1 without any troubles. ;)
I'll add that to a future update.
Dutchytje
07-27-2007, 08:48 AM
I'll add that to a future update.
Would be great, thanks in advance. :up:
acegames
07-27-2007, 11:40 AM
Just upgraded and when new reply is used the smily box is to the right of the text box , how do i change this so its below please ?
EDIT now fixed , i reverted editor_toolbar_on which caused this
OziloZ
07-27-2007, 07:27 PM
Why its look like this?
duditas
07-29-2007, 03:05 AM
Really good. Thanks
** Installed **
I'm con't Install with 3.6.8 ..
please what I do .. what u see ?
thankx alot
Fungsten
08-06-2007, 07:12 PM
I'm con't Install with 3.6.8 ..
please what I do .. what u see ?
thankx alot
Same here.
fariborz khan
08-08-2007, 02:44 PM
i love it installed in 3.6.8.
Foxtrotelite
08-10-2007, 08:23 PM
I had it installed previously, I upgraded to the newest vb version and now the favorite smilies cannot be saved. If I just reinstall the mod will it work?
Fungsten
08-10-2007, 10:44 PM
I reinstalled it and got it to work with 3.6.8.
y2krazy
08-20-2007, 10:01 PM
Working well with 3.6.8! :)
JadedSouls
08-22-2007, 12:11 AM
I know alot of people on my site that are gonna love this feature! hehe :)
2impulsiv
08-22-2007, 04:11 AM
Cheers for the update..
All working well on 3.6.8
Cheers.
PtitLu
08-23-2007, 11:54 AM
Great tool, running on my 3.6.8 forums. Thanks.
Tom_S
08-30-2007, 04:28 AM
Another 3.6.8 install...smooth as silk
Thanks ;-)
DudeSicko
09-05-2007, 07:36 PM
Hmm, i have now tried to install it 3 times, and still not working on 3.6.8?
Install is as it should bee im 100000% sure of.
But just i dont get the options to manage the favor icons under profile, the i dont get the text to press for editing.
I then tried to past in this misc.php?do=editfavsmilies in the URL bar, but i then get "Admin, you do not have permission to access this page. This could be due to one of several reasons:"
If i look in the database the "favsmiliepermissions" is set to 1.
I also can see the 4 options under "Message Posting Interface Options". ofc its turned on there also, but still nada.
Freesteyelz
09-12-2007, 02:59 AM
Hmm, i have now tried to install it 3 times, and still not working on 3.6.8?
Install is as it should bee im 100000% sure of.
But just i dont get the options to manage the favor icons under profile, the i dont get the text to press for editing.
I then tried to past in this misc.php?do=editfavsmilies in the URL bar, but i then get "Admin, you do not have permission to access this page. This could be due to one of several reasons:"
If i look in the database the "favsmiliepermissions" is set to 1.
I also can see the 4 options under "Message Posting Interface Options". ofc its turned on there also, but still nada.
It looks as if you didn't reset the Usergroup bitfield. Click on any Usergroup in the Admin CP, as if you're going to edit it and see if that helps. *Also at the bottom of the "Usergroup Options" the default setting should be "Yes" for Favorite Smilies.
Nice mod, Darwinist. :)
Freesteyelz
09-12-2007, 03:56 AM
Bug?
I did notice that upon loading the Favorite Smilies editing page, if a user did not select a favorite smilie the count will default to show as "1". If you press clear or reset then the counter shows up correctly as "0"...Until you reload the page again. :confused:
It's not a big issue but just thought I'd let you know. :)
*The attachment below shows a correct counter (if a user chose favorite smilies) and an incorrect/no counter (when a user does not choose favorite smilies):
Freesteyelz
09-12-2007, 04:48 AM
Another bug, maybe?
If a user decides not to select favorites smilies in the editor's box it shows up as "Showing favorite smilies of 100 total smilies". There should be a number entry between "Showing" and "favorite". If I disable the mod then the number shows up correctly so I know it's with the mod.
This occurance doesn't seem to affect the overall function of the mod, just the vbphrase.
DudeSicko
09-12-2007, 02:44 PM
It looks as if you didn't reset the Usergroup bitfield. Click on any Usergroup in the Admin CP, as if you're going to edit it and see if that helps. *Also at the bottom of the "Usergroup Options" the default setting should be "Yes" for Favorite Smilies.
Nice mod, Darwinist. :)Thx for responding.
But where do i reset the Usergroup bitfield :D ?
I did try to go into phpmyadmin and set it to 0, and then log into User Group manager.. . . but it dident go back to 1 again hmm.
I then deleted the 0 in phpmyadmin, but i was not allowed to save, cause you cant have a blank field there :/
Errm, where in the Usergroup Options should that Favorite Smilies settings bee? I cant find it anywhere there, must bee me that is blind or sum hmm.
Freesteyelz
09-12-2007, 09:08 PM
In the vB Admin CP, look towards the middle half of the left column and there you'll see a "Usergroups" option. Click on Usergroup Manager and select any Usergroup (I chose Aministrator). Click the "Go" button and that alone will update the bitfield. From there you can also choose to allow or disallow favorite smilies for that Usergroup.
After that you should be able to see the links in the UserCP. :)
DudeSicko
09-18-2007, 04:09 PM
In the vB Admin CP, look towards the middle half of the left column and there you'll see a "Usergroups" option. Click on Usergroup Manager and select any Usergroup (I chose Aministrator). Click the "Go" button and that alone will update the bitfield. From there you can also choose to allow or disallow favorite smilies for that Usergroup.
After that you should be able to see the links in the UserCP. :)Hmm nothing happens, there is no where to manage the Smilies hmm.
Freesteyelz
09-19-2007, 02:16 AM
Assuming that you did the necessary template edits and the product XML upload I'm not sure why the link is not showing up for you. Hmm.
dhdcf
09-22-2007, 03:57 PM
We have a ton of smilies so this is heaven for us. Installed without error (I think) and it has the pull down menu to choose your favorite smilie. When I click on the pulldown....it doesn't allow you to just click on the smilie to use it. It just shows the picture and the name of it (one to a row) Am I doing something wrong? Thanks :)
Julie
OnyxChase
10-02-2007, 02:55 PM
Hi! Thank you for your mod, it works fabulous on my forum.
However I was wondering if there was any way to get it compatible with this mod https://vborg.vbsupport.ru/showthread.php?t=132443 ? It shows a list of smileys on the Quick Reply, and when I install the Favorite Smilies mod I don't see anything ;/
PurpleButterfly
10-03-2007, 01:29 PM
Could someone please help me - I have looked and looked but have no idea where to find this file in my adminCP:
INSTALLATION
STEP 1: Open file includes/functions_editor.php
I've looked in templates, done phrase searches, etc. Just feeling clueless...lol...thansk for any help! :o
djbaxter
10-03-2007, 01:38 PM
Could someone please help me - I have looked and looked but have no idea where to find this file in my adminCP
It's not in your Admin CP. It's one of the files included in the zip file you downloaded from this thread. Locate the file, edit it as instructed using a plain text editor, and then upload the edited version to your server.
PurpleButterfly
10-03-2007, 08:19 PM
Thanks so much for your help! I finally got everything done - a bit intimidating for a newbie - and installed! Everything is working fine except the fave smilies (or anything indicating fave smilies) are not showing up, only the regular smiliebox. We have the "fave smilies" options and can make/save selections, but then nothing changes in the smiliebox or anywhere when a post is made. I have double checked all permissions, usergroups and board settings.
One thing that was unclear to me, was where to upload the includes/functions_editor.php file after making changes in Notepad. The file wasn't visible (no PHP files) in the unzipped folder, but I was able to find it by doing a search on my hard drive. I modified and saved the file back in the XML and HTML docs, then uploaded them to my server in the public_html section. I suspect I went wrong somewhere during that process? Any help would be greatly appreciated! :)
djbaxter
10-03-2007, 10:22 PM
I should be uploaded to the {forum root}/includes/ folder.
irfreedownload
10-03-2007, 10:33 PM
work in 3.6.8 ???????
PurpleButterfly
10-04-2007, 01:56 AM
https://vborg.vbsupport.ru/external/2007/10/34.jpg
Working beautifully now! (3.6.8) Thanks so much for your guidance! :D
Tact7626
10-04-2007, 09:50 PM
installed. works perfectly and beatifuly. makes me wanna add lots of kewl smilies.
only downside...
worst installation i've ever been through. i had to do everything MANUALLY. what's up with that? i was surprised i didnt' have to make the xml product file myself. -_- would love it if all that junk was automated especially since i got like 10 styles i have to edit. O_o
thanks though.
PurpleButterfly
10-05-2007, 01:11 PM
worst installation i've ever been through. i had to do everything MANUALLY. what's up with that? i was surprised i didnt' have to make the xml product file myself. -_- would love it if all that junk was automated especially since i got like 10 styles i have to edit. O_o
thanks though.
lol....yeah, that! :o I'm making it a feature for paid subscribers only, since I had to work so hard on it. ;)
too_cool_3
10-14-2007, 03:53 PM
wow just installed this and all of a sudden my users started gettin this error:
Parse error: parse error, unexpected T_VA IABLE in /home/content/b/i/g/bigsac/html/includes/ nctions_editor.php on line 601
i went in with notepad++ and it turns out i ++++in forgot a semi-colon.. a ++++in ';' !!! lol. anyways, put it in and fixed it rite up! thanks for the killer hack Darwinist
mystic10
10-22-2007, 03:33 PM
Hi I Have Installed Everything As Per Aurthor Instrustions..but In My Control Panel I Dont See Edit Favorite Smiles:( Please Help
mystic10
10-22-2007, 04:28 PM
i am showing the picture so u can better understand the problem..i hope u can help thanks
i am posting two links of the picture thru tinypic..so please look at it and let me know what i am doing wrong:
https://vborg.vbsupport.ru/external/2007/10/17.jpg
http://tinypic.com/view.php?pic=1zlvw5t&s=2
PurpleButterfly
10-22-2007, 10:14 PM
Mystic10, check your user permissions and make sure you have the "allow favorite smilies" checked. :)
PurpleButterfly
10-24-2007, 11:21 PM
Can anyone help? One of my users cannot click on any smileys ever since I gave her the fave smiley feature. All permissions have been double checked. This is the second member this happened to. I was never able to figure out what happened the first time and thought it just a fluke... recreated the members account but I don't want to do that again and this member has a posting history as well. :( Any suggestions would be VERY appreciated! xoxo
PurpleButterfly
10-26-2007, 05:09 AM
Can anyone help? One of my users cannot click on any smileys ever since I gave her the fave smiley feature. All permissions have been double checked. This is the second member this happened to. I was never able to figure out what happened the first time and thought it just a fluke... recreated the members account but I don't want to do that again and this member has a posting history as well. :( Any suggestions would be VERY appreciated! xoxo
I figured it out...she belonged to additional usergroups who did not have permission for fave smilies. She could see them but not use them, or any smiley features at all. Interesting. I removed her from the other usergroups and problem solved. :) Hope this might help someone else.
Also, I wanted to make a donation to the developer, but don't see any links to do so?
lasto
10-26-2007, 05:35 PM
so is this not worth installing - does it need more than the author has given in the 1st thread to make it work on 3.6.8 ?
djbaxter
10-26-2007, 06:14 PM
so is this not worth installing - does it need more than the author has given in the 1st thread to make it work on 3.6.8 ?
The current version works just fine on 3.6.8.
Darwinist
10-27-2007, 03:07 PM
Also, I wanted to make a donation to the developer, but don't see any links to do so?
That's very kind of you... I've added a link. :)
so is this not worth installing - does it need more than the author has given in the 1st thread to make it work on 3.6.8 ?
As mentioned, it works fine in 3.6.8... I've updated the page to reflect so.
goddess_dix
11-04-2007, 01:14 PM
would love it if all that junk was automated especially since i got like 10 styles i have to edit. O_o
you might want to check out the template modification hack here (https://vborg.vbsupport.ru/showthread.php?t=152931) for this and your other mods. it makes this kind of stuff a breeze.
update: that only works for the template edit part. sorry. :o
SBlueman
11-06-2007, 02:16 AM
That's odd...this isn't working for me now that I updated to the latest version of vBulletin. The favorite smiles are not saving.
yoyoyoyo
11-06-2007, 02:18 AM
That's odd...this isn't working for me now that I updated to the latest version of vBulletin. The favorite smiles are not saving.
redo the edits in the functions_editor.php - the latest patch replaced that file
djbaxter
11-06-2007, 02:49 AM
That's odd...this isn't working for me now that I updated to the latest version of vBulletin. The favorite smiles are not saving.
Hmmm... same thing herte. I just checked after seeing your post.
This has been working fine for me until I upgraded to 3.68 Patch 2 this morning. It worked fine with Patch 1.
I tried editing and resaving the favorites. Then I tried re-importing the product using overwrite. Nothing.
Any ideas?
yoyoyoyo
11-06-2007, 02:57 AM
Hmmm... same thing herte. I just checked after seeing your post.
This has been working fine for me until I upgraded to 3.68 Patch 2 this morning. It worked fine with Patch 1.
I tried editing and resaving the favorites. Then I tried re-importing the product using overwrite. Nothing.
Any ideas?
redo the edits in the functions_editor.php - the latest patch replaced that file
djbaxter
11-06-2007, 03:15 AM
D'oh! Of course. :o
Also, I was posting from the previous page and missed your reply to the previous poster... :o
SBlueman
11-06-2007, 03:17 AM
I re-did the edits and all is well, thanks!
afullcup
11-13-2007, 05:54 PM
I am also having the issue where I can't see "Edit Favorite Smilies" in the User CP. I have checked permissions for all the groups in the database and they are set properly (and I obviously had to click into the Usergroups to set it). The hack is turned on in the vb options.
For kicks and grins I tried doing some edits to my USERCP_SHELL where the code is to display this - nothing happens no matter what I do! I even edit the text for one of the other options - it's not reflected on my page! Is there something that is overriding this template? If so, what?!
ETA: For now I just put a link to edit them in the UserCP menu in the top menubar.
Darwinist
11-14-2007, 01:57 AM
Are you sure you're editing the correct style?
alluidh
11-17-2007, 06:07 AM
There is a problem if you have more then 500 smilies should be shown for choice if your using the IE. The screen collabs. But it works fine with Firefox
vbulletin 3.6.8. pl2
Chance4Today
11-17-2007, 05:48 PM
Thanks it worked the first a time. Ya know I get kinda upset at myself ;) I can do this stuff, do the whole vbulletin software, config.file, etc but can not do the vbadavance crap. I am afraid to attempt that again last time I lost all my forums LOL
MV Blackie
11-18-2007, 09:39 AM
installed with ease, wonderfull mod , thx for this nice contribution ;)
frank44
11-21-2007, 12:37 AM
Edit: look at my post below. The favorite smilie image is not showing up for some reason?
https://vborg.vbsupport.ru/attachment.php?attachmentid=72503&d=1195612498
frank44
11-21-2007, 03:55 PM
2 questions:
1. Why doesn't the image show up for my dark style and
2. How can I just have a link there saying "Edit Favorite Smiles" instead of the image?
GhoHan
11-22-2007, 11:42 PM
hi, is it working for 3.6.8 Level Patch 2 - fresh installed.
reading the last few comments, made me worried a bit.
sincere apology, as i am a newbie in the neighbourhood. :)
djbaxter
11-23-2007, 12:37 AM
hi, is it working for 3.6.8 Level Patch 2 - fresh installed.
Yes. Follow the instructions and it works fine with 3.6.8 PL2.
If you had it installed BEFORE upgrading to PL2, you'll need to redo the edits to /includes/functions_editor.php.
PurpleButterfly
11-27-2007, 04:07 AM
If you had it installed BEFORE upgrading to PL2, you'll need to redo the edits to /includes/functions_editor.php.
Hmmmm...I did this but the feature is still not working right after the upgrade to PL2.
GhoHan
11-27-2007, 09:12 AM
got the same problems here.
just freshly installed and nothing shows up in UserCP.
any idea ?
:(
GhoHan
11-27-2007, 09:24 AM
it only shows up when you do the Post Reply.
Then you can only edit it there.
So, it is working but not from the UserCP.
Anyhow, great works. Click Installed.
:)
Fungsten
11-27-2007, 06:38 PM
got the same problems here.
just freshly installed and nothing shows up in UserCP.
any idea ?
:(
Same here. 3.6.8 PL2
FLMom
11-29-2007, 12:49 AM
Hi,
I have just installed this on 3.7.1 PL and it is not working. I thought I read somewhere that it would work with this version? :o
I see the edit favorite smilies in the user control panel and I have gone into the Usergroups, clicked on "Go" and set it up in the Message Posting Interface Options section, but when I refreshed my page nothing shows up in the reply box. I have double checked everything and I don't see a Star and when I click on my smilie drop down box, it's still the default smilies I have.
I have enclosed two attachments so you can see what I am talking about :)
Thanks for any help you can give! My members are going to LOVE this!! :up:
FLMom
12-02-2007, 01:51 PM
anyone?
apiasto
12-06-2007, 01:19 AM
same problem here, it was working fine on 3.6.7 but when i upgraded to 3.6.8 pl2.now its not showing smilies at all in editor box.i can edit it via user cp but nothing in editor box and the smilie pop up dissapears as well.please help i even redo the function editor php n tried a new installation.
apiasto
12-06-2007, 03:17 AM
never mind i got it.working fine now on 3.6.8
ma bad
Loxias
12-09-2007, 01:57 AM
Pardon me if I missed this answer - but how can I make this available only to certain usergroups?
Fungsten
12-09-2007, 05:08 PM
Pardon me if I missed this answer - but how can I make this available only to certain usergroups?
It's towards the bottom of each usergroup setting.
Freesteyelz
12-25-2007, 10:55 AM
The Favorite Smilie mod seems to work fine in 3.7 Beta 3. :up: Fantastic mod, Darwinist. Thank you. :)
Bug?
I did notice that upon loading the Favorite Smilies editing page, if a user did not select a favorite smilie the count will default to show as "1". If you press clear or reset then the counter shows up correctly as "0"...Until you reload the page again. :confused:
It's not a big issue but just thought I'd let you know. :)
*The attachment below shows a correct counter (if a user chose favorite smilies) and an incorrect/no counter (when a user does not choose favorite smilies):
Update: I resolved this issue with a conditional:
<if condition="$show['favsmilies']">
<phrase 1="$vboptions[smtotal]" 2="$totalsmilies">$vbphrase[showing_x_smilies_of_y_total]</phrase>
<else />
Showing 36 smilies of $totalsmilies total smilies.
</if>
Screenshots below (focus on the wording)...
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.