- 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
Filters/Actions for WooCommerce Products
Filters / Actions available for WooCommerce Products are listed below.
Module: Woo Products
Filter: uabb_woo_out_of_stock_string
Description: This filter will replace the “OUT OF STOCK” text of products from UABB woo-products grid or carousel.
// Changes the "OUT OF STOCK" message from Woo-Products module to your desired string.
add_filter( 'uabb_woo_out_of_stock_string', 'change_out_of_stock_string' );
function change_out_of_stock_string ($default) {
return 'Coming Soon'; //Return new string
}
uabb_quick_view_title_before
Fires at the beginning of the quick view title
function quick_before_title( $post_id ) {
echo '<div>I am at the beginning of the quick view title.</div>';
}
add_action( 'uabb_quick_view_title_before', 'quick_before_title', 10, 2 );
uabb_quick_view_title_after
Fires at the end of the quick view title
function quick_after_title( $post_id ) {
echo '<div>I am at the end of the quick view title.</div>';
}
add_action( 'uabb_quick_view_title_after', 'quick_after_title', 10, 2 );
uabb_quick_view_price_before
Fires at the beginning of the quick view price
function quick_view_price_before( $post_id ) {
echo '<div>I am at the beginnning of the quick view price.</div>';
}
add_action( 'uabb_quick_view_price_before', 'quick_view_price_before', 10, 2 );
uabb_quick_view_price_after
Fires at the endof the quick view price
function quick_view_price_after( $post_id ) {
echo '<div>I am at the beginnning of the quick view price.</div>';
}
add_action( 'uabb_quick_view_price_after', 'quick_view_price_after', 10, 2 );
uabb_quick_view_rating_before
Fires at the beginning of the quick view rating
function quick_view_rating_before( $post_id ) {
echo '<div>I am at the beginning of the quick view rating.</div>';
}
add_action( 'uabb_quick_view_rating_before', 'quick_view_rating_before', 10, 2 );
uabb_quick_view_rating_after
Fires at the end of the quick view rating
function quick_view_rating_after( $post_id ) {
echo '<div>I am at the end of the quick view rating.</div>';
}
add_action( 'uabb_quick_view_rating_after', 'quick_view_rating_after', 10, 2 );
uabb_quick_view_short_description_before
Fires at the beginning of the quick view short description
function quick_view_short_description_before( $post_id ) {
echo '<div>I am at the beginning of the quick view Short Description.</div>';
}
add_action( 'uabb_quick_view_short_description_before', 'quick_view_short_description_before', 10, 2 );
uabb_quick_view_short_description_after
Fires at the end of the quick view short description
function quick_view_short_description_after( $post_id ) {
echo '<div>I am at the end of the quick view Short Description.</div>';
}
add_action( 'uabb_quick_view_short_description_after', 'quick_view_short_description_after', 10, 2 );
uabb_quick_view_add_to_cart_before
Fires at the beginning of the quick view add to cart
function quick_view_add_to_cart_before( $post_id ) {
echo '<div>I am at the beginning of the quick view Add to cart.</div>';
}
add_action( 'uabb_quick_view_add_to_cart_before', 'quick_view_add_to_cart_before', 10, 2 );
uabb_quick_view_add_to_cart_after
Fires at the end of the quick view add to cart
function quick_view_add_to_cart_after( $post_id ) {
echo '<div>I am at the beginning of the quick view Add to cart.</div>';
}
add_action( 'uabb_quick_view_add_to_cart_after', 'quick_view_add_to_cart_after', 10, 2 );
uabb_quick_view_category_before
Fires at the beginning of the quick view category
function quick_view_cat_before( $post_id ) {
echo '<div>I am at the beginning of the quick view category before.</div>';
}
add_action( 'uabb_quick_view_category_before', 'quick_view_cat_before', 10, 2 );
uabb_quick_view_category_after
Fires at the end of the quick view category
function quick_view_cat_after( $post_id ) {
echo '<div>I am at the end of the quick view Category.</div>';
}
add_action( 'uabb_quick_view_category_after', 'quick_view_cat_after', 10, 2 );
Filters / Actions for Woo Categories module
uabb_woo_category_single_product_string
Filter: uabb_woo_category_single_product_string
Description: This filter will replace the “Product” text of product count from UABB woo-categories grid or carousel when there is a single product in the category.
// Changes the "Product" message from Woo-Categories module to your desired string. add_filter( 'uabb_woo_category_single_product_string', 'change_product_string' ); function change_product_string($default) { return 'Item'; //Return new string }
uabb_woo_category_multiple_product_string
Filter: uabb_woo_category_multiple_product_string
Description: This filter will replace the “Products” text of product count from UABB woo-categories grid or carousel when there are multiple products in the category.
// Changes the "Products" message from Woo-Categories module to your desired string. add_filter( 'uabb_woo_category_multiple_product_string', 'change_products_string' ); function change_products_string($default) { return 'Items'; //Return new string }
woocommerce_before_subcategory
Fires at the beginning of the WooCommerce subcategory
function content_before_subcategory( $category ) {
echo '<div>I am at the beginning of the Subcategory.</div>';
}
add_action( 'woocommerce_before_subcategory', 'content_before_subcategory', 10, 2 );
woocommerce_before_subcategory_title
Fires at the beginning of the WooCommerce subcategory title
function content_before_subcategory_title( $category ) {
echo '<div>I am at the beginning of the Subcategory title.</div>';
}
add_action( 'woocommerce_before_subcategory_title', 'content_before_subcategory_title', 10, 2 );
woocommerce_shop_loop_subcategory_title
Fires the WooCommerce shop loop subcategory title
function woo_shop_loop_subcat_title( $category ) {
echo '<div>I am the WooCommerce Subcategory title.</div>';
}
add_action( 'woocommerce_shop_loop_subcategory_title', 'woo_shop_loop_subcat_title', 10, 2 );
woocommerce_after_subcategory_title
Fires at the end of the WooCommerce shop loop subcategory title
function content_after_subcategory_title( $category ) {
echo '<div>I am at the end of the Subcategory title.</div>';
}
add_action( 'woocommerce_after_subcategory_title', 'content_after_subcategory_title', 10, 2 );
woocommerce_after_subcategory
Fires at the end of the WooCommerce shop loop subcategory Content
function content_after_subcategory( $category ) {
echo '<div>I am at the end of the Subcategory Content.</div>';
}
add_action( 'woocommerce_after_subcategory', 'content_after_subcategory', 10, 2 );
We don't respond to the article feedback, we use it to improve our support content.