Jump to content

Problem mit Product Attributes und Modul Position


Recommended Posts

Hallo ich hab mir das Modul “Product Attributes v1.3” installiert was alles super funktioniert hat bei der “Prestashop German Edition”!

Nun wollte ich laut der anleitung von dem typen der das modul programmiert hat die radiobutton liste mit in das menüfeld details zum produkt rein bringen.

Hier habt ihr mal nen link und die beschreibung wie er es erklärt hat!

http://www.nethercottconstructions.com/prestashop-modules/4-product-attributes.html

By default, this module installs itself above the more information section, but it can also be displayed as a tab in the more information section by going to Modules > Positions and transplanting the module into the “Tabs on the product page” and “Content of tabs on product page” hooks, then deleting the module from the “Product footer” hook. Note that if you want to remove the module from this position, you will have to tick “Display non-positionnable hook” before you can remove it from those hooks.

NOTE: For the attributes to display properly in the cart and summary, you must change lines 270-271 of classes/Cart.php from:

$attributesList .= $row2['public_group_name'].' : '.$row2['attribute_name'].', ';
$attributesListSmall .= $row2['attribute_name'].', ';

to:

if (strpos($row2['public_group_name'], '|') !== FALSE)
  $row2['public_group_name'] = substr($row2['public_group_name'], strpos($row2['public_group_name'], '|') + 1);
$attributesList .= $row2['public_group_name'].': '.$row2['attribute_name'].', ';
if ($row2['attribute_name'] != 'No')
  $attributesListSmall .= ($row2['attribute_name'] == 'Yes' ? $row2['public_group_name'] : $row2['attribute_name']) .', ';



ROADMAP:

- Add option to treat attributes as separate products to add multiple products at a time


Sooo das hab ich alles soweit befolgt und es wird mir auch unter einem neuen tab im unteren menüfeld angezeigt aber sobald ich unter Module>Position und dann den Product Footer löschen gehe auch unter der voraussetzung das ich das häckchen bei “Zeige nicht positionierbare Einhängepunkte” gemacht habe zeigt er mir auch nichts mehr in dem tab an!

woran könnte das liegen, ich bin schon am verzweifeln und ich finde auch keine vergleichbaren topics die mir da weiter helfen könnten!
vielleicht ist ja auch jemand fit genug von euch mir das was er da beschrieben hat in eine ordentliche deutsche anleitung zu übersetzen da mein englisch nicht der brüller ist!

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...