vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.7 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=228)
-   -   End-User Options - Favorite Smilies (https://vborg.vbsupport.ru/showthread.php?t=192184)

boatswife 02-22-2009 08:15 PM

Quote:

Originally Posted by Leo Brazil (Post 1746730)
Guys, have you try this after installation?

- In the AdminCP, go to 'Usergroup' -> 'Usergroup Manager' and click 'Go' to edit any of the usergroups (saving is not necessary, going to the page is all that's required).

- Confirm and set (if necessary) some extra options in 'vBulletin Options' -> 'Message Posting Interface Options'.

I hope this can help you.


Thank you, I had forgotten to do this the first time.

I think for me it had to do with how the functions_editor.php file was saved. I really don't know how to explain it, but I ran into the problem again while I was messing around and once I re-installed the first edited file it was working again.

Turkisa 03-07-2009 08:06 PM

Quote:

Originally Posted by Pamela (Post 1746620)
I just tried that and it still doesn't work. Thank you for trying to help though.

If you ever remember what you did (or if anyone else can help!), I'd sure appreciate it if you could let me know. Thanks!

:confused: :confused: :confused:

Have you found the problem?
I have the same problem, and have tryed to delete it all and install again but still it wont work!

boatswife 04-26-2009 12:25 AM

Quote:

Originally Posted by Pamela (Post 1738061)
Can anyone please help me? I'm almost there!

No matter what I do, I can't get the selected smilies to show up in my smilies box. I see the yellow star...I get the list of smilies to chose from (and can make and save my selections)...BUT nothing changes in my smilies box. When I click on the yellow star again, the selctions are still marked as saved...but nothing changes in my smilies box (just the same old ones showing as before) .

I have redone the steps over and over again and can't get it to work. I have even tried disabling all other modifications to see if one of other mods were interfering with it...and nothing! Please help! :confused:

I had to figure it out once again, this time I can pass it on to you all! LOL I know I sounded like a nut telling you (Pamela) that the file sizes were different. They were because it was an older version of the edits that I was using and that's what made it work.

I used the older version edits of function_editor.php that can be found here. Make only the following edits to your current function_editor.php file and it will work. At least it corrected the problem for me and it's now working on 3.8.2. You may still need to go to the membergroups and click on go.

Quote:

In includes/functions_editor.php
FIND:
// query smilies
$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
");

// get total number of smilies
$totalsmilies = $vbulletin->db->num_rows($smilies);

REPLACE WITH:
// query smilies
############### FAVORITE SMILIES #################
if (($vbulletin->userinfo['favsmilies']) AND ($vbulletin->options['favsmiliesactive'])) {
$favsmilies = str_replace(" ", ", ", $vbulletin->userinfo['favsmilies']);
$smilies = $vbulletin->db->query_read("
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("
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 ################

FIND:
$show['moresmilieslink'] = iif ($totalsmilies > $vbulletin->options['smtotal'], true, false);

REPLACE WITH:
$show['moresmilieslink'] = iif ($totalsmilies > $vbulletin->options['smtotal'], true, iif ($vbulletin->userinfo['favsmilies'], true, false));

Save and upload.

Pamela 04-26-2009 04:26 AM

Quote:

Originally Posted by boatswife (Post 1799059)
I had to figure it out once again, this time I can pass it on to you all! LOL I know I sounded like a nut telling you (Pamela) that the file sizes were different. They were because it was an older version of the edits that I was using and that's what made it work.

I used the older version edits of function_editor.php that can be found here. Make only the following edits to your current function_editor.php file and it will work. At least it corrected the problem for me and it's now working on 3.8.2. You may still need to go to the membergroups and click on go.

AWESOME...that worked perfectly! Thank you so very, very much! I greatly appreciate your help!!!

Suliman Mashat 04-29-2009 09:44 PM

my version is 3,8 and I need it
can help me =(

trotskid 05-10-2009 02:12 PM

Quote:

Originally Posted by boatswife (Post 1799059)
I used the older version edits of function_editor.php that can be found here. Make only the following edits to your current function_editor.php file and it will work. At least it corrected the problem for me and it's now working on 3.8.2. You may still need to go to the membergroups and click on go.

Thank you :up::up::up:

Installed on 3.8.2!

davit1979 05-19-2009 05:52 PM

Quote:

Originally Posted by boatswife (Post 1799059)
I had to figure it out once again, this time I can pass it on to you all! LOL I know I sounded like a nut telling you (Pamela) that the file sizes were different. They were because it was an older version of the edits that I was using and that's what made it work.

I used the older version edits of function_editor.php that can be found here. Make only the following edits to your current function_editor.php file and it will work. At least it corrected the problem for me and it's now working on 3.8.2. You may still need to go to the membergroups and click on go.

Confirmed works in 3.8.1
Thank you!

Kimberley 06-01-2009 11:04 AM

Well this is working great except for one thing and I have done the edits to function_editor etc it doesnt show up in mu UserCP .. it does on Post reply and it works fine and you can set it up but can anyone tell me what I might have missed for it to not show in usercp please

trotskid 06-10-2009 05:58 AM

I´m a bit lost. It´s possible to hide or disable the icon on the editor toolbar? (not to eliminate it because it appears the icon target).

Thanks

Fungsten 06-13-2009 04:53 PM

Didn't work in 3.8.3.

On Edit:

Doesn't work. I rebuilt the bitfields, reinstalled the product chose and resaved the favorite smilies and nothing. BTW, the favorites do show but not the ones I chose.

goxy63 06-16-2009 07:10 PM

please update for 3.8

thanks

Fungsten 06-16-2009 07:19 PM

Quote:

Originally Posted by goxy63 (Post 1830869)
please update for 3.8

thanks

+1.

goxy63. Here's a response to the video in your sigline.

http://www.youtube.com/watch?v=edaJP3Lp0Gg

trotskid 06-18-2009 05:42 PM

After updating to 3.8.3 it doesn?t work either :(

Please update! ;)

djbaxter 06-18-2009 07:19 PM

Quote:

Originally Posted by trotskid (Post 1832085)
After updating to 3.8.3 it doesn?t work either :(

Please update! ;)

It does work. You have to redo the file edits (and possibly the template edits) after evey upgrade because they are overwritten when you upload the new versions - see installation instructions.

Fungsten 06-20-2009 04:56 PM

Quote:

Originally Posted by djbaxter (Post 1832156)
It does work. You have to redo the file edits (and possibly the template edits) after evey upgrade because they are overwritten when you upload the new versions - see installation instructions.

I can't get it to work. :confused:

On Edit:

I just did. But I used the functions_editor.php from the previous version of VBul; 3.8.2

goxy63 06-22-2009 05:27 PM

Quote:

Originally Posted by Fungsten (Post 1830878)
+1.

goxy63. Here's a response to the video in your sigline.

http://www.youtube.com/watch?v=edaJP3Lp0Gg

Well would like to check it out but in my browser I got this msg:
"This video is not available in your country due to copyright restrictions. "
Cheers

Fungsten 06-22-2009 05:39 PM

Quote:

Originally Posted by goxy63 (Post 1834943)
Well would like to check it out but in my browser I got this msg:
"This video is not available in your country due to copyright restrictions. "
Cheers

You were going to get Rick Roll'd. :eek:

trotskid 07-01-2009 05:34 PM

Works again on 3.8.3 :up:. I?ve only modified this again:

Quote:

Originally Posted by boatswife (Post 1799059)
I used the older version edits of function_editor.php that can be found here. Make only the following edits to your current function_editor.php file and it will work.

Regards

MrsKay 07-04-2009 05:26 PM

Question: On the install instructions it says to "Import product-favoritesmilies.xml as a product into vBulletin."

Where do I do this?

Sorry if it's a dumb question, I'm new to all this. :o

boatswife 07-08-2009 03:41 AM

Quote:

Originally Posted by MrsKay (Post 1842786)
Question: On the install instructions it says to "Import product-favoritesmilies.xml as a product into vBulletin."

Where do I do this?

Sorry if it's a dumb question, I'm new to all this. :o

Admin CP>>Manage Products>>Add/Import Product>>Browse to select the file>>Import.

MrsKay 07-09-2009 12:57 AM

Quote:

Originally Posted by boatswife (Post 1844949)
Admin CP>>Manage Products>>Add/Import Product>>Browse to select the file>>Import.

Thank you!

SamirDarji 07-16-2009 04:53 PM

Awesome! I'm going to have to try this!

RedHacker 07-17-2009 06:28 AM

http://img383.imageshack.us/img383/93/23457500.jpg

Why display two lines...?

boatswife 07-17-2009 06:47 PM

Sorry, I'm not seeing the double separators.

VonDoom 07-23-2009 03:51 AM

Is this supposed to show in QR & QE?

VonDoom 07-23-2009 06:40 PM

Apperantly it does, Im assuming the reason they didnt show up right away was a system cache issue.

Quote:

Originally Posted by boatswife (Post 1799059)
I had to figure it out once again, this time I can pass it on to you all! LOL I know I sounded like a nut telling you (Pamela) that the file sizes were different. They were because it was an older version of the edits that I was using and that's what made it work.

I used the older version edits of function_editor.php that can be found here. Make only the following edits to your current function_editor.php file and it will work. At least it corrected the problem for me and it's now working on 3.8.2. You may still need to go to the membergroups and click on go.

Thanks a ton for this very helpful post.
Installed and confirmed working in 3.8.2 with the modified edits i quoted from another member.

trotskid 07-25-2009 01:27 AM

Quote:

Originally Posted by trotskid (Post 1826810)
I?m a bit lost. It?s possible to hide or disable the icon on the editor toolbar? (not to eliminate it because appears the icon target).

Thanks

Bump :)

RedHacker 08-13-2009 05:10 AM

How to fixed....?

RedHacker 08-17-2009 08:15 PM

In USERCP left not waw edit favorite smilies. I saw this thead had full support

Foxtrotelite 10-27-2009 02:19 PM

i had the 3.6 version. It didnt work for 3.8 ... never noticed that a 3.7 update came out until yesterday so i thought I would try it out on the newer vb version. I tried it on 3.8.4 and it works great!

thanks for the mod

SamirDarji 10-28-2009 05:53 AM

Quote:

Originally Posted by Foxtrotelite (Post 1906898)
I tried it on 3.8.4 and it works great!

Yay! Great to hear! This is one of the mods I plan to install for my users. :)

Leo Brazil 10-29-2009 03:53 PM

I've been using this mod from a long time, since 3.6 something ....always working fantastic, just some minor changes that people recomended here, even now with 3.8.4 PL1 still rocking.

I just hope this one will be updated for 4.0 one of the best mods I have running and people at my forums love it.

Pamela 11-24-2009 07:58 AM

Quote:

Originally Posted by Leo Brazil (Post 1907849)
I just hope this one will be updated for 4.0 one of the best mods I have running and people at my forums love it.

I hope so too! My members love this mod. :)

oxblood12 12-24-2009 01:30 AM

thanks testing

utahraves 12-24-2009 04:03 PM

People on my forums are mad I upgraded to 4.0 because their favorite smilies are gone - it would be FANTASTIC if this was released for 4.0 :D However, the creator of this plugin hasn't been on since May :(

Anne Lise 12-29-2009 10:56 AM

Can this please be changed to be compatibel with the 4.0-version?

Fungsten 12-29-2009 03:12 PM

Quote:

Originally Posted by Anne Lise (Post 1941415)
Can this please be changed to be compatibel with the 4.0-version?

Ditto.

captainron19 01-05-2010 04:56 PM

Yes please - we need for 4.0

House M.D. 01-09-2010 07:51 PM

4.0 4.0 4.0 Please!!!

House M.D. 01-12-2010 02:38 AM

Well, no luck getting in touch with the creator of this mod.

I am considering hiring a coder to take on this project. If you are interested in helping with the cost of having a mod made email me at speakphilly@gmail.com In return for helping with the expense of hiring a coder I would of course give you a copy of the mod in return.

At this point I have no idea how much a coder will cost. I hope to have an idea by sometime next week. email me at speakphilly@gmail.com with your questions.


All times are GMT. The time now is 03:14 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01472 seconds
  • Memory Usage 1,839KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (20)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete