Styles not loaded in some cases
-
Hey,
I just found a bug and made a fix and was wondering if you would implement it?
When shortcode is used with fx. visual composer,
the styles is not loaded because the regex is a little wrong.File: ./includes/contact.php
Line nr.: 51
Line: preg_match_all( ‘/’ . get_shortcode_regex() . ‘/s’, $post->post_content, $matches, PREG_SET_ORDER );I have changed it to:
preg_match_all( ‘/’ . get_shortcode_regex() . ‘/U’, $post->post_content, $matches, PREG_SET_ORDER );And now it workes.
Hope you can use this.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Styles not loaded in some cases’ is closed to new replies.