• Hello,
    How can I change the text after the hash?
    My website is in Hebrew, but I want all the URL’s to be only in English.
    Thank you

Viewing 1 replies (of 1 total)
  • Plugin Author LuckyWP

    (@theluckywp)

    Hello!

    You can use filter lwptoc_heading_id for modify hash-string for headings.

    Example:

    add_filter('lwptoc_heading_id', function ($id, $label) {
        return $id;
    }, 10, 2);
Viewing 1 replies (of 1 total)
  • The topic ‘Change the text after the Hash’ is closed to new replies.