close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

rating

PS4 Options not appearing in the order they were entered

Thread began 6/08/2012 9:38 am by sandy170299 | Last modified 6/08/2012 10:33 am by Jason Byrnes | 1011 views | 3 replies |

sandy170299

PS4 Options not appearing in the order they were entered

The options on this page (products_detail.php?ProductID=36) were entered in the following order: x-small, small, medium, large and that is how they appear in the admin area when I go to edit them. However, they are appearing out of order on the product detail page. On other pages of the site, they are correct. I am using advanced options with this particular item, as the image changes based on the color selected, but I am also doing that with this item (products_detail.php?ProductID=23), and that one is working fine.

How can I keep them listed in the order in which I entered them?

Thanks!

Sign in to reply to this post

Jason ByrnesWebAssist

in the webassist/plugins/shopping_cart/add_to_cart.php page, you will need to edit the code for variaus product option recordsets, there are a few of them.

you will need to add an order by clause to order by the optionID.

for example one of the options recordsets will have this code:

php:
$query_OptionValues = sprintf("SELECT DISTINCT ps4_options.OptionID, OptionName FROM ps4_options INNER JOIN ps4_optiongroups ON ps4_optiongroups.OptionGroupID = ps4_options.OptionGroupID  INNER JOIN ps4_productoptions on ps4_options.OptionID = ps4_productoptions.OptionID INNER JOIN ps4_products on ps4_products.ProductID = ps4_productoptions.ProductID WHERE ps4_options.OptionGroupID = %s AND (ps4_products.ProductStartDate IS NULL OR ps4_products.ProductStartDate <= CURDATE()) AND (ps4_products.ProductEndDate IS NULL OR ps4_products.ProductEndDate >= CURDATE())", GetSQLValueString($OGIDParam_OptionValues, "int"));




change that to:

php:
$query_OptionValues = sprintf("SELECT DISTINCT ps4_options.OptionID, OptionName FROM ps4_options INNER JOIN ps4_optiongroups ON ps4_optiongroups.OptionGroupID = ps4_options.OptionGroupID  INNER JOIN ps4_productoptions on ps4_options.OptionID = ps4_productoptions.OptionID INNER JOIN ps4_products on ps4_products.ProductID = ps4_productoptions.ProductID WHERE ps4_options.OptionGroupID = %s AND (ps4_products.ProductStartDate IS NULL OR ps4_products.ProductStartDate <= CURDATE()) AND (ps4_products.ProductEndDate IS NULL OR ps4_products.ProductEndDate >= CURDATE()) ORDER BY ps4_options.OptionID", GetSQLValueString($OGIDParam_OptionValues, "int"));
Sign in to reply to this post

sandy170299

For every query on that page?

Sign in to reply to this post

Jason ByrnesWebAssist

not every query, no, only the ones that are used by the options select lists:
OptionValues
ProductOptions
SubOptions
AddedOptions

should all have:
ORDER BY ps4_options.OptionID

added near the end of the query.

Sign in to reply to this post

Build websites with a little help from your friends

Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.

Build websites from already-built web applications

These out-of-the-box solutions provide you proven, tested applications that can be up and running now.  Build a store, a gallery, or a web-based email solution.

Want your website pre-built and hosted?

Close Windowclose

Rate your experience or provide feedback on this page

Account or customer service questions?
Please user our contact form.

Need technical support?
Please visit support to ask a question

Content

rating

Layout

rating

Ease of use

rating

security code refresh image

We do not respond to comments submitted from this page directly, but we do read and analyze any feedback and will use it to help make your experience better in the future.

Close Windowclose

We were unable to retrieve the attached file

Close Windowclose

Attach and remove files

add attachmentAdd attachment
Close Windowclose

Enter the URL you would like to link to in your post

Close Windowclose

This is how you use right click RTF editing

Enable right click RTF editing option allows you to add html markup into your tutorial such as images, bulleted lists, files and more...

-- click to close --

Uploading file...