Arrange products in Bakery by dragging.

Stefek

Right, James. I already forgot about your translation.
I put the link on the top of the original thread now.
Thank you again.

Regards,
Stefek
[i]"Gemeinsam schafft man mehr."[/i]

[b][url=http://duden.de/rechtschreibung/gemeinsam#Bedeutung1]gemeinsam[/url][/b]
1. mehreren Personen oder Dingen in gleicher Weise gehörend, eigen
2. in Gemeinschaft [unternommen, zu bewältigen]; zusammen, miteinander
#Duden


Stefek

Hello,

this patch may help you, but the thread is in german only:
https://forum.websitebaker.org/index.php?topic=20267.0

Regards,
Stefek
[i]"Gemeinsam schafft man mehr."[/i]

[b][url=http://duden.de/rechtschreibung/gemeinsam#Bedeutung1]gemeinsam[/url][/b]
1. mehreren Personen oder Dingen in gleicher Weise gehörend, eigen
2. in Gemeinschaft [unternommen, zu bewältigen]; zusammen, miteinander
#Duden

jacobi22

QuoteOr is there a possibility to arrange the products automaticly by newest added products on top.

Look at this Code in view-summary.php

// Query items (for this page)
$query_items = $database->query("SELECT * FROM ".TABLE_PREFIX."mod_bakery_items WHERE section_id = '$section_id' AND active = '1' AND title != '' ORDER BY position ASC".$limit_sql);
$num_items = $query_items->numRows();


and change the Order from ORDER BY position ASC
to
ORDER BY item_id DESC

Frankkuin

Is there a possibility to arrrange the products on a Bakery page by dragging a product tot the top (as in the page window). Or is there a possibility to arrange the products automaticly by newest added products on top.