- How to update plugin manually through FTP
- How to update UABB?
- How to register your license?
- About Beta Versions
- Will I lose all my design work when I download and re-install the plugin?
- Getting Started with the Ultimate Addons for Beaver Builder
- How can I install the Ultimate Addons for Beaver Builder?
- Automatic Beta Updates
- How to check expiration date of license?
- How to enable / disable Beaver Builder's UI?
- UABB Global Settings
- How to White Label UABB?
- How to enable / disable Live Preview feature?
- How to Hide Templates from your Clients?
- How can I use other modules in Modal Popup / Advanced Accordion / Advanced Tab?
- How to enable / disable modules in UABB to reduce server requests?
- Section and Page Templates don’t look the same when I am using them. Why?
- How can I Begin Building a Page using UABB?
- Introducing Table Module
- How To Add Rows And Columns to the Table?
- How to add Table Header?
- How to add Table Content?
- How to add Sortable and Searchable Table? How to Show Entries Dropdown?
- How to Merge Columns and Rows in Table?
- How to Style the Table?
- How to Override Global Settings for Image / Icon?
- Create Table by Uploading CSV
- Video Gallery Module
- How to Set Categories for Videos?
- How to Design Filterable Video Gallery?
- How to Display Specific Video Category Tab as a Default on Page Load?
- How to Set a Custom Placeholder Image for the Video?
- How to Set Overlay Color on the Video Thumbnail on Mouse Hover?
- How to Show Video Caption on Hover?
- How to Show Video Category on Hover?
- Open a Specific Filterable Tab from URL
- Equal height option of Advanced Post module isn't working properly?
- How to Exclude your Current Post from Advanced Post module?
- How to Enable Taxonomy Filters in Advanced Posts?
- How to filter Query Parameters in Advanced Posts?
- How to enable Pagination for Advanced Posts module
- UABB Advanced Posts Custom Posts Layout shortcodes and usage?
- Advanced Posts Pagination not visible?
- Regenerate Thumbnails
- Open a Specific Filterable Tab from URL for Advanced Post
- Building Site-wide Modal Popups in Beaver Builder & UABB
- How can I use the Modal Popup module effectively?
- Is it Possible to Close a Modal Popup on the Click of a Button or Text?
- How to open a modal popup from another module?
- How to trigger a Modal Popup on the click of a Menu Element?
- How to trigger a Modal Popup on the click of an Interactive Banner 2 and from a text of any module’s text editor?
- Woo – Products Module
- How to set Grid and Carousel layout for WooCommerce products?
- How to display exact WooCommerce product with Query Builder?
- How to Set Featured Products in WooCommerce?
- How to Enable Quick View for WooCommerce Products?
- How to Exclude WooCommerce Products with Woo-Products Module?
- Filters/Actions for WooCommerce Products
- Business Reviews module
- How to get Yelp API key?
- How to find Yelp Business ID?
- How to find Google Place ID?
- How does the Refresh Reviews option function in the Business Reviews module?
- Unable to display more than 5 Google reviews/3 Yelp Reviews?
- How many numbers of reviews can be shown for Google and Yelp?
- How to get Google Places API key?
- Introducing User Registration Form Module!
- How to Create a User Registration Form using Beaver Builder?
- How to Create a User Registration Form with Only Email Field in Beaver Builder?
- Frequently Asked Questions about User Registration Forms
- Honeypot field in User Registration Form for Beaver Builder
- Google reCAPTCHA v2 and v3 in Contact Form and User Registration Form for Beaver Builder
- Troubleshooting Tips for Ultimate Addon’s Font Icons
- White Screen / Blank Screen / 500 Error After Installation
- Fatal error: Call to undefined function array_replace_recursive()
- How to Increase the Memory Limit of your site?
- Fatal error: Class 'FLBuilderAdminSettings' not found
- Failed to download template from Template Cloud
- Haven't received update notification yet?
- cURL error 51: SSL: No alternative certificate subject name matches target host name
- DIY Troubleshooting
The UABB Action Reference
Have you ever wanted a module to act like you want it to?
We are here to help. We’ll be adding a few actions that will make customization easier and faster. Don’t see an action you’ve thought of? Let us know. We’ll add that too!
Module: Advanced Post
Action: uabb_blog_posts_before_post
Description: This action gets executed at the starting of each post div. Parameters to this are current post_id and settings object. This is helpful when one needs extra actions on individual posts.
// Helps one perform any action before starting of each post div. function abc( $post_id, $settings ) { //Do any operation with the $post_id. Helps one perform any action before starting of each post div. echo 'some text'; } add_action( 'uabb_blog_posts_before_post', 'abc', 10, 2 );
Action: uabb_blog_posts_after_post
Description: This action gets executed at the end of each post div. Parameters to this are current post_id and settings object. This is helpful when one needs extra actions on individual posts.
// Helps one perform any action after the end of each post div. function abc($post_id, $settings ) { //Do any operation with the $post_id. Helps one perform any action after the end of each post div. echo 'some text'; } add_action( 'uabb_blog_posts_after_post', 'abc', 10, 2 );
Action: uabb_blog_posts_before_title
Description: This action gets executed before the post title is shown. Parameters to this are current post_id and settings object. This is helpful when one needs extra actions on individual posts.
// Helps one perform any action before the post title. function abc($post_id, $settings) { //Do any operation with the $post_id. Helps one perform any action before the post title. echo 'some text'; } add_action( 'uabb_blog_posts_before_title', 'abc', 10, 2);
Action: uabb_blog_posts_after_title
Description: This action gets executed after the post title is shown. Parameters to this are current post_id and settings object. This is helpful when one needs extra actions on individual posts.
// Helps one perform any action after the end of each post title. function abc($post_id, $settings) { //Do any operation with the $post_id. Helps one perform any action after the post title. echo 'some text'; } add_action( 'uabb_blog_posts_after_title', 'abc', 10, 2 );
Action: uabb_blog_posts_before_meta
Description: This action gets executed before the post meta is shown. Parameter to this is current post_id and settings object. This is helpful when one needs extra actions on individual posts.
// Helps one perform any action before the post meta. function abc($post_id, $settings) { //Do any operation with the $post_id. Helps one perform any action before the post meta. echo 'some text'; } add_action( 'uabb_blog_posts_before_meta', 'abc', 10, 2 );
Action: uabb_blog_posts_after_meta
Description: This action gets executed after the post meta is shown. Parameters to this are current post_id and settings object. This is helpful when one needs extra actions on individual posts.
// Helps one perform any action after the post meta. function abc($post_id, $settings) { //Do any operation with the $post_id. Helps one perform any action after the post meta. echo 'some text'; } add_action( 'uabb_blog_posts_after_meta', 'abc', 10, 2 );
Action: uabb_blog_posts_before_content
Description: This action gets executed before the post content is shown. Parameters to this are current post_id and settings object. This is helpful when one needs extra actions on individual posts.
// Helps one perform any action before the post content. function abc($post_id, $settings) { //Do any operation with the $post_id. Helps one perform any action before the post content. echo 'some text'; } add_action( 'uabb_blog_posts_before_content', 'abc', 10, 2 );
Action: uabb_blog_posts_after_content
Description: This action gets executed after the post content is shown. Parameters to this are current post_id and settings object. This is helpful when one needs extra actions on individual posts.
// Helps one perform any action after the post content. function abc($post_id, $settings) { //Do any operation with the $post_id. Helps one perform any action after the post content. echo 'some text'; } add_action( 'uabb_blog_posts_after_content', 'abc', 10, 2 );
Action: uabb_blog_posts_before_image
Description: This action gets executed at the starting of each post featured image. Parameters to this are current post_id and settings object. This is helpful when one needs extra actions on individual posts.
// Helps one perform any action before starting of each post featured image. function abc( $post_id, $settings ) { //Do any operation with the $post_id. Helps one perform any action before starting of each post featured image. echo 'some text'; } add_action( 'uabb_blog_posts_before_image', 'abc', 10, 2 );
Action: uabb_blog_posts_after_image
Description: This action gets executed after the each post featured image. Parameters to this are current post_id and settings object. This is helpful when one needs extra actions on individual posts.
// Helps one perform any action after the post featured image. function abc( $post_id, $settings ) { //Do any operation with the $post_id. Helps one perform any action after the each post featured image. echo 'some text'; } add_action( 'uabb_blog_posts_after_image', 'abc', 10, 2 );
Module: Advanced Menu
Action: uabb_advanced_menu_before
Description: This action is built to add some HTML code before the menu.
// This function adds Buy Now Button Before the Menu function function_name() { echo "<li><button> Buy Now </button></li>"; // Change this html. } add_action( 'uabb_advanced_menu_before', 'function_name' );
Action: uabb_advanced_menu_after
Description: This action is built to add some HTML code after the menu.
// This function adds Buy Now Button After the Menu function function_name() { echo "<li><button> Buy Now </button></li>"; // Change this html. } add_action( 'uabb_advanced_menu_after', 'function_name' );
Module: Price Box
Action: uabb_price_box_button
Description: This action is built to add custom HTML code in place of price box button. This is helpful when one needs to add custom button code. Parameter to this is $box_id which is column number and index starts from 0.
// This function add custom button in price box column function function_name( $box_id ) { if( $box_id == 0 ) { echo '<button type="button">Get Started</button>'; } } add_action( 'uabb_price_box_button', 'function_name', 10, 1);
Need more actions? We’ll keep updating this post. 🙂
We don't respond to the article feedback, we use it to improve our support content.