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 - Countries
    2. 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,450
    Posts
    187
    Files
    29
    • 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 – 83 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…?

“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

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

Marilyn Monroe

“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

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

Kesha

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

Drew Barrymore

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

Aristotle

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

Mandy Hale

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

Lao Tzu

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

Alexander Graham Bell

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

Abraham Lincoln

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

Bill Clinton

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

Lee Ann Womack

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

Oprah Winfrey

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

Paulo Coelho

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

Serena Williams

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

John Guare

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

William Osler

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

Kurt Vonnegut

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

Carol Burnett

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

Albert Einstein

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

Zendaya

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

Eleanor Roosevelt

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

Mae West

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

Virginia Woolf

“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

“Be persistent and never give up hope.”

George Lucas

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

Dolly Parton

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

Winston Churchill

“Be yourself; everyone else is already taken.”

Oscar Wilde

“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

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

Og Mandino

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

Babe Ruth

You cannot change what you refuse to confront.

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

Vincent Van Gogh

“Do one thing every day that scares you.”

Eleanor Roosevelt

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

Margaret Mead

“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

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

Helen Keller

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

Bill Bradley

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

Charles Dickens

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

George Bernard Shaw

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

Jennifer Aniston

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

Mark Twain

“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

“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 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

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

Les Brown

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

Dolly Parton

“Get busy living or get busy dying.”

Stephen King

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

Reba McEntire

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

May Sarton

“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

“There is no perfection, only life.”

Milan Kundera

“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

“Dream big and dare to fail.”

Norman Vaughan

“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

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

Franklin D. Roosevelt

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

William Hazlitt

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

Walt Whitman

“Everything you can imagine is real.”

Pablo Picasso

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

Mother Teresa

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

Mark Twain

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

Robert Frost

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

Ayn Rand

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

Malcolm X

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

Olivia Newton-John

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

Buddha

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

George Elliot

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

Lewis Carroll

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

Oprah Winfrey

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

Deepak Chopra

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

Ralph Waldo Emerson

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

Viola Davis

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

Lady Gaga

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

Michael Jordan

“We pass through this world but once.”

Stephen Jay Gould

“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 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

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

Joseph Campbell

“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 can’t help what you feel, but you can help how you behave.”

Margaret Atwood

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

John Lennon

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

Henry Ford

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

Drew Houston

“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

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

Robert Louis Stevenson

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

Malala Yousafzai

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

Leonard I. Sweet

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

Herman Melville

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

Audre Lorde

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

Margaret Fuller

“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

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

Confucius

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

Khalil Gibran

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

Audrey Hepburn

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

Gloria Steinem

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

Annette Funicello

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

Maya Angelou

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

Winston Churchill

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

Paulo Coelho

Latest Posts

  1. Add "Take Ownership" to the context menu

    ISeeTWizard
    18 March 2026 at 13:56
  2. Apple introduces AirPods Max 2

    ISeeTWizard
    17 March 2026 at 07:32
  3. Apple to celebrate 50 years of thinking different

    ISeeTWizard
    12 March 2026 at 16:48
  4. Apple just released 2 new iOS Firmwares - 15.8.7 & 16.7.15

    ISeeTWizard
    12 March 2026 at 07:57
  5. Apple just released 4 new iOS OTA Firmwares 15.8.7 & 16.7.15

    ISeeTWizard
    12 March 2026 at 07:56

Users Viewing This Thread

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