Comments on: CodeColorer https://kpumuk.info In my blog I'll try to describe about interesting technologies, my discovery in IT and some useful things about programming. Mon, 30 Oct 2017 14:56:53 +0000 hourly 1 https://wordpress.org/?v=6.7.1 By: Dmytro Shteflyuk https://kpumuk.info/projects/wordpress-plugins/codecolorer/comment-page-5/#comment-673723 Fri, 08 Sep 2017 04:27:21 +0000 http://kpumuk.info/projects/wordpress-plugins/codecolorer/#comment-673723 In reply to Hans Luijten.

The plugin is still alive and receives updates :-)

]]>
By: Dmytro Shteflyuk https://kpumuk.info/projects/wordpress-plugins/codecolorer/comment-page-5/#comment-673722 Fri, 08 Sep 2017 04:26:27 +0000 http://kpumuk.info/projects/wordpress-plugins/codecolorer/#comment-673722 In reply to Ben.

PHP 7 compatibility issues were fixed in 0.9.10

]]>
By: Dmytro Shteflyuk https://kpumuk.info/projects/wordpress-plugins/codecolorer/comment-page-5/#comment-673721 Fri, 08 Sep 2017 04:25:21 +0000 http://kpumuk.info/projects/wordpress-plugins/codecolorer/#comment-673721 In reply to Yoann.

Which version of PHP do you use?

]]>
By: Yoann https://kpumuk.info/projects/wordpress-plugins/codecolorer/comment-page-5/#comment-673720 Fri, 08 Sep 2017 02:29:33 +0000 http://kpumuk.info/projects/wordpress-plugins/codecolorer/#comment-673720 Hi,

I am facing this error when I try to use your plugin. The error occurs even when I’am on the “setting” page on the “preview” section.
As you can see, I’m running WordPress locally using Wamp server.

1
Fatal error: Call to private method CodeColorer::performHighlightCodeBlock() from context '' in C:\wamp\www\wordpress\wp-content\plugins\codecolorer\codecolorer-core.php on line 55

Any idea ?

Thnaks

]]>
By: Ben https://kpumuk.info/projects/wordpress-plugins/codecolorer/comment-page-5/#comment-672306 Wed, 28 Sep 2016 22:04:20 +0000 http://kpumuk.info/projects/wordpress-plugins/codecolorer/#comment-672306 When will codeColorer work w/ php7.0?

I’m getting this error when using PHP7:

1
preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead in wp/wp-content/plugins/codecolorer/codecolorer-core.php on line 49
]]>
By: Hans Luijten https://kpumuk.info/projects/wordpress-plugins/codecolorer/comment-page-5/#comment-671552 Thu, 24 Dec 2015 00:58:51 +0000 http://kpumuk.info/projects/wordpress-plugins/codecolorer/#comment-671552 I’ve used this WordPress plugin for years now and just love it …
Since there have been quite a few changes in WP Core, I was wondering if this plugin will be updated in the near future?
(just curious, if development stopped, then I’d better prepare to switch to another plugin – which I’d hate to do)

]]>
By: Pam Van Londen https://kpumuk.info/projects/wordpress-plugins/codecolorer/comment-page-5/#comment-655275 Mon, 06 Jul 2015 21:51:52 +0000 http://kpumuk.info/projects/wordpress-plugins/codecolorer/#comment-655275 Where can I update the anchor href for html5 when I specify

1
<code lang="html">

??

]]>
By: Yusup https://kpumuk.info/projects/wordpress-plugins/codecolorer/comment-page-5/#comment-356601 Fri, 08 Mar 2013 06:04:13 +0000 http://kpumuk.info/projects/wordpress-plugins/codecolorer/#comment-356601 Hi ,thanks for this great plugin.
how could I add support for a new language like Kotlin?

]]>
By: sl https://kpumuk.info/projects/wordpress-plugins/codecolorer/comment-page-5/#comment-348642 Mon, 28 Jan 2013 03:52:02 +0000 http://kpumuk.info/projects/wordpress-plugins/codecolorer/#comment-348642 How do I insert tabs? :(

]]>
By: Hans https://kpumuk.info/projects/wordpress-plugins/codecolorer/comment-page-5/#comment-345919 Sat, 05 Jan 2013 21:35:47 +0000 http://kpumuk.info/projects/wordpress-plugins/codecolorer/#comment-345919 Love the plugin, specially now that I have it enabled on my bbPress plugin as well. Not sure if this is exactly the right way to do it, but it works for me.

Add the following code to your functions.php;

1
2
3
4
5
6
function t4a_bbp_shortcodes( $content, $reply_id ) {
   
    return codecolorer_highlight( $content );
}
add_filter('bbp_get_reply_content', 't4a_bbp_shortcodes', 10, 2);
add_filter('bbp_get_topic_content', 't4a_bbp_shortcodes', 10, 2);
]]>