Loading...

Documentation Theme

Blocks

New in v6

Bootscore has support for the most common block widgets. All of them uses Bootstrap components for seamless integration.

Supported blocks

All blocks displaying a list utilize the List group component, which doesn’t support nested lists. Make sure to disable “Show hierarchy” in the list settings

Categories

Archives

Latest Posts

  • Bootscore 6.0.3
    by Basti
    This release offers bug fixes, improvements, and updated WooCommerce 9.5 templates. Users on v6 can update via the dashboard; v5.3.7 is available.
  • Bootscore 6.0.2
    by Basti
    This maintenance release includes minor bug fixes, updated templates for WooCommerce 9.4, and a new translation. An updated v5.3.6 is also available.
  • New plugin: bs TOC
    by Basti
    bs TOC is a lightweight alternative to traditional WordPress Table of Contents plugins, offering custom settings, minimal code, and seamless Bootstrap integration.
  • Bootscore 6.0.1
    by Basti
    This release offers bug fixes, improvements, and updated WooCommerce 9.3 templates. Users on v6 can update via the dashboard; v5.3.5 is available.
  • Bootscore 6
    by Basti
    Bootscore 6 stable is now available, offering exciting new features and useful improvements based on valuable feedback from v6-beta1 users.

Latest Comments

  1. v1.0.2 has just been released and fixes that. Thank you for pointing this out.

  2. Hi Basti, just I have it tested. Now It works really fine. Many thanks for the quick reaction. Bernd

  3. I have sent you an updated bs-toc.zip to your email address that links existing ID’s in the TOC. Let me…

  4. The links in TOC doesn’t work, if I use TOC in sources with existing HTML Anchors. It would work, if…

Calendar

January 2025
MTWTFSS
 12345
6789101112
13141516171819
20212223242526
2728293031 

WooCommerce Categories

Card in sidebar

New in v6

To ensure proper functionality of widgets in the sidebar, the .card component has been removed from widget registration. You can add cards by utilizing Group blocks and applying classes in the block’s advanced settings:

Group class card
| - H2 class card-header h6
| - Group class card-body
  | - Block widget

Card header

<!-- wp:group {"className":"card"} -->
<div class="wp-block-group card"><!-- wp:heading {"className":"card-header h6"} -->
<h2 class="wp-block-heading card-header h6">Card header</h2>
<!-- /wp:heading -->
<!-- wp:group {"className":"card-body"} -->
<div class="wp-block-group card-body"><!-- wp:archives {"displayAsDropdown":true,"showLabel":false,"showPostCounts":true} /--></div>
<!-- /wp:group --></div>
<!-- /wp:group -->

Using list-group-flush without card-body class:

Group class card
| - H2 class card-header h6
| - Block widget Categories/Archives/... class list-group-flush

Card header

<!-- wp:group {"className":"card"} -->
<div class="wp-block-group card"><!-- wp:heading {"className":"card-header h6"} -->
<h2 class="wp-block-heading card-header h6">Card header</h2>
<!-- /wp:heading -->
<!-- wp:categories {"showPostCounts":true,"showOnlyTopLevel":true,"className":"list-group-flush"} /--></div>
<!-- /wp:group -->
To top