Move Product missing something?

Posts: 8
Joined: 12/12/2007

Hi guys,

Pardon my newness. I am trying to use the 'move product' feature in store admin and it won't let me select multiple products in the results scroll box. I have a database of about 11,000 products that I brought into a 'general parts' catagory Sad that I need to sort.

Also, any tips/reference on trying to set up auto parts would be greatly appreciated. This is my first site and figuring out what should go where for usability is confusing me completely.

Thanks,
Jen

--

Always dive in head first.

Posts: 34
Joined: 08/19/2007

Holding down CTRL or SHIFT with your mouse clicks will highlight multiple items
CTRL- to select multiple non-adjacent
SHIFT -to select multiple adjacent (click first and last)

The list sometimes jumps(moves) a bit unexpectedly when selecting multiples but fear not... it works

note - stretch those fingers and hold those keys - its very frustrating when using CTRL select and then to loose your list of 100+ selected items because your finger slipped off the ctrl key)

note 2 (small bug) - when selecting more than a few products the product images do not appear in the middle box after you hit the select button. However they still move the way they are supposed to (you will notice a blip/refresh on the screen a second or three after hitting select button - i think this is because the middle box changes height by a few pixels (if i recall??) -- not to worry they will still move to the new category the way you specify.
When selecting 1-5 products the images do appear in that middle box.

have fun

Posts: 8
Joined: 12/12/2007

Hmmm... Not doing it. I don't see a version number in ubrowser either. Ryan suggested it was a old version. Neither of the top scroll boxes allow multiple selections. The box that lets you select the new location does and even says to ctrl click.

--

Always dive in head first.

Posts: 5269
Joined: 08/07/2007
AdministratorHead Code Monkey - I eat bugs.

Well... the most helpful thing would be for you to use a browser like Firefox, select the uBrowser on the page, and view the source. Copy and paste that in here. Also, can you confirm whether or not you're using the catalog module?

Posts: 8
Joined: 12/12/2007

ok - this is what i get...
I am using
/sites/all/modules/ubercart/contrib/
payment (test and paypal)
shipping (flat rate is off - error)
uc_attribute
uc_cart
uc_cart_links
uc_catalog
uc_file
uc_googleanalytics
uc_importer
uc_manufacturer
uc_notify
uc_order
uc_product
uc_product_kit
uc_repeater
uc_roles
uc_store
uc_taxes


<form id="ubrowser-nodes-form" method="post" action="/?q=ubrowser/nodesearch">
<div>
<input id="edit-unid-path-2030" type="hidden" value="catalog/bumper-blade-67" name="unid-path-2030"/>
<input id="edit-unid-path-3954" type="hidden" value="catalog/fan-blade" name="unid-path-3954"/>
<input id="edit-unid-path-3955" type="hidden" value="catalog/fan-blade-0" name="unid-path-3955"/>
<input id="edit-unid-path-3956" type="hidden" value="catalog/fan-blade-1" name="unid-path-3956"/>
<input id="edit-unid-path-3957" type="hidden" value="catalog/fan-blade-440mm" name="unid-path-3957"/>
<input id="edit-unid-path-3979" type="hidden" value="catalog/fan-motor-w-blade" name="unid-path-3979"/>
<div class="form-item">
<label for="edit-unid">Select a product (key=unid, weight=0): </label>
<select id="edit-unid" class="form-select" size="10" name="unid">
<option value="0">Search yielded 6 results:</option>
<option value="2030">(2030) BUMPER BLADE -67&lt;/option>
<option value="3954">(3954) FAN BLADE</option>
<option value="3955">(3955) FAN BLADE</option>
<option value="3956">(3956) FAN BLADE</option>
<option value="3957">(3957) FAN BLADE 440MM</option>
<option value="3979">(3979) FAN MOTOR W BLADE</option>
</select>
</div>
<input id="edit-ubrowser-nodes-form-form-token" type="hidden" value="77548bf56b657b8cc7901a09c9192ffa" name="form_token"/>
<input id="edit-ubrowser-nodes-form" type="hidden" value="ubrowser_nodes_form" name="form_id"/>
<;/div>
</form>

--

Always dive in head first.

Posts: 5269
Joined: 08/07/2007
AdministratorHead Code Monkey - I eat bugs.

Ok, I see the problem. It looks like search results don't have multiple on the select box. Have you tried it just selecting a category and then selecting multiple? That's what we were referring to.

To try the fix, change line 418 from this:

<?php
  $output
= drupal_get_form('ubrowser_nodes_form', $options, $category, $nodesg);
?>

To this:

<?php
  $output
= drupal_get_form('ubrowser_nodes_form', $options, $category, $nodesg, TRUE);
?>

That should patch yours, but I'd need to come up with a slightly more elegant way of doing it for the module itself. Smiling