- Issue created by @w01f
- 🇮🇩Indonesia gausarts
Thank you.
Make sense.
Moving this to Blazy:2.x, since splide:3.x also works with blazy:2.x.
I may not be able to provide the UI option for now, but will provide an alterable H2 tag via the provided hook_alters. -
gausarts →
committed 57f18d8d on 8.x-2.x
Issue #3390513 by W01F, gausarts: Option to configure header for the...
-
gausarts →
committed 57f18d8d on 8.x-2.x
- Status changed to Fixed
over 1 year ago 3:18am 29 September 2023 - 🇮🇩Indonesia gausarts
We got a new 2.19 hotfix release this weekend. This will do for now.
Updated blazy.api.php with the related changes:
https://git.drupalcode.org/project/blazy/-/blob/8.x-2.x/blazy.api.php?re...// Changed default caption title tag from H2 to H3. $blazies->set('item.title_tag', 'h3');
Thanks for easy to implement and quality feature suggestion :)
- 🇺🇸United States w01f
Hi Gaus, still trying to figure out how use the recent updates to change the H2 > H3. I'm also seeing the following description still in the hover description for the title field in the splide options (screenshot attached).
- 🇺🇸United States w01f
Still doing something wrong - can't get these h2 headers to change to h3. Perhaps I'm just not drinking enough coffee... Any guidance/suggestions would be great.
Seasonal recommendations has the splide slider on the homepage here:
https://www.dev.kobejet.com/en
Also attaching screenshot. - 🇮🇩Indonesia gausarts
There are new options at Blazy UI.
Some new features require you enabling "Use theme_blazy()" option, including your OP.
And you need to implement hook_blazy_item_alter() in your custom module. The exact line is in #5.
Let me know?
- 🇺🇸United States w01f
Yup, "Use theme_blazy()" was already enabled. And I can see the original code in the blazy module in blazy.api.php file:
// Changed default caption title tag from H2 to H3.
$blazies->set('item.title_tag', 'h3');I added this to a custom module as well:
function hook_blazy_item_alter(array &$settings, array &$attributes, array &$item_attributes) {
// Changed default caption title tag from H2 to H3.
$blazies->set('item.title_tag', 'h3');
}Then cleared caches, and the caption titles are still showing as h2 - https://www.dev.kobejet.com/en
Not sure what I'm doing wrong.
- 🇮🇩Indonesia gausarts
May I know your exact function and its body?
1. Try adding
$blazies = $settings['blazies'];
2. Change hook into your actual MODULE_NAME, e.g.:function MODULE_NAME_blazy_item_alter(array &$settings, array &$attributes, array &$item_attributes) { $blazies = $settings['blazies']; // Changed default caption title tag from H2 to H3. $blazies->set('item.title_tag', 'h3'); }
- 🇺🇸United States w01f
Yup, was just being dumb - I hadn't changed the module name. And I did need the $blazies definition as well so thank you for that. Seems to be working now. Thanks Gaus!!
- 🇮🇩Indonesia gausarts
Thanks for the follow up. We'd been there, no worries. Glad you did it :)
Automatically closed - issue fixed for 2 weeks with no activity.