vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Major Additions - Product Review Forums ? Research, Review & Compare Items (https://vborg.vbsupport.ru/showthread.php?t=269808)

Ted S 06-30-2012 11:13 PM

Quote:

Originally Posted by snotek (Post 2344166)
I did that and it seems to work fine. It still doesn't show the currency symbol. Are there any plans to support multiple currencies? Maybe a dropdown in the add product with all the known currency symbols? (most used on top)

It's just a data field so you can type in whatever you want... The phrase element puts the dollar sign in for you [and is corrected for the next release].

Quote:

That would probably be sufficient for most general formatting. css support (in addition to others perhaps) would be boss.
Plan is full HTML to use what manufacturers provide. BBCode is the fallback.

Quote:

I use a plugin that works (I think) the way the built-in vB "retreive file and store locally" bit feature is supposed to. If any image is linked to in a post it will cache it locally and re-reference the image. This way if a link goes dead/bad the data retains its integrity. We also use one that watermarks the images too. It may take a second to load up the product but who cares? If they're importing an xml (list) then they just get a progress bar.
Heh, much easier said than done. Just building a progressive processing system is many hours of work for a single setup... Remember, what works for the user doesn't exist in the admin at all either.

Try to make it work across every possible install type [remember, most forums are on some crummy virtual host with no permissions to write too] and it gets really crazy. The vB uploader uses the database to get around this but it's not ideal either.

Quote:

How do normal users create products? It doesn't say in the instructions or screenshots. I have given the ability for Registered Users group to create products.
Enable the option, enable the usergroup [like actually hit save so the bitfield gets updated] and a link appears on productforums.php

In 1.3.0 this will also add a link in the product forum.

Ted S 07-01-2012 07:51 AM

Alright gang, getting some great feedback here and while it's long overdue we've got a new release coming that tweaks a number of thing, cleans up an awful lot in configuration and brings in a few new features.

So I'm taking a last call on feedback. Something you want? Speak up now and it may just happen in 1.3.0.

Kirk Fitzgerald 07-01-2012 10:01 AM

Is there any way to stipulate a separate forum for member added products awaiting moderation to be held until they are accepted in the admin panel. Would it be possible for the thread to be automatically duplicated or moved to the normal products forum once accepted by admin?

Brilliant mod by the way. :)

Ted S 07-01-2012 05:34 PM

Quote:

Originally Posted by Kirk Fitzgerald (Post 2344235)
Is there any way to stipulate a separate forum for member added products awaiting moderation to be held until they are accepted in the admin panel. Would it be possible for the thread to be automatically duplicated or moved to the normal products forum once accepted by admin?

Brilliant mod by the way. :)

Not sure why you'd need to hold it in another forum but I'll take a look at moderation and we can be sure it's truly "hidden" and then "activated".

snotek 07-01-2012 11:38 PM

Quote:

Heh, much easier said than done. Just building a progressive processing system is many hours of work for a single setup... Remember, what works for the user doesn't exist in the admin at all either.

Try to make it work across every possible install type [remember, most forums are on some crummy virtual host with no permissions to write too] and it gets really crazy. The vB uploader uses the database to get around this but it's not ideal either.
Could you just look at the plugin that does it and maybe tie into it if it's installed? Or at least check their method? It seems to work well as-is. This is it.

Quote:

It's just a data field so you can type in whatever you want... The phrase element puts the dollar sign in for you [and is corrected for the next release].
It wasn't adding in any sign until I manually put it in the productforums_listed_bit template. What I mean by multiple currency support is on a per product basis. Some products are manufactured in other countries and are small scale enough to only be purchasable through the manufacturer - in these cases the product is listed in, say, british pounds, or japanese yen - not us dollars. So when we add a single product, or import a large amount of products, the all have to have the same currency currently. The request would be to allow each product to have its own currency, and whatever is selected there will be displayed on the product page. So in essence we could have products in our "catalog" that are from several difference currencies. I would think a db field for the product and a dropdown box for the currency would be sufficient?

Quote:

So I'm taking a last call on feedback. Something you want? Speak up now and it may just happen in 1.3.0.
So when is 1.3.0 coming out because I'm still having formatting issues. :) I haven't tried CSS yet, but I have tried all manner of html and bbcode, it all seems to get stripped. It also ignores all <br> style code and carriage returns. Your screenshot here shows at least bullets, but there is no text above to demonstrate if it will successfully process spacing and/or indentation. Is this possible in the current version? If so, how is it done?

Also, in the config it may be handy to, say, put a checkbox next to the fields you want displayed on the "add product" form. As is our case we want the Registered Users group to be able to add products but we have no use for some of those fields. I just edited the template to remove them but that will get lost with any upgrades v.s. you storing what fields we want in the db.

Having an option to enable/disable the forumdisplay.php modification instead of having to edit the templates manually.

Hope that's enough to make the cutoff, I'll post more if I can think of em. :)

Ted S 07-02-2012 12:10 AM

Quote:

Originally Posted by snotek (Post 2344397)
Could you just look at the plugin that does it and maybe tie into it if it's installed? Or at least check their method? It seems to work well as-is. This is it.

Interesting approach for snagging the images... It's not a caching script [no expire headers that I see] but it's smart.

We found a middle-ground that I like and will let people upload an image through the individual product adder, resize that into a 400x400, 100x100 and 40x40 to use or, for those using the bulk import, they can specify each of these paths and resize how they see fit.

Quote:

It wasn't adding in any sign until I manually put it in the productforums_listed_bit template. What I mean by multiple currency support is on a per product basis. Some products are manufactured in other countries and are small scale enough to only be purchasable through the manufacturer - in these cases the product is listed in, say, british pounds, or japanese yen - not us dollars. So when we add a single product, or import a large amount of products, the all have to have the same currency currently.
Actually they don't... The $ is simply a phrase that you can remove leaving the price as whatever you type. You can enter that as $199 199 CAD, € 199, etc. As long as it's UTF-8 it will save and show.

As I'll note below there's a difference between putting things into the DB because you can and because most people will use it if you do. Adding a field for product-by-product currency is not likely to be used much, making it possible through the field type, same result.

Quote:

So when is 1.3.0 coming out because I'm still having formatting issues. :) I haven't tried CSS yet, but I have tried all manner of html and bbcode, it all seems to get stripped. It also ignores all <br> style code and carriage returns. Your screenshot here shows at least bullets, but there is no text above to demonstrate if it will successfully process spacing and/or indentation. Is this possible in the current version? If so, how is it done?
I've had no issues with breaks or lists but it seems like vBulletin css is overriding a lot of tags thus you get no bold with <strong>, etc. I hate saying it's not our fault but it's not... Your css, your forum settings, not ours to control :(

BBCode is safer even if it's more limited... So that's that.

Quote:

Also, in the config it may be handy to, say, put a checkbox next to the fields you want displayed on the "add product" form. As is our case we want the Registered Users group to be able to add products but we have no use for some of those fields. I just edited the template to remove them but that will get lost with any upgrades v.s. you storing what fields we want in the db.
Good suggestion but again it's time versus return. Everything we make a database option has to be built on the backend and sorted out on the front. So if for example purchase links were dynamic you'd need to have that field accessible and a way to mark fields as urls. How about price + currency? Headline vs substringing the main details? Think that through a bit and the next release would be 6 months out.

We'll be adding some dynamic fields to 1.3 taking in more data but this will be in the form of sub-rankings and either 1-5 or yes/no. Two flavors that we can easily predict and handle to extend no matter how many are enabled.

Basically it's finding that happy medium between what would be nice and what's used by most forums. Mods are a starting place and if you're not customizing them, you're not doing it right :D

Quote:

Having an option to enable/disable the forumdisplay.php modification instead of having to edit the templates manually.
As noted in the install file, vBulletin doesn't provide a hook to replace the contents of that template so scream, post, beg, ask, that's _unfortunately_ what it's going to take to make the change.

snotek 07-02-2012 12:24 AM

blerg. noted. :)

Kirk Fitzgerald 07-02-2012 11:30 AM

Quote:

Originally Posted by Ted S (Post 2344315)
Not sure why you'd need to hold it in another forum but I'll take a look at moderation and we can be sure it's truly "hidden" and then "activated".

It is not necessary now, I am using Lynn's two column forum layout and it made the forums look awful with a single forum to the left and an empty space to the right of the category I has created for this mod's thread to be held. I added a request forum to the products category for retailers to use to submit their proposals to be used in the link to Purchases and it's fine now.

Thank you for considering it all the same. :)

Ted S 07-02-2012 06:53 PM

Show me a screenshot and I'm sure I can have the team find a workaround for you...

Ramsesx 07-04-2012 08:57 AM

Quote:

Originally Posted by Ted S (Post 2344223)
Alright gang, getting some great feedback here and while it's long overdue we've got a new release coming that tweaks a number of thing, cleans up an awful lot in configuration and brings in a few new features.

So I'm taking a last call on feedback. Something you want? Speak up now and it may just happen in 1.3.0.

Cool, this would be a good start:
Quote:

Originally Posted by Ted S (Post 2242838)
This post contains a list of suggested / planned features.

Planned Changes [Week of 1/16]
- Link to reviews in each user's profile [optional]
- Tab with a list of user's recent reviews [optional]

- Alternative star image colors
- WYSIWYG editor for writing a review

Planned For the Next Major Release [TBD]
- Image Uploading & Resizing

Other Suggestions I'm Aware Of
- Multiple update "types" [reviews, news, fact, question] w/ inline comments and sorting of posts
- Custom fields to add to reviews
- Additional images
- Additional videos
- Custom rating groups [service, reliability, appearance, etc]
- Product thumbnails on search listing page
- Sidebar widget with most recent reviews
- Sidebar widget with top products from the past X hours

Thanks for the continuous development Ted, will try the product again on the new release.


All times are GMT. The time now is 06:17 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.02093 seconds
  • Memory Usage 1,794KB
  • 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
  • (16)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (4)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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