- πΊπΈUnited States smustgrave
As D7 is slowing shutting down. Wonder if this is still requested?
- Status changed to Closed: outdated
almost 2 years ago 3:00pm 18 June 2023
Rather than including the system jquery.cookie
library, this module includes 'misc/jquery.cookie.js'
directly. This will cause a conflict with jQuery Update on any page that uses the updated jquery.cookie
library.
hook_preprocess_page()
for your admin themedrupal_add_library('system', 'jquery.cookie');
for the theme, and call jquery.cookie()
on the Modules List page.This causes the custom code using cookies to not work properly if relying on the newer jquery.cookie()
code, because Module Filter's inclusion of 'misc/jquery.cookie.js'
will overwrite the newer function with the old one used in Core.
Include the jquery.cookie library instead, so that jQuery Update's newer version is used.
Closed: outdated
2.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
As D7 is slowing shutting down. Wonder if this is still requested?