- Issue created by @SirClickALot
- π«π·France mably
May be we could add a hook to allow altering the HTML of the found glossary term. Will see what I can do. Then the tooltip addition could be done in a submodule or a custom module.
- Merge request !25Issue #3505043 by mably: Addition of the ability to add data-attributes β (Merged) created by mably
- π«π·France mably
@sirclickalot This issue's MR adds a new hook that should solve your problem.
You just need to add this hook in your theme or a custom module:
/** * Implements hook_term_glossary_term_alter(). */ function my_module_term_glossary_term_alter(&$term_tag, &$term_id, &$term_value) { // Here alter the term button HTML render array. $term_tag['#attributes']['data-bs-toggle'] = 'tooltip'; $term_tag['#attributes']['data-bs-placement'] = 'bottom'; $term_tag['#attributes']['fallbackplacements'] = '["top", "left", "right"]'; $term_tag['#attributes']['data-bs-delay'] = '{"show":1000, "hide":100}'; $term_tag['#attributes']['data-bs-html'] = 'true'; $term_tag['#attributes']['data-bs-title'] = 'Pop up a term definition.'; }
Tell me how it goes.
- π¬π§United Kingdom SirClickALot Somerset
Hi @mably,
This is intriguing...
I have patched my local
4.2.0-alpha2
version and patch applied without issue.I can clearly see the hook implementation in the
term_glossary.api.php
along with the other source code alterations (GUI Git client screenshot)...I have implemented the hook in my trusty (and very minimal) overrides module (custom_drupal_overrides)...
function custom_drupal_overrides_term_glossary_term_alter(&$term_tag, &$term_id, &$term_value) { // Alter the term button HTML render array. $term_tag['#attributes']['data-bs-toggle'] = 'tooltip'; $term_tag['#attributes']['data-bs-placement'] = 'bottom'; $term_tag['#attributes']['fallbackplacements'] = '["top", "left", "right"]'; $term_tag['#attributes']['data-bs-delay'] = '{"show":1000, "hide":100}'; $term_tag['#attributes']['data-bs-html'] = 'true'; $term_tag['#attributes']['data-bs-title'] = 'Pop up an exam-ready-worded definition of this term.'; }
I have cleared every conceivable cache over and over.
BUT no splicing in of the goods?
Very odd, especially since you very helpfully sent me a screenshot of it working locally.
What could we have missed here?
- π«π·France mably
It should be
custom_drupal_overrides_term_glossary_term_match_alter
, you miss the match in your hook name. - π¬π§United Kingdom SirClickALot Somerset
What a weird thing!
I copied the plain text from a plaintext version of the email alert from the DO site, screenshot below...
Ghostly.
Or is it a touchΓ© ?
Anyway, all sorted so thanks, this is a really useful addition because now us tweakers can do whatever we like.
Thanks again.
- π«π·France mably
@sirclickalot the hook signature will slightly change (for the good) in this issue: π New term_data alter hook and term_match hook signature change Active .
You will get in the second parameter the whole term data array instead of just the idea.
And you will be able to customize that term data array with a new hook
term_data_alter
coming in the same issue. Automatically closed - issue fixed for 2 weeks with no activity.