Brandy Blocks
Brandy Blocks extends the WordPress block editor with everything you need to build beautiful, high-converting ecommerce pages. It adds custom blocks, advanced block enhancements, a 140+ pattern library, and WooCommerce features like wishlist and product comparison. All designed to work seamlessly with the Brandy theme. Custom Blocks Build any type of page with purpose-built blocks: ⛩️ Layout & Structure Container, Collapsible, Modal, Jump to Section 🗒️ Content Button, Icon, Breadcrumbs, Google Map, Count Down ❝ Testimonials Full testimonials system with avatar, name, content, rating, and description blocks 🏷️ Pricing Pricing table and individual pricing card blocks 📋 Forms Complete form builder: text, email, password, phone, select, radio/checkbox, toggle, and submit 📌 Blog / Posts Post Template, Relative Posts 🌐 WooCommerce Add to Wishlist Add to Compare List Compare Products Compare Table Quick View Product Recent Viewed Products Block Enhancements Extend any existing WordPress or WooCommerce block with: Slider / carousel functionality Box shadow controls Entry animations (fade, slide, zoom, and more) Responsive visibility conditions Hover effects and transitions Grid responsive layout Text gradient color Custom WooCommerce product button styles 140+ Pattern Library Browse and insert professionally designed block patterns with a built-in React-powered pattern browser. Just search, filter by category, and insert with one click. E-commerce Features Wishlist: Let customers save products and return to them later. AJAX-powered, with a dedicated wishlist page via shortcode. Product Comparison: Side-by-side product comparison with a synchronized list and detailed comparison table. Works Best With Brandy Theme: Full feature integration Brandy Sites: Blend blocks and templates for an upbeat ecommerce site WooCommerce: Required for e-commerce blocks HOW TO USE BRANDY BLOCKS By default, each Brandy block provides individual options and premade styles. You can edit block content within each element. To set up the whole block or parent block options, be sure to look into the Block Settings sidebar. 1. USING TESTIMONIALS From the block’s top left toolbar, you can either select parent block or individual block to find its respective settings. Set the total of testimonials: Once the whole parent block is selected, look for “Testimonial Count” to edit the number of items. Change the order of testimonials by dragging and dropping each item in the block settings sidebar. Parent block appearance: Carousel: Enable autoplay, edit transition speed, and more. Dimensions: Modify the spacing to fit your design needs. Edit testimonial content in the nested blocks: Customize rating and additional CSS Edit name, title, avatar, and testimonial text. 2. USING PRICING BLOCK There is a parent block, which contains the multi-column table layout, and the nested blocks. Parent block appearance: Design and edit heading, subheading, and description. Adjust pricing card layout and style. Typography, text color, background color, and custom formatting. Enhance responsiveness by enabling stack on mobile. Highlighted card: Pick the pricing card to stand out and how you want to highlight it. Tweak the color and format of the price display. Pricing plans: Each pricing card comes with customization options in the nested blocks. Enhance the feature list with available/unavailable icons. Fully edit all plan names, descriptions, and lists of features. We hope that this plugin is useful in helping you create stunning sections and pages for your WordPress ecommerce website. If you have any questions or feedback, please don’t hesitate to chat with us.
Top keywords
- block19×3.53%
- blocks12×2.23%
- pricing8×1.49%
- edit7×1.30%
- brandy6×1.12%
- parent6×1.12%
- parent block6×1.12%
- card5×0.93%
- product5×0.93%
- testimonials5×0.93%
- woocommerce5×0.93%
- color4×0.74%
Lightweight Accordion
Lightweight Accordion plugin for WordPress allows you to add collapse elements to posts using a Gutenberg block or a shortcode (via classic editor). By using the details HTML tag and a few lines of CSS this allows for a javascript-free accordion for minimum page load. Extremely Lightweight (<1kb): Without using Javascript the plugin uses the native details HTML tag and a few lines of code for almost no impact on front-end. Customizable: Options include customizing the HTML tag used for the accordion title, open by default, borders, colors, and accordion grouping (auto-close others when one opens). Shortcode Usage examples Here are a few examples of using the accordion plugin with shortcodes. [lightweight-accordion title="My Accordion"]My Content[/lightweight-accordion] Additionally you can display the accordion open on load with the accordion_open option. [lightweight-accordion title="My Accordion" accordion_open=true]My Content[/lightweight-accordion] You can also change the html tag wrapping the title of the accordion using the title_tag option. [lightweight-accordion title="My Accordion" title_tag="h3"]My Content[/lightweight-accordion] If you want to include FAQ schema you can add the schema option and set it to faq. [lightweight-accordion title="What is your return policy?" schema="faq"]You have 1 week to return your items[/lightweight-accordion] If you’d like put a border around the content of the accordion you can use the “bordered” attribute. [lightweight-accordion title="Bordered Content" bordered=true]My Content[/lightweight-accordion] If you want accordions to auto-close when another opens (exclusive accordion), use the “group” attribute with the same value on each accordion. [lightweight-accordion title="Question 1" group="faq"]Answer 1[/lightweight-accordion] [lightweight-accordion title="Question 2" group="faq"]Answer 2[/lightweight-accordion] [lightweight-accordion title="Question 3" group="faq"]Answer 3[/lightweight-accordion] Shortcode Options Here is the full listing of shortcode options. Additionally all of these options are accessible when using the Gutenberg block. title (Required Default: null) The title of your accordion will be displayed at the top for users to click. A good example would be to include a user’s question so they could click it for more details. content (Required Default: null) Content that will go into your accordion element. title_tag (Default: “span”) This sets the html tag that wraps the title in the accordion summary. Useful if you want to make it a heading tag for SEO purposes. accordion_open (Default: false) Set this to true if you want your accordion to be open by default. bordered (Default: false) Set this to true if you want a border around the accordion content. title_text_color (Default: false) Set this to a hex value or CSS color to change the color of the accordion title text. title_background_color (Default: false) Set this to a hex value or CSS color to change the color of the accordion title text. schema (Default: false) Set this to faq if you’d like FAQ schema to be included. class (Default: false) Used to add a custom class to the parent container of the accordion. anchor (Default: null) Adds the value as an ID to the accordion div as an anchor. autop (Default: true) By default the shortcode will wrap text in a ‘p’ tag. Set this to false if you’d like this disabled for the specific accordion. group (Default: false) Set this to a group name to make accordions with the same group auto-close when another opens. Uses the native HTML details name attribute for zero JavaScript overhead. Additional Details If you’d like to remove the “lightweight-accordion.css” from being enqueued on your site use the filter below. It’s recommend you style the accordion yourself if you use this filter. add_filter('lightweight_accordion_include_frontend_stylesheet', '__return_false' ); If you’d like to remove the “lightweight-accordion/editor-styles.css” from being enqueued in the admin area of your site you can use the filter below. add_filter('lightweight_accordion_include_admin_stylesheet', '__return_false' ); If you’d like to remove processing of shortcodes in accordion content you can use this filter. add_filter('lightweight_accordion_process_shortcodes', '__return_false' ); If you’d like to use inline Microdata for FAQ schema you can use this filter. (Not recommended) add_filter('lightweight_accordion_output_microdata', '__return_true' ); If you’d like to force “lightweight-accordion.css” to load on all of your site you can use this filter. By default the plugin will detect if the block or shortcode is used and enqueue the CSS. add_filter('lightweight_accordion_always_include_frontend_stylesheet', '__return_true' );