• Resolved Kuragiman

    (@kuragiman)


    I am currently attempting to upgrade my site to this theme and I like the results so far minus something that is driving me nuts. I don’t like the way this theme automatically indents paragraphs and for some reason anytime you have a ‘ in your sentence it adds a space after it so a conjunction ends up looking like that’ s instead of that’s. Any ideas how to fix these two issues? Any help would be appreciated.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter Kuragiman

    (@kuragiman)

    Fixed the unwanted indentations. The fix for this is just a CSS formatting choice Leniy made in the style.css sheet. Search for text-indent and remove or comment out to remove the unwanted indenting. The apostrophe problem is all that is left now. I am hunting for a solution.

    Thread Starter Kuragiman

    (@kuragiman)

    Fixed the apostrophe problem. It’s the classic WP problem involving the texturizer functions. You can fix it easily by editing your functions.php file. Add the following code to the end of your function.php and save it. All your punctuation marks that are adding extra spaces after them will vanish.

    remove_filter ('single_post_title', 'wptexturize');
    remove_filter ('bloginfo', 'wptexturize');
    remove_filter ('wp_title', 'wptexturize');
    remove_filter ('category_description', 'wptexturize');
    remove_filter ('list_cats', 'wptexturize');
    remove_filter ('comment_author', 'wptexturize');
    remove_filter ('comment_text', 'wptexturize');
    remove_filter ('the_title', 'wptexturize');
    remove_filter ('the_content', 'wptexturize');
    remove_filter ('the_excerpt', 'wptexturize');

    Thank you for posting these fixes!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Unwanted Formatting Results’ is closed to new replies.