Jump to content

[BUG 4.6.12.1] Message in commerce product form using the wrong ID


Recommended Posts

In the product form, inside the Product Settings TAB, there is a setting named Show purchases in client area and Admin CP? which hides the Association header/message/setting when disabled.

 

The message

If you have multiple products which are related to each other, you can allow them be associated with one another to form parent/child relationships.

is currently not being hidden properly because the ID for it is wrong in applications/nexus/sources/Package/Package.php on line 1126:

$form->addMessage('package_associations_desc');

 

The addMessage() method doesn't use the language key as ID but generates an md5() hash of it which will never match the ID used in the toggle option. To fix it replace the code with:

$form->addMessage( 'package_associations_desc', '', TRUE, "{$formId}_header_package_associations_desc" );

 

Edited by teraßyte
Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...