You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems like the Bigblow theme might have its own ID generation logic that overrides the custom IDs you've set in your headings. Since you’ve already overridden the table of contents (ToC) with success, you could explore similar areas to resolve this.
Here are a few approaches you could try:
Check for an ID generation function: The theme likely has a function that generates IDs dynamically for sections and headings. Look for functions like generateId, slugify, or anything related to heading IDs in the theme's JavaScript or backend files. You can override this function or prevent it from replacing your custom IDs.
HTML/Post-processing Hook: If Bigblow is rendering the final HTML output, you can try inserting a hook or custom filter that replaces the theme-generated IDs with your custom ones. This can be done during the post-processing phase before rendering.
Disable Automatic ID Generation: There might be an option or flag to disable automatic ID generation in the theme’s configuration. Since you’ve already overridden a ToC-related function, it’s possible there are additional options you can modify to stop it from assigning random IDs.
If none of these help, you may want to explore whether the theme's maintainers or documentation offer a specific setting for handling custom IDs.
The text was updated successfully, but these errors were encountered:
It seems like the Bigblow theme might have its own ID generation logic that overrides the custom IDs you've set in your headings. Since you’ve already overridden the table of contents (ToC) with success, you could explore similar areas to resolve this.
Here are a few approaches you could try:
Check for an ID generation function: The theme likely has a function that generates IDs dynamically for sections and headings. Look for functions like
generateId
,slugify
, or anything related to heading IDs in the theme's JavaScript or backend files. You can override this function or prevent it from replacing your custom IDs.HTML/Post-processing Hook: If Bigblow is rendering the final HTML output, you can try inserting a hook or custom filter that replaces the theme-generated IDs with your custom ones. This can be done during the post-processing phase before rendering.
Disable Automatic ID Generation: There might be an option or flag to disable automatic ID generation in the theme’s configuration. Since you’ve already overridden a ToC-related function, it’s possible there are additional options you can modify to stop it from assigning random IDs.
If none of these help, you may want to explore whether the theme's maintainers or documentation offer a specific setting for handling custom IDs.
The text was updated successfully, but these errors were encountered: