Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.5 > vBulletin 3.5 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
vBTestimonials Details »»
vBTestimonials
Version: 1.0.1, by derekivey derekivey is offline
Developer Last Online: Jan 2010 Show Printable Version Email this Page

Version: 3.5.4 Rating:
Released: 02-05-2006 Last Update: 03-22-2006 Installs: 59
DB Changes Uses Plugins Template Edits
Additional Files  
No support by the author.

vBTestimonials
Developers: derekivey
Version: 1.0.1
vBulletin Version: 3.5.4
File Edits: 0
Template Edits: 2 (Optional)
New Phrases: 157
Uses Plugins: Yes!
Difficulty: Easy

Description: This hack adds a Testimonial system to your site, allowing your users to leave feedback about your products or services.

*** I Strongly Recommend That You Backup Before Installing/Upgrading This Hack! I am not responsible for any damage this hack causes to your forum, so backup! ***

Planned features for a later release:
  • Anything that is suggested.
Features Added To Version 1.0.1
  • Added Average Ratings
  • Added Categories Support
  • Got Rid of Some Hard Coded Text, Replaced with Phrases
Features Added To Version 1.0.0
  • Make the templates XHTML Transitional
  • Fixed WOL Bug
Features Added To Version 1.0.0 Beta 2
  • Added Report System
  • Made the templates look better
  • Added WOL Support (Partially, Will fix the rest of it in the next version)
Donations:
If you would like to make a donation, you may send it to me through PayPal.


I am still learning php, and will try and help you if you have any problems with this hack.

I have added screen shots of this hack in action below.

Please click If you installed this hack.

Thanks!

Supporters / CoAuthors

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #182  
Old 09-10-2006, 08:32 PM
derekivey derekivey is offline
 
Join Date: Apr 2005
Location: Pennsylvania, USA
Posts: 1,186
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I will try and release a new version of this hack soon. I am currently trying to finish the next version of my Toplist hack.

Derek
Reply With Quote
  #183  
Old 09-11-2006, 04:04 PM
Nuguru Nuguru is offline
 
Join Date: Jun 2006
Posts: 93
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by derekivey
Ok, I will see if I can come up with a fix.

Derek
Derek,

At this time I still have those 2 plugins disabled as you suggested and I am waiting in limbo for a fix here. Can you let me know if your going to be able to fix this Who's Online problem related to vBTestimonials?

Thank You,

Nuguru
Reply With Quote
  #184  
Old 09-11-2006, 06:45 PM
derekivey derekivey is offline
 
Join Date: Apr 2005
Location: Pennsylvania, USA
Posts: 1,186
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I am still looking into it. Just leave them disabled for now, they aren't really important, the WOL will just say unknown location until they are enabled, I will release a fix as soon as I can figure out what is wrong.

Thanks,
Derek
Reply With Quote
  #185  
Old 09-14-2006, 01:16 AM
paul41598's Avatar
paul41598 paul41598 is offline
 
Join Date: Jun 2004
Location: MI
Posts: 732
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I have a fix for this who's online issue (that works for me at least)

Go into your plugin manager & find:

Title: vBTestimonials WOL 2
Hookname: online_location_unknown

Get rid of all the code and replace it with this:


PHP Code:
if ($userinfo['activity'] == 'Adding Testimonial')

    
$userinfo['where'] = '<a href="vbtestimonials.php?'.$vbulletin->session->vars[sessionurl].'do=add">'.$vbphrase['vbtestimonials_adding_testimonial'].'</a>'
        
$userinfo['action'] = $vbphrase['vbtestimonials_adding_testimonial']; 
        
$handled true;
}
else if (
$userinfo['activity'] == 'Editing Testimonial')
{
    
$userinfo['where'] = '<a href="vbtestimonials.php?'.$vbulletin->session->vars[sessionurl].'do=edit">'.$vbphrase['vbtestimonials_editing_testimonial'].'</a>'
        
$userinfo['action'] = $vbphrase['vbtestimonials_editing_testimonial']; 
        
$handled true;
}
else if (
$userinfo['activity'] == 'Deleting Testimonial')
{
    
$userinfo['where'] = '<a href="vbtestimonials.php?'.$vbulletin->session->vars[sessionurl].'do=delete">'.$vbphrase['vbtestimonials_deleting_testimonial'].'</a>'
        
$userinfo['action'] = $vbphrase['vbtestimonials_deleting_testimonial']; 
        
$handled true;
}
else if (
$userinfo['activity'] == 'Reporting Testimonial')
{
    
$userinfo['where'] = '<a href="vbtestimonials.php?'.$vbulletin->session->vars[sessionurl].'do=report">'.$vbphrase['vbtestimonials_reporting_testimonial'].'</a>';
    
$userinfo['action'] = $vbphrase['vbtestimonials_reporting_testimonial'];
    
$handled true;
}
else if (
$userinfo['activity'] == 'Viewing Testimonials')
{
    
$userinfo['where'] = '<a href="vbtestimonials.php?'.$vbulletin->session->vars[sessionurl].'">'.$vbphrase['vbtestimonials_viewing_testimonials'].'</a>';
    
$userinfo['action'] = $vbphrase['vbtestimonials_viewing_testimonials'];
    
$handled true;

Reply With Quote
  #186  
Old 09-14-2006, 09:15 AM
maroceve maroceve is offline
 
Join Date: Oct 2005
Location: Casablanca, Morocco
Posts: 232
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

first one to try the fix.

works like a charm.

thanks !
Reply With Quote
  #187  
Old 09-14-2006, 07:15 PM
derekivey derekivey is offline
 
Join Date: Apr 2005
Location: Pennsylvania, USA
Posts: 1,186
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by maroceve
first one to try the fix.

works like a charm.

thanks !
Thank you for confirming that it works. I will have the fix in the next version and give paul41598 credit in the code for fixing it.

Derek
Reply With Quote
  #188  
Old 09-21-2006, 12:01 PM
bashy bashy is offline
 
Join Date: Nov 2005
Posts: 2,544
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi Derek

I have a suggestion or 2 please?

1. How can i make it so only the title and catergory shows (or just title)
2. Is there any way peeps can add a comment should they wish to?

These might be a little out there but they would be great additions to the way i am using this hack
Reply With Quote
  #189  
Old 09-21-2006, 06:36 PM
Lionel Lionel is offline
 
Join Date: Dec 2001
Location: Delray Beach, Florida
Posts: 3,277
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

works in 3.60 too. I had to use Paul's fix. Everyone was showing up as viewing testimonials even though it was not public yet
Reply With Quote
  #190  
Old 09-21-2006, 09:36 PM
derekivey derekivey is offline
 
Join Date: Apr 2005
Location: Pennsylvania, USA
Posts: 1,186
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by bashy
1. How can i make it so only the title and catergory shows (or just title)
Not sure what you mean about this. Can you give me some example or something?

Quote:
Originally Posted by bashy
2. Is there any way peeps can add a comment should they wish to?
Not currently, I'll try and add it to the next version.
Reply With Quote
  #191  
Old 09-22-2006, 04:44 AM
nimonogi nimonogi is offline
 
Join Date: Sep 2006
Posts: 23
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Is it able this hack to configure so your are able place testimonials on users? User-to-User.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 11:12 PM.


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.06668 seconds
  • Memory Usage 2,328KB
  • Queries Executed 26 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)bbcode_php
  • (4)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete