This Thread
  • Everywhere
  • This Thread
  • This Forum
  • Articles
  • Pages
  • Forum
  • Files
  • Records
  • Records
  • Records
  • Records
  • Records
  • Records
  • More Options
  1. Forum
  2. Downloads
  3. Hardware
    1. 3D-Accelerator
    2. CPU-Sockets
    3. RAM
    4. HDMI & Display Port
    5. USB
    6. Thunderbolt
  4. Parcum
    1. Parcum - Map
    2. Parcum - All Entries
    3. Parcum - Countries
    4. Parcum - Categories
  5. Other
    1. ISeeT Main Site
    2. Link-Library
    3. Restaurants, Snacks and more
  • Login
  • Register
  • Search
  1. ISeeT Forums
  2. WEB Development
  3. Wordpress

Wordpress, wpForo & EnlighterJS

  • ISeeTWizard
  • 26 October 2025 at 12:02
1st Official Post
  • ISeeTWizard
    Administrator
    Points
    2,600
    Posts
    200
    Files
    30
    • 26 October 2025 at 12:02
    • Official Post
    • #1

    I had now several issues to get more buttons and especially the code Enlighter to work with wpForo. Unfortunately wpForo by default only uses the minimal TinyMCE editor and this can't be changed.

    But thanks to the functions.php file in you theme you can at least modify it's behavior in some parts which helps a lot.

    Also images aren't shown directly but as upload. So here are some tweaks for your functions.php file that may help you.

    Code
    function ISeeT_customize_wpforo_editor($settings) {
        // Add more buttons to the toolbar
    $settings['tinymce']['toolbar1'] = 'fontsizeselect,bold,italic,underline,strikethrough,forecolor,bullist,numlist,hr,alignleft,aligncenter,alignright,alignjustify,link,unlink,blockquote,wpf_spoil,undo,redo,pastetext,emoticons,fullscreen';
    $settings['tinymce']['toolbar2'] = 'cut,subscript,superscript,outdent,indent,backcolor,removeformat,table,visualblocks,visualchars,insertdatetime,formats,charmap,styleselect,searchreplace,anchor,image,media,pre,codesample,EnlighterInsert,EnlighterEdit';
    
        // Enable additional plugins
        $settings['plugins'] = 'charmap,colorpicker,compat3x,directionality,fullscreen,hr,image,link,lists,media,paste,tabfocus,textcolor,wordpress,wpautoresize,wpdialogs,wpeditimage,wpemoji,wpgallery,wplink,wptextpattern,wpview,advlist,codesample,enlighterjs';
        
        $settings['external_plugins'] = 
    array(
        'enlighterjs' => site_url('/wp-content/plugins/enlighter/resources/tinymce/enlighterjs.tinymce.min.js')
    );
    
        
    
        // Optional: set other TinyMCE settings
        $settings['tinymce']['tinymce'] = true;
        $settings['tinymce']['menubar'] = false;
        $settings['tinymce']['resize'] = true;
        $settings['tinymce']['teeny'] = false;
        $settings['tinymce']['quicktags'] = true;
        $settings['tinymce']['height'] = 600;
        return $settings;
    }
    add_filter('wpforo_editor_settings', 'ISeeT_customize_wpforo_editor');
    Display More


    You can see within the code what is used for what - Pay attention that if you want to add additional plugins like me (advlist, codesample,...) you need to download the correct version and here you must know that Wordpress is using a very very old version of TinyMCE as they don't want to invest the time to upgrade it. So you need to download the version 4.9.11 (I'll attach a version here)

    Of course you can adapt this to your needs.

    But by default wpForo is stripping some HTML tags by default for security reasons which is good but also bad as with that behavior the code isn't loaded correctly with the Enlighter Plugin.

    Code
    function ISeeT_allow_custom_html_in_wpforo($content) {
        $allowed_tags = wp_kses_allowed_html('post');
    
        // Erlaube zusätzliche Tags und Attribute
        $allowed_tags['pre']['class'] = true;
        $allowed_tags['code']['class'] = true;
        $allowed_tags['span']['class'] = true;
        $allowed_tags['div']['class'] = true;
    
        return wp_kses($content, $allowed_tags);
    }
    add_filter('wpforo_content_filter', 'ISeeT_allow_custom_html_in_wpforo', 10);
    Display More


    Thanks to that little code now the Enlighter plugin works well. Here the link to the plugin I'm talking of.

    And last but not least the little code to show the images - I didn't test it myself yet as the forum is brand new but I already integrated the code on the site and other told me that it is working.

    Code
    add_filter('wpforo_content_after', 'wpforo_default_attachment_image_embed', 11);
    function wpforo_default_attachment_image_embed( $content ){
        if( preg_match_all('|<a class=\"wpforo\-default\-attachment\" href\=\"([^\"\']+)\"[^><]*>.+?<\/a>|is', $content, $data, PREG_SET_ORDER) ){
            foreach($data as $array){
                if(isset($array[1])){
                    $file = $array[1];
                    $e = strtolower(substr(strrchr($file, '.'), 1));
                    if( $e === 'jpg' || $e === 'jpeg' || $e === 'png' || $e === 'gif' || $e === 'bmp' || $e === 'webp' ){
                        $filename = explode('/', $file); $filename = end($filename);
                        $html = '<a href="' . esc_url($file) . '" target="_blank"><img class="wpforo-default-image-attachment" src="' . esc_url($file) . '" alt="' . esc_attr($filename) . '" title="' . esc_attr($filename) . '" /></a>';
                        $content = str_replace($array[0], $html, $content);
                    }
                }
            }
        }
        return $content;
    }
    Display More

    I hope this will help you as it helped me - It was much try on error until I got it to work like I wanted.

    Files

    tinymce_4.9.11.zip 565.32 kB – 120 Downloads

Participate now!

Don’t have an account yet? Register yourself now and be a part of our community!

Register Yourself Login

Did you know…?

“It is never too late to be what you might have been.”

George Elliot

“Life is made of ever so many partings welded together.”

Charles Dickens

“Life is like riding a bicycle. To keep your balance, you must keep moving.”

Albert Einstein

“The biggest adventure you can take is to live the life of your dreams.”

Oprah Winfrey

“Find out who you are and do it on purpose.”

Dolly Parton

“We pass through this world but once.”

Stephen Jay Gould

“If you have knowledge, let others light their candles in it.”

Margaret Fuller

“The future belongs to those who prepare for it today.”

Malcolm X

“Life does not have to be perfect to be wonderful.”

Annette Funicello

“It’s amazing how a little tomorrow can make up for a whole lot of yesterday.”

John Guare

“Never let the fear of striking out keep you from playing the game.”

Babe Ruth

“For me, becoming isn’t about arriving somewhere or achieving a certain aim. I see it instead as forward motion, a means of evolving, a way to reach continuously toward a better self. The journey doesn’t end.”

Michelle Obama

“You have to believe in yourself when no one else does.”

Serena Williams

“I’m not going to continue knocking on that old door that doesn’t open for me. I’m going to create my own door and walk through that.”

W.P. Kinsella

“You don’t always need a plan. Sometimes you just need to breathe, trust, let go and see what happens.”

Mandy Hale

“Be sure you put your feet in the right place, then stand firm.”

Abraham Lincoln

“The fear of death follows from the fear of life. A man who lives fully is prepared to die at any time.”

Mark Twain

“Don’t take yourself too seriously. Know when to laugh at yourself, and find a way to laugh at obstacles that inevitably present themselves.”

Halle Bailey

“The future is not something we enter. The future is something we create.”

Leonard I. Sweet

“We are here to add what we can to life, not to get what we can from life.”

William Osler

“Yesterday is but today’s memory and tomorrow is today’s dream.”

Khalil Gibran

“My wish for you is that you continue. Continue to be who you are, to astonish a mean world with your acts of kindness.”

Maya Angelou

“I may not have gone where I intended to go, but I think I have ended up where I needed to be.”

Douglas Adams

“You only live once, but if you do it right, once is enough.”

Mae West

“Dream big and dare to fail.”

Norman Vaughan

“Ambition is the path to success. Persistence is the vehicle you arrive in.”

Bill Bradley

“The art of life is to know how to enjoy a little and to endure very much.”

William Hazlitt

“Keep smiling, because life is a beautiful thing and there’s so much to smile about.”

Marilyn Monroe

“The future belongs to those who believe in the beauty of their dreams.”

Eleanor Roosevelt

“There are so many great things in life; why dwell on negativity?”

Zendaya

“The simple things are also the most extraordinary things, and only the wise can see them.”

Paulo Coelho

“You can be everything. You can be the infinite amount of things that people are.”

Kesha

“Don’t worry about failure, you only have to be right once.”

Drew Houston

“Always go with your passions. Never ask yourself if it’s realistic or not.”

Deepak Chopra

“Whatever we are, whatever we make of ourselves, is all we will ever have—and that, in its profound simplicity, is the meaning of life.”

Philip Appleman

“Next time, ask ‘What’s the worst that will happen?’ Then push yourself a little further than you dare.”

Audre Lorde

“There’s love enough in this world for everybody, if people will just look.”

Kurt Vonnegut

You cannot change what you refuse to confront.

“It does not matter how slowly you go, as long as you do not stop.”

Confucius

“Life is very interesting…in the end, some of your greatest pains become your greatest strengths.”

Drew Barrymore

“No need to hurry. No need to sparkle. No need to be anybody but oneself.”

Virginia Woolf

“When you have a dream, you’ve got to grab it and never let go.”

Carol Burnett

“You can’t help what you feel, but you can help how you behave.”

Margaret Atwood

“Be yourself; everyone else is already taken.”

Oscar Wilde

“Keep your face towards the sunshine and shadows will fall behind you.”

Walt Whitman

“It is during our darkest moments that we must focus to see the light.”

Aristotle

“To succeed in life, you need three things: a wishbone, a backbone, and a funnybone.”

Reba McEntire

“We make a living by what we get, but we make a life by what we give.”

Winston Churchill

“Let us make our future now, and let us make our dreams tomorrow’s reality.”

Malala Yousafzai

“One of the deep secrets of life is that all that is really worth doing is what we do for others.”

Lewis Carroll

“We must let go of the life we have planned, so as to accept the one that is waiting for us.”

Joseph Campbell

“Living might mean taking chances, but they’re worth taking.”

Lee Ann Womack

“Always do your best. What you plant now, you will harvest later.”

Og Mandino

“Failure is a great teacher and, if you are open to it, every mistake has a lesson to offer.”

Oprah Winfrey

“There is no perfection, only life.”

Milan Kundera

“In three words I can sum up everything I’ve learned about life: It goes on.”

Robert Frost

“If you don’t like the road you’re walking, start paving another one.”

Dolly Parton

“I believe that if you’ll just stand up and go, life will open up for you. Something just motivates you to keep moving.”

Tina Turner

“Always remember that you are absolutely unique. Just like everyone else.”

Margaret Mead

“And when you want something, all the universe conspires in helping you achieve it.”

Paulo Coelho

“Be persistent and never give up hope.”

George Lucas

“Nothing is impossible. The word itself says ‘I’m possible!’”

Audrey Hepburn

“Once you face your fear, nothing is ever as hard as you think.”

Olivia Newton-John

“Life is what happens to you when you are busy making other plans.”

John Lennon

“Life has no limitations, except the ones you make.”

Les Brown

“Success is stumbling from failure to failure with no loss of enthusiasm.”

Winston Churchill

“Life isn’t about finding yourself. Life is about creating yourself.”

George Bernard Shaw

“The new dawn blooms as we free it. For there is always light if only we’re brave enough to see it, if only we’re brave enough to be it.”

Amanda Gorman

“For the great doesn’t happen through impulse alone, and is a succession of little things that are brought together.”

Vincent Van Gogh

“If you don’t have any shadows, you’re not in the light.”

Lady Gaga

“The great courageous act that we must all do is to have the courage to step out of our history and past so that we can live our dreams.”

Oprah Winfrey

“There is no passion to be found playing small—in settling for a life that is less than the one you are capable of living.”

Nelson Mandela

“Tomorrow is a new day. You shall begin it serenely and with too high a spirit to be encumbered with your old nonsense.”

Ralph Waldo Emerson

“Spread love everywhere you go. Let no one ever come without leaving happier.”

Mother Teresa

“You may not control all the events that happen to you, but you can decide not to be reduced by them.”

Maya Angelou

“You will face many defeats in life, but never let yourself be defeated.”

Maya Angelou

“It is better to be hated for what you are than to be loved for what you are not.”

Andre Gide

“Get busy living or get busy dying.”

Stephen King

“All dreams are within reach. All you have to do is keep moving towards them.”

Viola Davis

“I’m not going to continue knocking that old door that doesn’t open for me. I’m going to create my own door and walk through that.”

Ava DuVernay

“There are no regrets in life. Just lessons.”

Jennifer Aniston

“Just when you think it can’t get any worse, it can. And just when you think it can’t get any better, it can.”

Nicholas Sparks

“The only thing we have to fear is fear itself.”

Franklin D. Roosevelt

“Do one thing every day that scares you.”

Eleanor Roosevelt

“Good friends, good books, and a sleepy conscience: This is the ideal life.”

Mark Twain

“The world you desire can be won. It exists... it is real... it is possible... it’s yours.”

Ayn Rand

“When I let go of what I am, I become what I might be.”

Lao Tzu

“It is better to fail in originality than to succeed in imitation.”

Herman Melville

“We have to dare to be ourselves, however frightening or strange that self may prove to be.”

May Sarton

“Before anything else, preparation is the key to success.”

Alexander Graham Bell

“Everything you can imagine is real.”

Pablo Picasso

“Coming together is a beginning; keeping together is progress; working together is success.”

Henry Ford

“Live in the sunshine, swim the sea, drink the wild air.”

Ralph Waldo Emerson

“Dreams do not come true just because you dream them. It’s hard work that makes things happen. It’s hard work that creates change.”

Shonda Rhimes

“Be where you are; otherwise you will miss your life.”

Buddha

“Don’t judge each day by the harvest you reap but by the seeds that you plant.”

Robert Louis Stevenson

“If you live long enough, you’ll make mistakes. But if you learn from them, you’ll be a better person.”

Bill Clinton

“Some people want it to happen, some wish it would happen, others make it happen.”

Michael Jordan

“Dreaming, after all, is a form of planning.”

Gloria Steinem

“The purpose of life is to live it, to taste experience to the utmost, to reach out eagerly and without fear for newer and richer experience.”

Eleanor Roosevelt

“Life is a daring adventure or it is nothing at all.”

Helen Keller

Latest Posts

  1. Tim Cook to become Apple Executive Chairman / John Ternus to become Apple CEO

    ISeeTWizard
    21 April 2026 at 07:28
  2. Johny Srouji named Apple’s Chief Hardware Officer

    ISeeTWizard
    21 April 2026 at 07:25
  3. Apple accelerates environmental progress with highest‑ever recycled material in its products

    ISeeTWizard
    16 April 2026 at 15:36
  4. Slow Windows?

    ISeeTWizard
    13 April 2026 at 08:49
  5. New rating system

    ISeeTWizard
    12 April 2026 at 09:16

Users Viewing This Thread

  • 1 Guest

Visits

  • 6 Today
  • 36 Yesterday
  • 6 This Week
  • 270 Last Week
  • 88 This Month
  • 1,487 Last Month
  • 1,655 This Year
  • 0 Last Year
  • Ø 45.97 per day
  • 1,655 Total

Last updated: 4 May 2026 at 10:30

  1. Cookie Policy
  2. Privacy Policy
  3. Contact
  4. Legal Notice
Powered by WoltLab Suite™
Style: Ambience by cls-design
Stylename
Ambience
Manufacturer
cls-design
Licence
Commercial styles
Help
Supportforum
Visit cls-design