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

Reply
 
Thread Tools
Product Review Forums ? Research, Review & Compare Items Details »»
Product Review Forums ? Research, Review & Compare Items
Version: 1.4.0, by Ted S Ted S is offline
Developer Last Online: Nov 2020 Show Printable Version Email this Page

Category: Major Additions - Version: 4.x.x Rating:
Released: 09-06-2011 Last Update: 04-05-2014 Installs: 214
DB Changes Uses Plugins Auto-Templates
Additional Files  
No support by the author.

Version 1.4.0 has been released to remove the giftery / list it integration of the addon now that service has been discontinued. No upgrade is needed though there have been a few other bug changes since 1.3.5.

Finding Feedback Can be Like a Needle in a Haystack


The more your forum grows, the more of a challenge it becomes to sort through the history and get the full story.


Product Review Forums Brings Structure to the Chaos


As a full-featured product management addon, PRF sits on top of your forum allowing you to create defined products which, unlike individual posts, stay relevant over time. Each comment, review and even product updates filter back into this one spot allowing for a quick and comprehensive overview while the individual discussions rage on as always.


Here's just a few of the many features you'll find in PRF:
  • Bring structure to products with established pages & reviews
  • Reduce the number of repetitive posts from members looking up the same info
  • Increase your traffic with content-rich, seo friendly, product listings
  • Drive revenue by adding your own affiliate links to product listings
  • Increase the activity stream's value with review integration
  • Engage visitors with integrated wishlists from Giftery.me
===========================

Installation is not upload & go... individualized settings are required. Read the install file.


===========================
QUICK TIPS:
===========================

Enabling Product Forums: To show product details and ratings, each product-forum must be enabled in the forum manager.

Adding Products: You may upload products one at a time through the admin [includes an image uploader using GD] or you can bulk import through XML. You can also enable users to add moderated products through a global and usergroup option.

Product Review Index: To access your forum's product overview go to www.yoursite.com/productforums.php - You may want to add a link to this to your navbar or as a tab.

Customization: This addon is made to be customized. To change the color schema see clientscript/vbulletin_css or dive right on in to the templates and phrases.

Powered by Giftery.me: This mod is maintained includes two integrations you should know about. Both can be controlled through the mod options.

Download Now

File Type: zip Product Review Forums v1.4.0.zip (107.4 KB, 227 views)

Screenshots

File Type: jpg Untitled-1.jpg (45.4 KB, 0 views)
File Type: jpg Untitled-2.jpg (79.4 KB, 0 views)
File Type: jpg Untitled-3.jpg (70.0 KB, 0 views)
File Type: jpg Untitled-4.jpg (76.3 KB, 0 views)
File Type: jpg Untitled-5.jpg (62.0 KB, 0 views)

Show Your Support

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

Comments
  #382  
Old 01-18-2012, 06:32 PM
The Ottoman The Ottoman is offline
 
Join Date: Nov 2005
Posts: 86
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

If I wanted to add a search by MFG instead of price, I understand that I will need to edit the productforums.php. I am just wondering if you could point me in the direction of what to edit.

Also, I'd like to have the mfg show up in the table that gets displayed.
Reply With Quote
  #383  
Old 01-18-2012, 06:55 PM
Ted S Ted S is offline
 
Join Date: Dec 2003
Location: SoCal
Posts: 3,954
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Killhunter View Post
If you want to add in a browser-side resize by all means go right ahead but IMO that's not a solution as you're not actually resizing the image, you're just forcing it to show up smaller. This means the height could be a mile tall on the image and the full file still has to be downloaded so if it's really large, the site's speed is impacted.
Reply With Quote
  #384  
Old 01-18-2012, 07:00 PM
Ted S Ted S is offline
 
Join Date: Dec 2003
Location: SoCal
Posts: 3,954
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by The Ottoman View Post
If I wanted to add a search by MFG instead of price, I understand that I will need to edit the productforums.php. I am just wondering if you could point me in the direction of what to edit.

Also, I'd like to have the mfg show up in the table that gets displayed.
All of this is in productforums.php

First you'll have to add the mfrg to the input variables accepted around line 63 replace:

Code:
$vbulletin->input->clean_array_gpc('r', array(
        'catid'             => TYPE_INT,
        'title'             => TYPE_STR,
        'productid'     => TYPE_UINT,
        'min_price'     => TYPE_INT,
        'max_price'     => TYPE_INT,
        'min_rating'     => TYPE_UINT,
        'max_rating'     => TYPE_UINT,
        'posted'             => TYPE_UINT,
        'mfrg'                 => TYPE_STR
    ));
Next we have to search the database using a LIKE so we get some degree of fuzzy matching around 99 add:

Code:
if($vbulletin->GPC['mfrg']){ $conditions .= " AND pfp.mfrg LIKE '%". mysql_real_escape_string($vbulletin->GPC['mfrg']) ."%'"; } // mfrg of product
And then we have to be sure the variable persists from page to page line 164 add:

Code:
$sortaddon .= ($vbulletin->GPC['mfrg']) ? 'mfrg=' . $vbulletin->GPC['mfrg'] . '&' : '';
You'll have to edit the template to add a new form field, name of mfrg

Of course it would be more ideal to generate a list of manufacturers and let people pick via dropdown. Next update can do that.
Reply With Quote
  #385  
Old 01-18-2012, 07:01 PM
Ted S Ted S is offline
 
Join Date: Dec 2003
Location: SoCal
Posts: 3,954
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by The Ottoman View Post
Holy crap!, that was easy.

You may however want to adjust your sample XML file to have another sample product in it instead od the single one. It took me a little bit to figure out why Excel was only mapping a single line. If you have two sample products, the XML mapping understands how to handle multiple lines then.
Awesome and will do!
Reply With Quote
  #386  
Old 01-18-2012, 07:11 PM
Killhunter Killhunter is offline
 
Join Date: Jul 2011
Posts: 126
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Ted S View Post
If you want to add in a browser-side resize by all means go right ahead but IMO that's not a solution as you're not actually resizing the image, you're just forcing it to show up smaller. This means the height could be a mile tall on the image and the full file still has to be downloaded so if it's really large, the site's speed is impacted.
And you cant add this or say me how i could do that?
Reply With Quote
  #387  
Old 01-18-2012, 07:22 PM
The Ottoman The Ottoman is offline
 
Join Date: Nov 2005
Posts: 86
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Ted S View Post
Of course it would be more ideal to generate a list of manufacturers and let people pick via dropdown. Next update can do that.
Well if that's comning soon, I can easily wait for that.

Thanks!!
Reply With Quote
  #388  
Old 01-18-2012, 08:45 PM
Ted S Ted S is offline
 
Join Date: Dec 2003
Location: SoCal
Posts: 3,954
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Killhunter View Post
And you cant add this or say me how i could do that?
As I said before, adding an entire image uploading, file management, resizing and display class is not simple when it has to work on a infinite number of site configurations all of whom want their own specific file saving and display options -- which is why the mod uses urls right now.

If you want to add your own forced resize open up the review template and add a width="X" height="Y" into the <img> tag where you define either a max width or height... However that will not actually resize the image, it just forces it to look smaller while still downloading the entire file and potentially altering the aspect ratio or distorting the page.
Reply With Quote
  #389  
Old 01-18-2012, 08:46 PM
Ted S Ted S is offline
 
Join Date: Dec 2003
Location: SoCal
Posts: 3,954
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by bigtree View Post
Can't we use the vbulletin editor for this? That would make the most sense.
Use the editor for what?
Reply With Quote
  #390  
Old 01-18-2012, 08:48 PM
Ted S Ted S is offline
 
Join Date: Dec 2003
Location: SoCal
Posts: 3,954
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by cowcowcow View Post
Eagerly anticipating the next version
Anything in particular you hope to see in the update?
Reply With Quote
  #391  
Old 01-18-2012, 11:36 PM
Ted S Ted S is offline
 
Join Date: Dec 2003
Location: SoCal
Posts: 3,954
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Is there a feature or tweak you'd like to see make it into this mod? We'll be doing a feature release this week / weekend and while it won't include everything, chime in and we'll try to sneak it in.

Here's what's planned:

Planned Changes [Week of 1/16]
- Profile link to a search of a user's top posts [admin option]
- Post level link to the number of votes, good votes, or ratio for a user's posts [admin option]
- WYSIWYG editor for writing a review
- Search by manufacturer [dropdown]
- Cleaned up search page & results page
- Bug fixes here and there
Reply With Quote
Благодарность от:
The Ottoman
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 07:44 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05620 seconds
  • Memory Usage 2,373KB
  • 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
  • (3)bbcode_code
  • (8)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (4)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (13)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (2)post_thanks_postbit
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (6)postbit_attachment
  • (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
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete