- 🇦🇺Australia VladimirAus Brisbane, Australia
Version 7 is no loner supported.
Marking as outdated.
Return render array instead of hard-coded HTML to allow altering.
I'm trying to integrate ShareThis with Cookie Content Blocker → module
See the return statement of the theme_sharethis($variables) function.
Replace this:
return '<div class="sharethis-wrapper">' . $st_spans . '</div>';
With this:
return array(
'#type' => 'html_tag',
'#tag' => 'div',
'#attributes' => array(
'class' => 'sharethis-wrapper',
),
'#content' => $st_spans,
);
Create patch.
None.
None.
None.
None.
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.
Version 7 is no loner supported.
Marking as outdated.