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
  #1082  
Old 07-21-2012, 07:03 AM
Ted S Ted S is offline
 
Join Date: Dec 2003
Location: SoCal
Posts: 3,954
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Kirk Fitzgerald View Post
In Product Listing page I see this in page source:
Code:
<img src="\productphotos\50014e732fa54_full.jpg">
You'll need to add a new product or edit the photo on an existing one.

This version of admincp/productforums.php will let you edit images even if there was already an upload.
Attached Files
File Type: php productforums.php (76.2 KB, 8 views)
Reply With Quote
  #1083  
Old 07-21-2012, 08:38 AM
Kirk Fitzgerald's Avatar
Kirk Fitzgerald Kirk Fitzgerald is offline
 
Join Date: Apr 2012
Location: Oxford, UK
Posts: 139
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Ted S View Post
You'll need to add a new product or edit the photo on an existing one.

This version of admincp/productforums.php will let you edit images even if there was already an upload.
Adding a new product works perfectly, editing an existing product image is also working.

So I will need to edit the images of all existing products to make the images work properly, bit of a pain but I can live with that, thank you for some seriously excellent and first rate support Ted, you're a heck of a fine chap. :up:
Reply With Quote
  #1084  
Old 07-21-2012, 06: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 Kirk Fitzgerald View Post
Adding a new product works perfectly, editing an existing product image is also working.

So I will need to edit the images of all existing products to make the images work properly, bit of a pain but I can live with that, thank you for some seriously excellent and first rate support Ted, you're a heck of a fine chap. :up:
We can fix this with a simple query...

Code:
update pf_product set mainphoto = replace(mainphoto, '\\productphotos\\', 'productphotos/');
update pf_product set mainphoto_thumb = replace(mainphoto_thumb, '\\productphotos\\', 'productphotos/');
update pf_product set mainphoto_small = replace(mainphoto_small, '\\productphotos\\', 'productphotos/');
Or something along those lines depending on your current image paths.

[Note: to replace \ you must escape it with another \ thus \\]
Reply With Quote
  #1085  
Old 07-21-2012, 08:32 PM
Kirk Fitzgerald's Avatar
Kirk Fitzgerald Kirk Fitzgerald is offline
 
Join Date: Apr 2012
Location: Oxford, UK
Posts: 139
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Ted S View Post
We can fix this with a simple query...

Code:
update pf_product set mainphoto = replace(mainphoto, '\\productphotos\\', 'productphotos/');
update pf_product set mainphoto_thumb = replace(mainphoto_thumb, '\\productphotos\\', 'productphotos/');
update pf_product set mainphoto_small = replace(mainphoto_small, '\\productphotos\\', 'productphotos/');
Or something along those lines depending on your current image paths.

[Note: to replace \ you must escape it with another \ thus \\]
What a star, I used this:

Code:
update pf_product set mainphoto = replace(mainphoto, '\\productphotos\\', 'productphotos/');
update pf_product set mainphoto_thumb = replace(mainphoto_thumb, '\\productphotos\\', 'productphotos/');
update pf_product set mainphoto_small = replace(mainphoto_small, '\\productphotos\\', 'productphotos/');
and everything is fine, just had to re-upload an image for the one I changed earlier and it's working properly now.

Thank you Ted.
Reply With Quote
  #1086  
Old 07-21-2012, 09:05 PM
Ted S Ted S is offline
 
Join Date: Dec 2003
Location: SoCal
Posts: 3,954
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Kirk Fitzgerald View Post
What a star, I used this:

Code:
update pf_product set mainphoto = replace(mainphoto, '\\productphotos\\', 'productphotos/');
update pf_product set mainphoto_thumb = replace(mainphoto_thumb, '\\productphotos\\', 'productphotos/');
update pf_product set mainphoto_small = replace(mainphoto_small, '\\productphotos\\', 'productphotos/');
and everything is fine, just had to re-upload an image for the one I changed earlier and it's working properly now.

Thank you Ted.
Images aside, how's the rest of the addon working for you?
Reply With Quote
  #1087  
Old 07-21-2012, 09:29 PM
Kirk Fitzgerald's Avatar
Kirk Fitzgerald Kirk Fitzgerald is offline
 
Join Date: Apr 2012
Location: Oxford, UK
Posts: 139
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Ted S View Post
Images aside, how's the rest of the addon working for you?
Images aside, the addon works without flaw or error, the improvements in 1.3 are absolutely breath-taking, very very excited about the coming stable release.
Reply With Quote
  #1088  
Old 07-21-2012, 09:49 PM
Ted S Ted S is offline
 
Join Date: Dec 2003
Location: SoCal
Posts: 3,954
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

With the release of 1.3.1 stable we wanted to provide a quick recap on how to upgrade. While the process is straight forward and quick, the new image uploading and other features do make it important to go through a few extra steps so please read on and ask if you have any questions:

1. Start with a backup of your forum for this or any other mod you install.

2. Download the latest version of PRF and upload the contents of the upload folder to your forum directory

3. From your AdminCP update the Product Forums plugin package to the included file

4. Review the main addon settings paying special attention to the new upload and image paths if you wish to use the image uploading features

5. Run the image sync script to convert existing images from external links to local images [requires cURL and GD]

6. Post your comments / suggestions whether they're good, bad or indifferent back here for us, and everyone else in the community

This is a major update and as such you'll see changes throughout the templates and phrases. As always we encourage you to make the mod your starting place and customize beyond it with the options and your own adjustments.

For those who wish to use the image uploader & sync script
you will need to have cURL and GD installed on your server and be able to create a writeable folder for images to be saved in. Images can be processed either one at a time by editing an existing product or in bulk by using the sync images link which will fetch all external images and resize, localize and update them [credit too Simon Jarvis].


The complete install & customization guide can be found @ http://www.giftery.me/productforums/howto/
Reply With Quote
  #1089  
Old 07-21-2012, 10:31 PM
Ted S Ted S is offline
 
Join Date: Dec 2003
Location: SoCal
Posts: 3,954
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Wondering what's new? Here's the main changes [yes, there's a lot of them]
  • Customizable rating options... yes/no, 5-star and text freeform
  • Product images. You upload, we resize [gd required]
  • Bulk image importing from external links [curl & gd required]
  • Thumbnails all over... the product index, even forum display
  • Activity Stream updates when a review is posted
  • Support for user-selected thread prefixes
  • Automatic add product links for the user
  • Improvements to product management for speedier changes
  • Cleaned up product adding interfaces for admin use
  • Lots of small tweaks, bug fixes and other changes
See the full change log @ http://www.giftery.me/productforums/changelog
Reply With Quote
  #1090  
Old 07-21-2012, 10:45 PM
RPSmedia RPSmedia is offline
 
Join Date: Feb 2010
Posts: 72
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi Ted, great product and you saved me lots of money with this. I've got the beta working good but the only thing is I can't find where users can upload the pictures.

Thanks.
Reply With Quote
  #1091  
Old 07-22-2012, 05:16 AM
Ted S Ted S is offline
 
Join Date: Dec 2003
Location: SoCal
Posts: 3,954
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by RPSmedia View Post
Hi Ted, great product and you saved me lots of money with this. I've got the beta working good but the only thing is I can't find where users can upload the pictures.

Thanks.
They don't. For a variety of reasons we opted not to build this into 1.3, or at least not uploads. Of course end users can specify a link for an image which, if you run the sync script, will get converted in.
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 06:14 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.06751 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
  • (5)bbcode_code
  • (7)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
  • (5)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
  • (7)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