Please install the wp-Typography Disable ACF Integration plugin by @sarukku. Alternatively, you can also directly use the filter hook typo_disable_filtering in your functions.php. […]
Why are there strange characters on my site when it is viewed with Safari?
There is a bug in the shipped Safari 9 that results in strange characters being rendered when both ligatures and soft hyphens appear on the same line. (The bug is only triggered when the font actually supports ligatures, e.g. with Open Sans.)
Fortunately, adding the following line to your CSS fixes the font rendering and preserves ligatures:
If you enable Add workaround for Safari hyphenation bug, this CSS property is inserted into your page automatically. […]
Why are opening quotes not being styled?
This plugin offers an option to wrap initial quotes in a span of class quo or dquo. You can then style these classes in your CSS stylesheet. This is useful if you want to-for example-negatively indent quotes so the quote hangs in the left margin and the text is aligned with the text below.
Please note, this applies only to initial quotes — quotemarks that appear as the first character of a block of text (like a paragraph or blockquote). This does not apply to all opening quotes. […]
Why does filtering by HTML element, class or ID not prevent processing?
wp-Typography does not have access to HTML stored in your theme files. It only has access to the content passed to it (i.e. post title and content); it is unable to determine the greater contextual awareness.
If you try to filter processing based on a class of the body element — as an example — nothing will happen. wp-Typography does not see the body element. wp-Typography does filter by HTML element, class or ID for any markup present within the parsed content. So if you do not want class noTypo processed, […]
This plugin breaks post title links. What gives?
More likely than not, your WordPress theme is using an improper function to set the title attribute of your heading’s link. It is probably using the the_title() function, which delivers the post title after filtering. It should be using the_title_attribute() which delivers the post title before filtering. Change out this function throughout your theme when it is used inside of an HTML tag, and the problem should go away.
Here are some specific instructions for fixing your theme. Please note that every […]