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
  #292  
Old 11-15-2011, 10:00 PM
downloadsuk downloadsuk is offline
 
Join Date: Jul 2010
Location: China
Posts: 64
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Ted S View Post
If you want to customize your url structure it would take a bit of work to find each link but should not be difficult to add a title too and then remap with htaccess as you see fit.
Hi Ted - I must admit, I am struggling with this. I can find the links, but I am not sure which variable I need to add in order for the product name to be added to the URL - using {vb:raw title} for example causes the URL to have a number of spaces in it - which is obviously messy.

I would quite like to do this for the Categories as well, so it would look like mypage.com/category/computers - rather than mypage.com/productforums.php?catid=1

Any help would be much appreciated on this.

Will you be adding the option for custom fields? It's the main thing holding me back from adding hundreds/thousands of products with the bulk upload.

Also, speaking of the bulk upload - do you have any data mapping services you would recommend? It's taking me quite a long time to organise the data in Excel and then format it to the required XML format. I know you mentioned before that CSV upload wasn't an option - but this would be a million times easier.

Finally, I know we spoke before about mass editing - I'm concerned that with all the data being uploaded, it is likely to change on a regular basis - could an option be created whereby if a product is added with a matching SKU to a previous product, then it overwrites the previous fields?

Many thanks for your Mod again.
Reply With Quote
  #293  
Old 11-15-2011, 11: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 downloadsuk View Post
Hi Ted - I must admit, I am struggling with this. I can find the links, but I am not sure which variable I need to add in order for the product name to be added to the URL - using {vb:raw title} for example causes the URL to have a number of spaces in it - which is obviously messy.
The script doesn't do this, you'd have to either build it yourself or make a manual mapping through htaccess to trick things.

For example, you can edit the plugin to output a second variable, {vb:raw urltitle} which runs through the php function urlencode() first or which has spaces and special characters removed / converted.

Code:
$product['urltitle'] = str_replace(" ", "-", $product['title']); // spaces become dashes
$product['urltitle'] = preg_replace("/[^A-Za-z0-9\_\- ]/", '', $product['urltitle']); // removes anything but letters, numbers, dashes and underlines
Quote:
Originally Posted by downloadsuk View Post
Will you be adding the option for custom fields? It's the main thing holding me back from adding hundreds/thousands of products with the bulk upload.
Assuming the mod keeps picking up use, yes, we will be.

Quote:
Originally Posted by downloadsuk View Post
Also, speaking of the bulk upload - do you have any data mapping services you would recommend? It's taking me quite a long time to organise the data in Excel and then format it to the required XML format. I know you mentioned before that CSV upload wasn't an option - but this would be a million times easier.
CSV is a pain to parse as you're counting by the number of comma separated items, not the element names. That means you still have to build the structure, but if you mess up with a single column or special character, the row is skipped or, as is so often the case, gets brought in incorrectly.

I'm sure there's a tool that can convert out from CSV and over to XML easily.

Quote:
Originally Posted by downloadsuk View Post
Finally, I know we spoke before about mass editing - I'm concerned that with all the data being uploaded, it is likely to change on a regular basis - could an option be created whereby if a product is added with a matching SKU to a previous product, then it overwrites the previous fields?
Right now the XML importer throws away duplicates but we can certainly have it update records instead keying off of a UPC / SKU / title match.
Reply With Quote
  #294  
Old 11-17-2011, 03:22 AM
bigtree bigtree is offline
 
Join Date: Jan 2009
Posts: 127
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

If it had an editor, used the vbulletin editor I'd be all over this.

As far as how it is right now, Its simple and to the point. I like that. When do you think you will add the editor Ted? I'm hanging on a thread here waiting to start using this.
Reply With Quote
  #295  
Old 11-17-2011, 05:02 AM
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
As far as how it is right now, Its simple and to the point. I like that. When do you think you will add the editor Ted? I'm hanging on a thread here waiting to start using this.
We haven't scoped the next feature release yet to know how much work is involved but given how busy commerce is this time of year, it will likely be a few weeks.
Reply With Quote
  #296  
Old 11-17-2011, 03:50 PM
tele955848 tele955848 is offline
 
Join Date: Nov 2008
Posts: 110
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Zeigt mir keine Fotos oder den Verkaufstext an??
Quote:
This is an empty post
Reply With Quote
  #297  
Old 11-17-2011, 04:13 PM
downloadsuk downloadsuk is offline
 
Join Date: Jul 2010
Location: China
Posts: 64
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Ted S View Post
The script doesn't do this, you'd have to either build it yourself or make a manual mapping through htaccess to trick things.

For example, you can edit the plugin to output a second variable, {vb:raw urltitle} which runs through the php function urlencode() first or which has spaces and special characters removed / converted.

Code:
$product['urltitle'] = str_replace(" ", "-", $product['title']); // spaces become dashes
$product['urltitle'] = preg_replace("/[^A-Za-z0-9\_\- ]/", '', $product['urltitle']); // removes anything but letters, numbers, dashes and underlines
Thanks Ted - will give it a shot.

On another note, is there any possibility of expanding the search options to search for all relevant keywords in the description as well? For example, at the moment a user can search by title, but say they were looking for reviews of a particular product type, say Black Television, or Smart phone - and these words aren't included in the title, then they don't appear in the search or filter results - it's not the best user experience.

Additionally, allowing a user to sort reviews by say price, or popularity (views) or # of reviews, or even newest first would also be helpful.

Thanks.
Reply With Quote
  #298  
Old 11-18-2011, 01:25 AM
Ted S Ted S is offline
 
Join Date: Dec 2003
Location: SoCal
Posts: 3,954
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by tele955848 View Post
Zeigt mir keine Fotos oder den Verkaufstext an??
Support is offered in english and english only.
Reply With Quote
  #299  
Old 11-18-2011, 01:26 AM
Ted S Ted S is offline
 
Join Date: Dec 2003
Location: SoCal
Posts: 3,954
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by downloadsuk View Post
Thanks Ted - will give it a shot.

On another note, is there any possibility of expanding the search options to search for all relevant keywords in the description as well? For example, at the moment a user can search by title, but say they were looking for reviews of a particular product type, say Black Television, or Smart phone - and these words aren't included in the title, then they don't appear in the search or filter results - it's not the best user experience.

Additionally, allowing a user to sort reviews by say price, or popularity (views) or # of reviews, or even newest first would also be helpful.

Thanks.
Certainly possible however we'll likely need to move the mod over to a FULLTEXT index to allow for a more sophisticated matching process rather than looking up individual words. We've come up with a weighting system that makes this work better than many are use to with similar searches but it does slow down the speed of the addon and is certainly not a perfect search solution
Reply With Quote
  #300  
Old 11-18-2011, 07:30 PM
qpurser qpurser is offline
 
Join Date: Jul 2011
Posts: 275
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I just saw your mod and installed it. Something I have been looking for a long time and thank you for putting this together.

I just have a few questions:
  • Your mod doesn't create a link to the "productforums.php" page. Correct?
  • We have a closed membership forum and "adding an new product" doesn't really need a "approval" from the mods. Can this be turned off?
  • I might have understand the instructions wrong but I created a dedicated forum for the "product reviews" and added the id from this forum in the Cpanel. This doesn't mean if somebody posts a new thread in this forum it will be added automatically to your mod. Correct? but users have to go via the link in the "productforums.php" page?
Thanks for any help
Reply With Quote
  #301  
Old 11-18-2011, 08:36 PM
Ted S Ted S is offline
 
Join Date: Dec 2003
Location: SoCal
Posts: 3,954
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by qpurser View Post
  • Your mod doesn't create a link to the "productforums.php" page.
Correct. Every site is different so we leave it up to you to decide where you want it to be linked too.


Quote:
Originally Posted by qpurser View Post
  • We have a closed membership forum and "adding an new product" doesn't really need a "approval" from the mods. Can this be turned off?

You're the first to ask so it's not a feature option. Making the change however would be simple... If you want the raw code edits let me know.


Quote:
Originally Posted by qpurser View Post
  • I might have understand the instructions wrong but I created a dedicated forum for the "product reviews" and added the id from this forum in the Cpanel. This doesn't mean if somebody posts a new thread in this forum it will be added automatically to your mod. Correct? but users have to go via the link in the "productforums.php" page?
When you designate a forum as a product-forum area, threads can be created with product data but do not have to be created this way. The new thread button will still trigger normal posting [if enabled at all] while a link to productforums.php start the new product.


Most installs turn off posting in that forum and use the link in productforums.php to startup products since this is not a common task. Reviews are started from within a product thread.
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 07:40 PM.


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.06290 seconds
  • Memory Usage 2,375KB
  • 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
  • (2)bbcode_code
  • (13)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
  • (12)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)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