WP Manifestindependent plugin directory
manifest / builders / bb-simple-text-module

Beaver Builder Simple Text Module

Adds a Simple Text module to Beaver Builder with extended HTML tag options

by SnippetNest · github.com/zackpyle/bb-simple-text-module · website

0stars
0forks

Install

No release zip yet. The repository archive installs, but the folder name will carry the branch suffix and updates will not flow:

wp plugin install https://github.com/zackpyle/bb-simple-text-module/archive/refs/heads/main.zip

Readme

Simple Text Module for Beaver Builder

A minimal text module for Beaver Builder that gives you exact control over the HTML tag used for your text content.

The native Beaver Builder Heading module only lets you select heading tags (e.g. h1–h6), and the native Text Editor module is a full WYSIWYG (which takes up a lot of space in the component view). This module fills the gap by providing a simple text input with flexible tag options.


Features

  • Simple text input
    • No WYSIWYG editor.
    • Ideal for small labels, titles, and short amounts of text.
  • Flexible tag selection
    • Choose from: h2, h3, h4, h5, h6, p, span, div.
    • Behaves like the native Heading module, but with additional non-heading options.
  • Perfect for Beaver Builder Components
    • Works great as a building block inside Beaver Builder’s Components feature as you can use it inside a Box module and compose your own “custom modules” from smaller pieces.

Filters

  • sn_simple_text_tag_options
    • Filter the list of available HTML tags for the HTML Tag select field.
    • Receives the default options array and must return an array in the same value => label format.

Example (in a theme or another plugin):

add_filter( 'sn_simple_text_tag_options', function ( $options ) {
    // Add extra tags
    $options['strong'] = 'strong';
    $options['em']     = 'em';

    // Remove tags from the dropdown (example: remove h1)
    unset( $options['h1'] );

    // You can also remove individual tags
    // unset( $options['div'] );

    return $options;
} );

Read the full README on GitHub →

Releases

TagPublished
1.2.5 Mar 31, 2026
1.2.4 Feb 23, 2026
1.2.3 Nov 21, 2025
1.2.2 Nov 21, 2025
1.2.1 Nov 20, 2025
1.1.0 Nov 19, 2025
1.0.2 Nov 19, 2025
1.0.1 Nov 19, 2025
1.0.0 Nov 19, 2025

These releases are tags only. The author does not attach a packaged zip, so there are no download counts to report.