Hooks for Developer

As you know WordPress provide actions and filters to hooks with your plugin into the rest of WordPress. In other words, you can hook into UDesign specific functionality to modify it by child theme or even plugins.

How To Use a Hook Or A Filter?

So, let’s assume you want to show product tab accordion in particular single product page. Of course you can edit parent theme’s code directly but you would lost all custom code after update. In such case, you can show accordion using our UDesign filter

Step 1: Copy the single product template file and modify the code in that file.

Step 2: Use the filter in a child theme’s single product/tabs/tabs.php.

Here is an example code.

add_filter( 'alpha_single_product_data_tab_type', function() {
     return 'accordion';
});

Actions are similar to the filters. By using an action, you don’t edit or overwrite the core code because your code will rarely need to be changed.

Actions Lists

alpha_after_core_framework_config

File: u-design-core/framework/config.php Description: Fires after setup Alpha Core FrameWork configuration. Arguments: None

alpha_after_core_framework_init

File: u-design-core/framework/init.php Description: Fires after framework init. Arguments: None

alpha_after_core_framework_plugins

File: u-design-core/framework/init.php Description: Fires after loading framework plugin compatibility. Arguments: None

alpha_after_core_framework_builders

File: u-design-core/framework/init.php Description: Fires after loading framework template builder. Arguments: None

alpha_after_core_framework_shortcodes

File: u-design-core/framework/init.php Description: Fires after loading framework init. Arguments: None

alpha_live_search

File: u-design-core/framework/addons/live-search/class-alpha-live-search.php Description: Fires after setting up live search configuration. Arguments: new Alpha_Live_Search

alpha_after_product_variation

File: u-design-core/framework/addons/product-advanced-swatch/class-alpha-advanced-swatch.php Description: Fires after print product attributes. Arguments: $options, $attribute_name, $terms

alpha_after_core_brand_addon

File: u-design-core/framework/addons/product-brand/class-alpha-product-brand.php Description: Fires after core product brand addon. Arguments: new Alpha_Product_Brand

alpha_custom_tab_admin

File: u-design-core/framework/addons/product-custom-tab/class-alpha-product-custom-tab-admin.php Description: Fires after setting up product custom tab admin configuration. Arguments: new Alpha_Product_Custom_Tab_Admin

alpha_after_data_addons

File: u-design-core/framework/addons/product-data-addons/class-alpha-product-data-addons.php Description: Fires after setting up data addons. Arguments: new Alpha_Product_Data_Addons

alpha_fbt_add_to_cart_discount

File: u-design-core/framework/addons/product-frequently-bought-together/class-alpha-pfbt.php Description: Fires after add frequently bought products to cart. Arguments: $main_id, $cart_products

alpha_after_product_ordering

File: u-design-core/framework/addons/product-ordering/class-alpha-product-ordering.php Description: Fires after product ordering. Arguments: new Alpha_Product_Ordering

alpha_before_login_social, alpha_after_login_social

File: u-design-core/framework/addons/share/class-alpha-share.php Description: Fires before(after) print social login content. Arguments: None

alpha_after_skeleton

File: u-design-core/framework/addons/skeleton/class-alpha-skeleton.php Description: Fires after skeleton initializing. Arguments: new Alpha_Skeleton

alpha_studio_for_builder

File: u-design-core/framework/addons/studio/class-alpha-studio.php Description: Fires after setting configuration for page builder. Arguments: new Alpha_Studio

alpha_determine_builder

File: u-design-core/framework/addons/studio/class-alpha-studio.php Description: Fires to determine page builder. Arguments: new Alpha_Studio

alpha_add_custom_fields

File: u-design-core/framework/addons/walker/class-alpha-walker-nav-menu-edit.php Description: Fires after add custom fields. Arguments: $item->ID, $item, $depth, $args

alpha_before_archive_template, alpha_after_archive_template

File: u-design-core/framework/builders/archive/class-alpha-archive-builder.php Description: Fires after run builder template. Arguments: $template

alpha_before_posts_loop, alpha_after_posts_loop

File: u-design-core/framework/builders/archive/widgets/posts/render-posts-elementor.php
u-design-core/framework/widgets/posts/render-posts.php
u-design/framework/theme-actions.php
u-design/framework/templates/posts/archive.php
u-design/framework/templates/posts/single/post-related.php Description: Fires before(after) rendering archive posts widget. Arguments: $props(none)

alpha_archive_builder_unset_preview

File: u-design-core/framework/builders/archive/widgets/posts/render-posts-elementor.php
u-design-core/framework/plugins/elementor/dynamic_tags/dynamic_tags.php Description: Fires after unset preview for editor and template view. Arguments: None

alpha_before_shop_template, alpha_after_shop_template

File: u-design-core/framework/builders/shop/class-alpha-shop-builder.php Description: Fires before(after) run shop builder template. Arguments: $template

alpha_shop_builder_unset_preview

File: u-design-core/framework/builders/shop/widgets/count/widget-count-elementor.php
u-design-core/framework/builders/shop/widgets/filter-toggle/widget-filter-toggle-elementor.php
u-design-core/framework/builders/shop/widgets/pagination/widget-pagination-elementor.php
u-design-core/framework/builders/shop/widgets/products/widget-products-elementor.php
u-design-core/framework/builders/shop/widgets/result/widget-result-elementor.php
u-design-core/framework/builders/shop/widgets/show-type/widget-show-type-elementor.php
u-design-core/framework/builders/shop/widgets/sort/widget-sort-elementor.php
u-design/framework/templates/woocommerce/loop/orderby.php Description: Fires after unset preview for editor and template view. Arguments: None

alpha_before_single_template, alpha_after_single_template

File: u-design-core/framework/builders/single/class-alpha-single-builder.php Description: Fires before(after) run single builder template. Arguments: $template

alpha_single_builder_unset_preview

File: u-design-core/framework/builders/single/widgets/author-box/widget-author-box-elementor.php
u-design-core/framework/builders/single/widgets/comments/widget-comments-elementor.php
u-design-core/framework/builders/single/widgets/content/widget-content-elementor.php
u-design-core/framework/builders/single/widgets/date/widget-date-elementor.php
u-design-core/framework/builders/single/widgets/excerpt/widget-excerpt-elementor.php
u-design-core/framework/builders/single/widgets/image/widget-image-elementor.php
u-design-core/framework/builders/single/widgets/meta/widget-meta-elementor.php
u-design-core/framework/builders/single/widgets/navigation/widget-navigation-elementor.php
u-design-core/framework/builders/single/widgets/related-posts/widget-related-posts-elementor.php
u-design-core/framework/builders/single/widgets/share/widget-share-elementor.php
u-design-core/framework/builders/single/widgets/tags/widget-tags-elementor.php
u-design-core/framework/builders/single/widgets/title/widget-title-elementor.php
u-design-core/framework/plugins/elementor/dynamic_tags/dynamic_tags.php Description: Fires after clear environment. Arguments: None

alpha_before_single_product_template, alpha_after_single_product_template

File: u-design-core/framework/builders/single-product/class-alpha-single-product-builder.php Description: Fires before(after) run single product builder template. Arguments: $template

alpha_single_product_builder_unset_preview

File: u-design-core/framework/shortcode.php
u-design-core/framework/builders/single-product/widgets/brands/widget-brands-elementor.php
u-design-core/framework/builders/single-product/widgets/cart-form/widget-cart-form-elementor.php
u-design-core/framework/builders/single-product/widgets/compare/widget-compare-elementor.php
u-design-core/framework/builders/single-product/widgets/data-tab/widget-data-tab-elementor.php
u-design-core/framework/builders/single-product/widgets/fbt/widget-fbt-elementor.php
u-design-core/framework/builders/single-product/widgets/flash-sale/widget-flash-sale-elementor.php
u-design-core/framework/builders/single-product/widgets/image/widget-image-elementor.php
u-design-core/framework/builders/single-product/widgets/linked-products/widget-linked-products-elementor.php
u-design-core/framework/builders/single-product/widgets/navigation/widget-navigation-elementor.php
u-design-core/framework/builders/single-product/widgets/price/widget-price-elementor.php
u-design-core/framework/builders/single-product/widgets/rating/widget-rating-elementor.php
u-design-core/framework/builders/single-product/widgets/tags/widget-tags-elementor.php
u-design-core/framework/builders/single-product/widgets/vendor-products/widget-vendor-products-elementor.php
u-design-core/framework/builders/single-product/widgets/wishlist/widget-wishlist-elementor.php
u-design-core/framework/plugins/elementor/dynamic_tags/dynamic_tags.php
u-design\framework\plugins\woocommerce\product-single.php
Description: Fires after unset post product. Arguments: None

alpha_extend_elementor_partials

File: u-design-core/framework/plugins/elementor/class-alpha-core-elementor.php Description: Fires after default partials for extending. Arguments: None

alpha_dynamic_tags_register

File: u-design-core/framework/plugins/elementor/dynamic_tags/dynamic_tags.php Description: Fires after add all the available dynamic tags. Arguments: $dynamic_tags

alpha_core_dynamic_before_render, alpha_core_dynamic_after_render

File: u-design-core/framework/plugins/elementor/dynamic_tags/tags/custom-field-acf-tag.php
u-design-core/framework/plugins/elementor/dynamic_tags/tags/custom-field-meta-box-tag.php
u-design-core/framework/plugins/elementor/dynamic_tags/tags/custom-field-meta-data-tag.php
u-design-core/framework/plugins/elementor/dynamic_tags/tags/custom-field-post-user-tag.php
u-design-core/framework/plugins/elementor/dynamic_tags/tags/custom-field-tag.php
u-design-core/framework/plugins/elementor/dynamic_tags/tags/custom-field-taxonomies-tag.php
u-design-core/framework/plugins/elementor/dynamic_tags/tags/custom-field-woo-tag.php
u-design-core/framework/plugins/elementor/dynamic_tags/tags/custom-gallery-tag.php
u-design-core/framework/plugins/elementor/dynamic_tags/tags/custom-image-acf-tag.php
u-design-core/framework/plugins/elementor/dynamic_tags/tags/custom-image-meta-box-tag.php
u-design-core/framework/plugins/elementor/dynamic_tags/tags/custom-image-post-user-tag.php
u-design-core/framework/plugins/elementor/dynamic_tags/tags/custom-image-tag.php
u-design-core/framework/plugins/elementor/dynamic_tags/tags/custom-image-woo-tag.php
u-design-core/framework/plugins/meta-box/class-alpha-admin-meta-boxes.php Description: Fires before(after) set current post type. Arguments: None

alpha_dynamic_extra_fields

File: u-design-core/framework/plugins/elementor/dynamic_tags/tags/custom-field-acf-tag.php
u-design-core/framework/plugins/elementor/dynamic_tags/tags/custom-field-meta-box-tag.php
u-design-core/framework/plugins/elementor/dynamic_tags/tags/custom-field-tag.php
u-design-core/framework/plugins/elementor/dynamic_tags/tags/custom-field-woo-tag.php
u-design-core/framework/plugins/elementor/dynamic_tags/tags/custom-gallery-tag.php
u-design-core/framework/plugins/elementor/dynamic_tags/tags/custom-image-acf-tag.php
u-design-core/framework/plugins/elementor/dynamic_tags/tags/custom-image-meta-box-tag.php
u-design-core/framework/plugins/elementor/dynamic_tags/tags/custom-image-tag.php
u-design-core/framework/plugins/elementor/dynamic_tags/tags/custom-image-woo-tag.php Description: Fires after add control for extra object. Arguments: $object, $widget, $plugin

alpha_elementor_column_addon_controls

File: u-design-core/framework/plugins/elementor/elements/column.php Description: Fires after add controls to column element. Arguments: new Alpha_Element_Column

alpha_elementor_column_addon_content_template

File: u-design-core/framework/plugins/elementor/elements/column.php Description: Fires after print column output in elementor column content template function. Arguments: new Alpha_Element_Column

alpha_elementor_column_render, alpha_elementor_column_after_render

File: u-design-core/framework/plugins/elementor/elements/column.php Description: Fires before(after) rendering column html. Arguments: $self, $settings, $has_background_overlay, $is_legacy_mode_active

alpha_elementor_addon_render

File: u-design-core/framework/plugins/elementor/elements/column.php Description: Fires after rendering effect addons such as duplex and ribbon. Arguments: $settings, $self->get_ID()

alpha_elementor_section_addon_controls

File: u-design-core/framework/plugins/elementor/elements/section.php Description: Fires after add controls to section element. Arguments: new Alpha_Element_Section

alpha_elementor_section_addon_content_template

File: u-design-core/framework/plugins/elementor/elements/section.php Description: Fires after print section output in elementor column content template function. Arguments: new Alpha_Element_Section

alpha_elementor_section_render, alpha_elementor_section_after_render

File: u-design-core/framework/plugins/elementor/elements/section.php Description: Fires before(after) rendering section html. Arguments: $self, $settings

alpha_common_elementor_widget_actions

File: u-design-core/framework/plugins/elementor/elements/widget-common.php Description: Fires after alpha common elementor widget construct. Arguments: new Alpha_Common_Elementor_Widget

alpha_elementor_addon_controls

File: u-design-core/framework/plugins/elementor/partials/addon.php Description: Fires after add elementor addon controls. Arguments: $self, $is_banner

alpha_before_elementor_block_content, alpha_after_elementor_block_content

File: u-design-core/framework/widgets/block/render-block.php Description: Fires before(after) rendering elementor block content. Arguments: $the_post, $template_name

alpha_before_block_content, alpha_after_block_content

File: u-design-core/framework/widgets/block/render-block.php Description: Fires before(after) rendering block content. Arguments: $the_post, $template_name

alpha_breadcrumb

File: u-design-core/framework/widgets/breadcrumb/render-breadcrumb.php
u-design/framework/theme-functions.php Description: Fires after run breadcrumb functions. Arguments: $atts

alpha_enqueue_product_widget_related_scripts

File: u-design-core/framework/widgets/products/render-products.php Description: Fires after enqueue product widget related script. Arguments: None

alpha_before_content, alpha_after_content

File: u-design/404.php
u-design/index.php
u-design/page.php
u-design/single.php
u-design/framework/templates/woocommerce/archive-product.php Description: Fires before(after) rendering page content. Arguments: None

alpha_print_before_page_layout, alpha_print_after_page_layout

File: u-design/404.php
u-design/index.php
u-design/page.php
u-design/single.php
u-design/framework/theme-actions.php
u-design/framework/templates/woocommerce/global/wrapper-start.php Description: Fires before(after) print page layout. Arguments: None

alpha_before_comments

File: u-design/comments.php Description: Fires before print comments. Arguments: None

alpha_after_main

File: u-design/footer.php Description: Fires after rendering main. Arguments: None

alpha_elementor_pro_footer_location

File: u-design/footer.php Description: Fires for Elementor Pro Footer. Arguments: None

alpha_after_page_wrapper

File: u-design/footer.php Description: Fires after redering page wrapper. Arguments: None

alpha_before_page_wrapper

File: u-design/header.php Description: Fires before redering page wrapper. Arguments: None

alpha_before_main

File: u-design/header.php Description: Fires before rendering main. Arguments: None

alpha_before_template, alpha_after_template

File: u-design/single-u-design_template.php Description: Fires before(after) rendering single template. Arguments: None

alpha_before_enqueue_theme_style, alpha_after_enqueue_theme_style

File: u-design/framework/class-alpha-assets.php Description: Fires before(after) enqueue theme style. Arguments: None

alpha_before_enqueue_custom_css, alpha_after_enqueue_custom_css

File: u-design/framework/class-alpha-assets.php Description: Fires before(after) enqueue custom style. Arguments:

alpha_after_framework_setup

File: u-design/framework/config.php Description: Fires after setup Alpha FrameWork configuration. Arguments: None

alpha_after_framework_init

File: u-design/framework/init.php Description: Fires after framework init. Arguments: $request

alpha_after_framework_plugins

File: u-design/framework/init.php Description: Fires after loading framework plugin compatibility. Arguments: $request

alpha_framework_addons

File: u-design/framework/init.php Description: Fires loading framework addons. Arguments: $request

alpha_after_framework_admin

File: u-design/framework/init.php Description: Fires after setting up framework admin. Arguments: $request

alpha_after_framework

File: u-design/framework/init.php Description: Fires after setting up framework. Arguments: $request

alpha_after_default_actions

File: u-design/framework/theme-actions.php Description: Fires after setting default actions and filters. Arguments: None

alpha_before_main_content

File: u-design/framework/theme-actions.php Description: Fires before rendering main content. Arguments: None

alpha_sidebar

File: u-design/framework/theme-actions.php Description: Fires after print sidebar. Arguments: None

alpha_before_inner_content, alpha_after_inner_content

File: u-design/framework/theme-actions.php Description: Fires before(after) print inner content. Arguments: $alpha_layout

alpha_after_main_content

File: u-design/framework/theme-actions.php Description: Fires after rendering main content. Arguments: None

alpha_after_default_options

File: u-design/framework/theme-options.php Description: Fires after setting default options. Arguments: None

alpha_add_wp_toolbar_menu

File: u-design/framework/admin/admin/class-alpha-admin.php Description: Fires after add toolbar menu. Arguments: new Alpha_Admin

alpha_importer_insert_term

File: u-design/framework/admin/importer/theme-wordpress-importer.php
u-design/framework/admin/importer/wordpress-importer.php Description: Fires after add a term. Arguments: $term_id, bool $old_id

alpha_importer_update_term

File: u-design/framework/admin/importer/theme-wordpress-importer.php
u-design/framework/admin/importer/wordpress-importer.php Description: Fires after update a term. Arguments: $term_id, bool $old_id

alpha_importer_update_post

File: u-design/framework/admin/importer/theme-wordpress-importer.php
u-design/framework/admin/importer/wordpress-importer.php Description: Fires after update a post. Arguments: $post_id, bool $post['post_id'], $postdata

alpha_importer_insert_nav_menu_item

File: u-design/framework/admin/importer/theme-wordpress-importer.php
u-design/framework/admin/importer/wordpress-importer.php Description: Fires after insert nav menu item. Arguments: $id

alpha_importer_insert_attachment

File: u-design/framework/admin/importer/theme-wordpress-importer.php
u-design/framework/admin/importer/wordpress-importer.php Description: Fires afer insert a attachment. Arguments: $post_id, bool $post['post_id']

alpha_after_lazyload_main_content

File: u-design/framework/admin/optimize-wizard/views/lazyload.php Description: Fires after lazyload main content. Arguments: None

alpha_after_performance_mobile

File: u-design/framework/admin/optimize-wizard/views/performance.php Description: Fires after performance mobile main content. Arguments: None

alpha_after_performance_font

File: u-design/framework/admin/optimize-wizard/views/performance.php Description: Fires after performance font main content. Arguments: $preload_fonts

alpha_after_performance_main_content

File: u-design/framework/admin/optimize-wizard/views/performance.php Description: Fires after performance main content. Arguments: None

alpha_after_resource_main_content

File: u-design/framework/admin/optimize-wizard/views/resources.php Description: Fires after resources main content. Arguments: None

alpha_importer_import_revslider

File: u-design/framework/admin/setup-wizard/class-alpha-setup-wizard.php Description: Fires after add a revolution import symbol. Arguments: $slider_id

alpha_importer_before_reset_menus

File: u-design/framework/admin/setup-wizard/class-alpha-setup-wizard.php Description: Fires before reset menus. Arguments: None

alpha_importer_before_import_widgets

File: u-design/framework/admin/setup-wizard/class-alpha-setup-wizard.php Description: Fires before import widgets. Arguments: None

alpha_importer_before_import_options

File: u-design/framework/admin/setup-wizard/class-alpha-setup-wizard.php Description: Fires before import theme options. Arguments: None

alpha_demo_imported

File: u-design/framework/admin/setup-wizard/class-alpha-setup-wizard.php Description: Fires after import demo. Arguments: $demo, bool $add_kit

alpha_before_replacement

File: u-design/framework/admin/setup-wizard/class-alpha-setup-wizard.php Description: Fires before replacement. Arguments: None

alpha_clean_after_import

File: u-design/framework/admin/setup-wizard/class-alpha-setup-wizard.php Description: Fires after clean import. Arguments: new Alpha_Setup_Wizard

alpha_tool_executed

File: u-design/framework/admin/tools/class-alpha-tools.php Description: Fires after a Alpha tool has been executed. Arguments: $tool

alpha_execute_tool

File: u-design/framework/admin/tools/class-alpha-tools.php Description: Fires after setting default execute options. Arguments: new Alpha_Tools, $tool

alpha_after_pc_hooks

File: u-design/framework/plugins/woocommerce/product-category.php Description: Fires after setting product category actions and filters. Arguments: None

alpha_after_product_loop_hooks

File: u-design/framework/plugins/woocommerce/product-loop.php Description: Fires after setting product single actions and filters. Arguments: None

alpha_after_ps_hooks

File: u-design/framework/plugins/woocommerce/product-single.php Description: Fires after setting product single actions and filters. Arguments: None

alpha_sidebar_content_start, alpha_sidebar_content_end

File: u-design/framework/templates/sidebar.php Description: Fires before(after) print sidebar content. Arguments: None

alpha_elementor_pro_header_location

File: u-design/framework/templates/header/header.php Description: Fires for elementor Pro Header. Arguments: None

alpha_post_loop_before_item, alpha_post_loop_after_item

File: u-design/framework/templates/posts/post.php, u-design/framework/templates/posts/single.php Description: Fires before(after) rendering post loop item. Arguments: $type

alpha_wc_result_count

File: u-design/framework/templates/woocommerce/archive-product.php Description: Fires for woocommerce result count. Arguments: None

alpha_product_loop_before_cat, alpha_product_loop_after_cat

File: u-design/framework/templates/woocommerce/content-product-cat.php Description: Fires before(after) rendering product category loop item. Arguments: None

alpha_product_loop_before_item, alpha_product_loop_after_item

File: u-design/framework/templates/woocommerce/content-product.php Description: Fires before(after) rendering product loop item. Arguments: None

alpha_shop_loop_item_categories

File: u-design/framework/templates/woocommerce/content-product.php Description: Fires for shop loop item categories. Arguments: None

alpha_before_product_summary, alpha_after_product_summary

File: u-design/framework/templates/woocommerce/content-single-product.php Description: Fires before(after) rendering product summary. Arguments: None

alpha_after_product_summary_wrap

File: u-design/framework/templates/woocommerce/content-single-product.php Description: Fires after rendering single product wrap. Arguments: None

alpha_helpful_recommended

File: u-design/framework/templates/woocommerce/single-product-reviews.php Description: Fires fore display recommended percentage on single product page. Arguments: $product

alpha_fbt_mini_cart_coupon_html, alpha_fbt_no_coupon_html

File: u-design/framework/templates/woocommerce/cart/mini-cart.php Description: Fires for create(delete) coupon html. Arguments: None

alpha_after_shop_loop_end

File: u-design/framework/templates/woocommerce/loop/loop-end.php Description: Fires after rendering shop loop. Arguments: None

alpha_before_shop_loop_start

File: u-design/framework/templates/woocommerce/loop/loop-start.php Description: Fires before rendering shop loop. Arguments: None

alpha_register_form

File: u-design/framework/templates/woocommerce/myaccount/form-login.php Description: Fires for register form. Arguments: None

alpha_after_customer_login_form

File: u-design/framework/templates/woocommerce/myaccount/form-login.php Description: Fires after customer login form. Arguments: None

alpha_wc_before_notice, alpha_wc_after_notice

File: u-design/framework/templates/woocommerce/notices/error.php
u-design/framework/templates/woocommerce/notices/notice.php
u-design/framework/templates/woocommerce/notices/success.php Description: Fires before(after) print woocommerce notice. Arguments: None

alpha_single_product_before_image

File: u-design/framework/templates/woocommerce/single-product/product-image.php Description: Fires before print single product image. Arguments: None

alpha_before_wc_gallery_figure, alpha_after_wc_gallery_figure

File: u-design/framework/templates/woocommerce/single-product/product-image.php Description: Fires before(after) print woocommerce gallery figure. Arguments: None

alpha_before_product_gallery, alpha_after_product_gallery

File: u-design/framework/templates/woocommerce/single-product/product-image.php Description: Fires before(after) print product gallery. Arguments: None

alpha_woocommerce_product_images

File: u-design/framework/templates/woocommerce/single-product/product-image.php Description: Fires for print woocommerce product images. Arguments: None

alpha_wc_product_before_tabs

File: u-design/framework/templates/woocommerce/single-product/tabs/tabs.php Description: Fires before rendering product tabs. Arguments: None

Filters Lists

alpha_get_col_class

File: u-design/framework/common-functions.php
u-design-core/framework/common-functions.php Description: Filters the column class from columns count array. Default Value: $class

alpha_get_template_part

File: u-design/framework/common-functions.php
u-design-core/framework/common-functions.php Description: Filters the template path. Default Value: $template, $slug, $name

alpha_placeholder_img_src

File: u-design-core/framework/common-functions.php Description: Filters the placeholder image url. Default Value: $src

alpha_extra_features

File: u-design-core/framework/config.php Description: Filters the extra features. Default Value: array()

alpha_creative_layout_filter

File: u-design-core/framework/plugin-functions.php Description: Filters the creative layout. Default Value: $layout

alpha_elementor_addon_options

File: u-design-core/framework/plugin-functions.php Description: Filters the elementor addon options such as duplex and ribbon. Default Value:

alpha_single_product_builder_set_preview

File: u-design-core/framework/shortcode.php
u-design-core/framework/builders/single-product/widgets/brands/widget-brands-elementor.php
u-design-core/framework/builders/single-product/widgets/cart-form/widget-cart-form-elementor.php
u-design-core/framework/builders/single-product/widgets/compare/widget-compare-elementor.php
u-design-core/framework/builders/single-product/widgets/data-tab/widget-data-tab-elementor.php
u-design-core/framework/builders/single-product/widgets/fbt/widget-fbt-elementor.php
u-design-core/framework/builders/single-product/widgets/flash-sale/widget-flash-sale-elementor.php
u-design-core/framework/builders/single-product/widgets/image/widget-image-elementor.php
u-design-core/framework/builders/single-product/widgets/linked-products/widget-linked-products-elementor.php
u-design-core/framework/builders/single-product/widgets/navigation/widget-navigation-elementor.php
u-design-core/framework/builders/single-product/widgets/price/widget-price-elementor.php
u-design-core/framework/builders/single-product/widgets/rating/widget-rating-elementor.php
u-design-core/framework/builders/single-product/widgets/tags/widget-tags-elementor.php
u-design-core/framework/builders/single-product/widgets/vendor-products/widget-vendor-products-elementor.php
u-design-core/framework/builders/single-product/widgets/wishlist/widget-wishlist-elementor.php
u-design-core/framework/plugins/elementor/dynamic_tags/dynamic_tags.php
u-design/framework/plugins/woocommerce/product-single.php Description: Filters the post products in single product builder. Default Value: false

alpha_breadcrumb_args

File: u-design-core/framework/addons/breadcrumb/class-alpha-breadcrumb.php Description: Filters the breadcrumb builder option. Default Value:

alpha_is_vendor_store

File: u-design-core/framework/addons/breadcrumb/class-alpha-breadcrumb.php Description: Filters whether current page is vendor or not. Default Value: false

alpha_get_archive_link

File: u-design-core/framework/addons/breadcrumb/class-alpha-breadcrumb.php Description: Filters the archive link. Default Value: $link, $post_type

alpha_get_archive_name

File: u-design-core/framework/addons/breadcrumb/class-alpha-breadcrumb.php Description: Filters the archive name. Default Value: $archive_title, $post_type

alpha_breadcrumb_structured_data

File: u-design-core/framework/addons/breadcrumb/class-alpha-breadcrumb.php Description: Filters the data which structured in breadcrumb. Default Value: $microdata, $breadcrumbs

alpha_live_search_query

File: u-design-core/framework/addons/live-search/class-alpha-live-search.php Description: Filters the ajax search query. Default Value: $request_query

alpha_live_search_post_type

File: u-design-core/framework/addons/live-search/class-alpha-live-search.php Description: Filters the post type when you search in. Default Value: $post_type

alpha_live_search_function

File: u-design-core/framework/addons/live-search/class-alpha-live-search.php Description: Filters the functions using in search. Default Value: 'get_posts', $search_query, $args

alpha_check_product_variation_type

File: u-design-core/framework/addons/product-advanced-swatch/class-alpha-advanced-swatch.php Description: Filters the product variation type exist. Default Value: $result, $attr_name

alpha_woo_admin_product_term_list

File: u-design-core/framework/addons/product-brand/class-alpha-product-brand.php Description: Filters admin product term from term list. Default Value: implode( ', ', $termlist ), $admin_term, $post_id, $termlist, $terms

alpha_woo_compare_shortcode_tag

File: u-design-core/framework/addons/product-compare/class-alpha-product-compare.php Description: Filters the compare shortcode tag in woocommerce. Default Value: $compare_name

alpha_compare_no_product_to_remove_message

File: u-design-core/framework/addons/product-compare/class-alpha-product-compare.php Description: Filters the message when no products added in compare page. Default Value: string $message

alpha_product_custom_tab_content_editor_settings

File: u-design-core/framework/addons/product-custom-tab/class-alpha-product-custom-tab-admin.php Description: Filters the content of custom product tab by editor settings. Default Value: $settings

alpha_fbt_product_ids

File: u-design-core/framework/addons/product-frequently-bought-together/class-alpha-pfbt.php Description: Filters the product ids from frequently bought together. Default Value: $product_ids, $product

alpha_single_product_data_tab_type

File: u-design-core/framework/addons/product-frequently-bought-together/class-alpha-pfbt.php
u-design/framework/templates/woocommerce/single-product-reviews.php
u-design/framework/templates/woocommerce/single-product/tabs/additional-information.php
u-design/framework/templates/woocommerce/single-product/tabs/description.php Description: Filters the tab type in single product page.
u-design/framework/templates/woocommerce/single-product/tabs/tabs.php Default Value: string 'tab'

alpha_single_product_fbt_title

File: u-design-core/framework/addons/product-frequently-bought-together/class-alpha-pfbt.php Description: Filters the ftb title in single product. Default Value: string 'Frequently Bought Together'

alpha_frequently_bought_together_product

File: u-design-core/framework/addons/product-frequently-bought-together/class-alpha-pfbt.php Description: Filters the product id from fbt. Default Value: $product_id, string 'product'

alpha_add_fbt_coupon

File: u-design-core/framework/addons/product-frequently-bought-together/class-alpha-pfbt.php Description: Filters the coupon which added in ftb. Default Value: bool true, new Alpha_Product_Frequently_Bought_Together

alpha_fbt_coupon_code

File: u-design-core/framework/addons/product-frequently-bought-together/class-alpha-pfbt.php Description: Filters the coupon code in ftb. Default Value: string 'frequently-bought-together'

alpha_product_comment_images_mimetypes

File: u-design-core/framework/addons/product-image-comments/class-alpha-product-image-comment.php Description: Filters the image types in product comment. Default Value: array() like 'jpeg, png, jpg, avi, mp4, mpeg, ogv, ts, webm, 3gp, 3g2'

alpha_wc_order_popularity_date

File: u-design-core/framework/addons/product-ordering/class-alpha-product-ordering.php Description: Filters the product ordered by popularity in woocommerce. Default Value: $args

alpha_wc_order_wish_count

File: u-design-core/framework/addons/product-ordering/class-alpha-product-ordering.php Description: Filters the product ordered by wishlist count. Default Value: $args

alpha_wc_order_sale_end_date

File: u-design-core/framework/addons/product-ordering/class-alpha-product-ordering.php Description: Filters the product ordered by end date of sale products. Default Value: $args

alpha_wc_order_sale_start_date

File: u-design-core/framework/addons/product-ordering/class-alpha-product-ordering.php Description: Filters the product ordered by start date of sale products. Default Value: $args

alpha_wc_order_create_date

File: u-design-core/framework/addons/product-ordering/class-alpha-product-ordering.php Description: Filters the product ordered by created date. Default Value: $args

alpha_nextend_social_login

File: u-design-core/framework/addons/share/class-alpha-share.php Description: Filters the nextend social login. Default Value: $res, $social

alpha_studio_vars

File: u-design-core/framework/addons/studio/class-alpha-studio.php Description: Filters the styles and scripts in studio. Default Value: $studio_vars

alpha_import_result

File: u-design-core/framework/addons/studio/class-alpha-studio.php Description: Filters the import result. Default Value: $result

alpha_favourites_key

File: u-design-core/framework/addons/studio/class-alpha-studio.php Description: Filters the favourite key in terms of page builder. Default Value: $favourites_key, $page_type

alpha_studio_block_content

File: u-design-core/framework/addons/studio/class-alpha-studio.php Description: Filters the styles and scripts for related posts such as attachments and contact forms. Default Value: $block_content

alpha_transient_key

File: u-design-core/framework/addons/studio/class-alpha-studio.php Description: Filters the transient key in terms of page builder. Default Value: $transient_key, $page_type

alpha_menu_lazyload_content

File: u-design-core/framework/addons/walker/class-alpha-walker-nav-menu.php Description: Filters the menu content that is lazy loading. Default Value: $content, $megamenu, $megamenu_width, $megamenu_pos

alpha_template_types

File: u-design-core/framework/builders/class-alpha-builders.php Description: Filters the template builder types. Default Value: $template_types

alpha_exclude_builder_load

File: u-design-core/framework/builders/class-alpha-builders.php Description: Filters the template builder when it's loading. Default Value: array() include template builder names.

alpha_builder_addon_html

File: u-design-core/framework/builders/class-alpha-builders.php Description: Filters the addon html (ex.: custom css and js) which are adding to admin's localize vars. Default Value: array()

alpha_condition_exclude_post_types

File: u-design-core/framework/builders/archive/class-alpha-archive-builder.php
u-design-core/framework/builders/single/class-alpha-single-builder.php
u-design/framework/admin/layout-builder/class-alpha-layout-builder-admin.php Description: Filters the exclude post type. Default Value: array() the post type array

alpha_layout_builder_is_available_archive

File: u-design-core/framework/builders/archive/class-alpha-archive-builder.php
u-design/framework/admin/layout-builder/class-alpha-layout-builder-admin.php Description: Filters the layout builder which is avaiable archive. Default Value: bool, $post_type

alpha_archive_builder_set_preview

File: u-design-core/framework/plugins/elementor/dynamic_tags/dynamic_tags.php
u-design-core/framework/builders/archive/widgets/posts/render-posts-elementor.php Description: Filters the preview for editor and template view. Default Value: false

alpha_archive_builder_can_render_posts

File: u-design-core/framework/builders/archive/widgets/posts/render-posts-elementor.php Description: Filters the posts that are possible to render by archive builder. Default Value: true, $preview_mode

alpha_archive_post_filter_cat_html

File: u-design-core/framework/builders/archive/widgets/posts/render-posts-elementor.php Description: Filters the category html included in archive post. Default Value: $category_html

alpha_account_dashboard_link

File: u-design-core/framework/builders/header/widgets/account/render-account-elementor.php
u-design/framework/templates/woocommerce/myaccount/navigation.php Description: Filters the url to link account dashboard. Default Value: None

alpha_wcml_multi_currency_format

File: u-design-core/framework/builders/header/widgets/currency-switcher/render-currency-switcher-elementor.php Description: Filters the wcml multi currency by default. Default Value: string $default

alpha_icl_show_native_name

File: u-design-core/framework/builders/header/widgets/language-switcher/render-language-switcher-elementor.php Description: Filters the native name in language switcher. Default Value: true, $language

alpha_shop_builder_set_preview

File: u-design-core/framework/builders/shop/widgets/count/widget-count-elementor.php
u-design-core/framework/builders/shop/widgets/filter-toggle/widget-filter-toggle-elementor.php
u-design-core/framework/builders/shop/widgets/pagination/widget-pagination-elementor.php
u-design-core/framework/builders/shop/widgets/products/widget-products-elementor.php
u-design-core/framework/builders/shop/widgets/result/widget-result-elementor.php
u-design-core/framework/builders/shop/widgets/show-type/widget-show-type-elementor.php
u-design-core/framework/builders/shop/widgets/sort/widget-sort-elementor.php Description: Filters the preview for editor and template. Default Value: false

alpha_sidebar_widgets

File: u-design-core/framework/builders/sidebar/class-alpha-sidebar-builder.php Description: Filters the widgets adding to sidebar Default Value: $widgets

alpha_products_filter_price_range

File: u-design-core/framework/builders/sidebar/widgets/price-filter/widget-price-filter-sidebar.php Description: Filters the price range in products filter. Default Value: $steps

alpha_products_filter_price_range_html

File: u-design-core/framework/builders/sidebar/widgets/price-filter/widget-price-filter-sidebar.php Description: Filters the html for products filter price range. Default Value: $format_text_escaped, $step

alpha_layout_builder_is_available_single

File: u-design-core/framework/builders/single/class-alpha-single-builder.php
u-design/framework/admin/layout-builder/class-alpha-layout-builder-admin.php Description: Filters the single layout builder which is avaiable. Default Value: true, $post_type

alpha_single_builder_set_preview

File: u-design-core/framework/builders/single/widgets/author-box/widget-author-box-elementor.php
u-design-core/framework/builders/single/widgets/comments/widget-comments-elementor.php
u-design-core/framework/builders/single/widgets/content/widget-content-elementor.php
u-design-core/framework/builders/single/widgets/date/widget-date-elementor.php
u-design-core/framework/builders/single/widgets/excerpt/widget-excerpt-elementor.php
u-design-core/framework/builders/single/widgets/image/widget-image-elementor.php
u-design-core/framework/builders/single/widgets/meta/widget-meta-elementor.php
u-design-core/framework/builders/single/widgets/navigation/widget-navigation-elementor.php
u-design-core/framework/builders/single/widgets/related-posts/widget-related-posts-elementor.php
u-design-core/framework/builders/single/widgets/share/widget-share-elementor.php
u-design-core/framework/builders/single/widgets/tags/widget-tags-elementor.php
u-design-core/framework/builders/single/widgets/title/widget-title-elementor.php
u-design-core/framework/plugins/elementor/dynamic_tags/dynamic_tags.php Description: Filters the preview for editor and template. Default Value: false

alpha_single_product_widgets

File: u-design-core\framework\builders\single-product\class-alpha-single-product-builder.php Description: Filters the widget in single product. Default Value: $widgets

alpha_col_default

File: u-design-core/framework/builders/single-product/widgets/image/widget-image-elementor.php
u-design-core/framework/plugins/elementor/partials/creative.php
u-design-core/framework/plugins/elementor/partials/grid.php
u-design-core/framework/widgets/timeline-horizontal/widget-timeline-horizontal-elementor.php Description: Filters the default column spacing. Default Value: string 'md'

alpha_elementor_widgets

File: u-design-core/framework/plugins/elementor/class-alpha-core-elementor.php Description: Filters the widgets which provide by elementor. Default Value: $widgets

alpha_elementor_widget_addons

File: u-design-core/framework/plugins/elementor/class-alpha-core-elementor.php Description: Filters the widget which added on by theme. Default Value: $addons

alpha_elementor_block_style

File: u-design-core/framework/plugins/elementor/class-alpha-core-elementor.php
u-design-core/framework/widgets/block/render-block.php Description: Filters the style for elementor block. Default Value: $block_css

alpha_elementor_block_script

File: u-design-core/framework/widgets/block/render-block.php Description: Filters the script for elementor block. Default Value: $script

alpha_dynamic_tags

File: u-design-core/framework/plugins/elementor/dynamic_tags/dynamic_tags.php Description: Filters the tags which added dynamically. Default Value: $tags

alpha_dynamic_extra_fields_content

File: u-design-core/framework/plugins/elementor/dynamic_tags/tags/custom-field-meta-box-tag.php
u-design-core/framework/plugins/elementor/dynamic_tags/tags/custom-field-tag.php
u-design-core/framework/plugins/elementor/dynamic_tags/tags/custom-field-woo-tag.php
u-design-core/framework/plugins/elementor/dynamic_tags/tags/custom-gallery-tag.php
u-design-core/framework/plugins/elementor/dynamic_tags/tags/custom-image-acf-tag.php
u-design-core/framework/plugins/elementor/dynamic_tags/tags/custom-image-meta-box-tag.php
u-design-core/framework/plugins/elementor/dynamic_tags/tags/custom-image-tag.php
u-design-core/framework/plugins/elementor/dynamic_tags/tags/custom-image-woo-tag.php Description: Filters the content for dynamic extra fields. Default Value: null, $atts, string 'field'

File: u-design-core/framework/plugins/elementor/dynamic_tags/tags/custom-field-tag.php
u-design-core/framework/plugins/elementor/dynamic_tags/tags/custom-image-tag.php Description: Filters the object adding to dynamic field. Default Value: $objects

alpha_elementor_column_addons

File: u-design-core/framework/plugins/elementor/elements/column.php Description: Filters the column element which added on by theme. Default Value: array()

alpha_elementor_section_addons

File: u-design-core/framework/plugins/elementor/elements/section.php Description: Filters the section element which added on by theme. Default Value: array()

alpha_elementor_section_addon_render_attributes

File: u-design-core/framework/plugins/elementor/elements/section.php Description: Filters the render attributes for added on section. Default Value: $options, $self, $settings

alpha_dr_settings

File: u-design-core/framework/plugins/elementor/elements/widget-common.php Description: Filters the default settings. Default Value: array()

alpha_single_product_extended_slider_options

File: u-design-core/framework/plugins/elementor/partials/products.php Description: Filters the extended slider options in single product. Default Value: $extra_options

alpha_select_post_types

File: u-design-core/framework/plugins/elementor/restapi/select2.php Description: Filters the selected post types. Default Value: array() include post types

alpha_select_taxonomies

File: u-design-core/framework/plugins/elementor/restapi/select2.php Description: Filters the selected taxonomies. Default Value: array() include taxonomies

alpha_get_archives

File: u-design-core/framework/plugins/elementor/restapi/select2.php Description: Filters the archives filtered by query. Default Value: $query_args

alpha_get_taxonomies

File: u-design-core/framework/plugins/elementor/restapi/select2.php Description: Filters the taxonomies filtered by query. Default Value: $query_args

alpha_init_custom_tabs

File: u-design-core/framework/plugins/elementor/tabs/widget-advanced-tabs.php Description: Filters the custom tabs. Default Value: $custom_tabs

alpha_elementor_addon_sections

File: u-design-core/framework/plugins/elementor/tabs/widget-advanced-tabs.php Description: Filters the sections which added on in elementor. Default Value: array() include added on sections

alpha_metabox_tabs

File: u-design-core/framework/plugins/meta-box/class-alpha-admin-meta-boxes.php Description: Filters the metabox tabs. Default Value: $meta_tabs, $post_type

alpha_metabox_fields

File: u-design-core/framework/plugins/meta-box/class-alpha-admin-meta-boxes.php Description: Filters the metabox fields. Default Value: $meta_fields, $post_type

alpha_show_templates_edit_link

File: u-design-core/framework/widgets/block/render-block.php Description: Default Value: true

alpha_lazyload_images

File: u-design-core/framework/widgets/block/render-block.php Description: Filters the lazyload images. Default Value: array() add image placeholders

alpha_header_element_logo_url

File: u-design-core/framework/widgets/logo/render-logo.php Description: Filters the header element logo url. Default Value: $path

alpha_menu_widget_default

File: u-design-core/framework/widgets/menu/widget-menu-elementor.php Description: Filters the menu widget default style. Default Value: string 'horizontal'

alpha_products_filter_cat_html

File: u-design-core/framework/widgets/products/render-products.php Description: Filters the products filtered by category. Default Value: $category_html

alpha_get_comments_pagination_html

File: u-design/comments.php Description: Filters the html for comments pagination. Default Value: paginate_comments_links( array( 'echo' => false ) )

alpha_main_class

File: u-design/header.php Description: Filters the main class. Default Value: $classes

alpha_critical_css

File: u-design/framework/class-alpha-assets.php Description: Filters the critical css. Default Value: string $css

alpha_resource_disable_elementor

File: u-design/framework/class-alpha-assets.php Description: Filters the resource that disable elementor. Default Value: $option

alpha_vars

File: u-design/framework/class-alpha-assets.php Description: Filters the vars. Default Value: $localize_vars

alpha_sidebars

File: u-design/framework/class-alpha-support.php Description: Filters the sidebars. Default Value: $sidebars

alpha_wc_checkout_ptb_title

File: u-design/framework/theme-actions.php Description: Filters the title in checkout page title bar. Default Value: $output_string, $step

alpha_has_left_sidebar, alpha_has-right_sidebar

File: u-design/framework/theme-actions.php Description: Filters the left(right) sidebar. Default Value: bool (has left sidebar or not)

alpha_main_content_wrap_cls

File: u-design/framework/theme-actions.php Description: Filters the class which wrap main content. Default Value: $main_content_wrap_class

alpha_main_content_class

File: u-design/framework/theme-actions.php Description: Filters the main content class. Default Value: string 'main-content'

alpha_custom_post_types

File: u-design/framework/theme-actions.php Description: Filters the custom post types. Default Value: array()

alpha_post_args

File: u-design/framework/theme-actions.php Description: Filters the post arguments. Default Value: $args

alpha_google_fonts

File: u-design/framework/theme-actions.php Description: Filters the google fonts. Default Value: array() includes fonts

alpha_filter_reponsive_cols

File: u-design/framework/theme-actions.php Description: Filters the responsive columns. Default Value: $result, $cols

alpha_filter_trim_description

File: u-design/framework/theme-actions.php Description: Filters the trim description. Default Value: $content

alpha_core_filter_doing_ajax

File: u-design/framework/theme-actions.php Description: Filters the ajax doing. Default Value: false

alpha_get_page_layout

File: u-design/framework/theme-actions.php Description: Filters the current page layout. Default Value: None

alpha_is_shop

File: u-design/framework/theme-actions.php Description: Filters whether current page is shop page or not. Default Value: bool

alpha_is_product

File: u-design/framework/theme-actions.php Description: Filters whether current page is product page or not. Default Value: bool

alpha_get_search_form

File: u-design/framework/theme-actions.php Description: Filters the search form. Default Value: ob_get_clean()

alpha_theme_option_default_values

File: u-design/framework/theme-options.php Description: Filters the default values of theme options. Default Value: $alpha_option

alpha_admin_config

File: u-design/framework/admin/admin/class-alpha-admin.php Description: Filters the admin config. Default Value: $admin_config

alpha_customize_panels

File: u-design/framework/admin/customizer/class-alpha-customizer.php Description: Filters the customize panels. Default Value: $panels

alpha_customize_sections

File: u-design/framework/admin/customizer/class-alpha-customizer.php Description: Filters the customize sections. Default Value: $sections

alpha_customize_fields

File: u-design/framework/admin/customizer/class-alpha-customizer.php Description: Filters the customize fields. Default Value: $fields

alpha_dynamic_vars

File: u-design/framework/admin/customizer/dynamic/dynamic_vars.php Description: Filters the dynamic vars. Default Value: $dynamic_vars

alpha_dynamic_style

File: u-design/framework/admin/customizer/dynamic/dynamic_vars.php Description: Filters the dynamic style. Default Value: $dynamic_style

alpha_layout_builder_get_title_of_all_archive

File: u-design/framework/admin/layout-builder/class-alpha-layout-builder-admin.php Description: Filters the title of layout builder in all archive page. Default Value: $schemes['all']['title'], $post_type

alpha_layout_builder_get_title_of_all_single

File: u-design/framework/admin/layout-builder/class-alpha-layout-builder-admin.php Description: Filters the title of layout builder in all single page. Default Value: $schemes['all']['title'], $post_type

alpha_layout_builder_schemes

File: u-design/framework/admin/layout-builder/class-alpha-layout-builder-admin.php Description: Filters the layout builder schemes. Default Value: $schemes

alpha_layout_builder_parts

File: u-design/framework/admin/layout-builder/class-alpha-layout-builder.php Description: Filters the layout parts for layout builder menu. Default Value: $layout_parts

alpha_get_options_map

File: u-design/framework/admin/layout-builder/class-alpha-layout-builder.php Description: Filters the layout theme option map. Default Value: $res, $options_map, $layout_name

alpha_apply_only_site_layout

File: u-design/framework/admin/layout-builder/class-alpha-layout-builder.php Description: Filters only applied in site layout. Default Value: bool (is vendor or not), false

alpha_get_layout

File: u-design/framework/admin/layout-builder/class-alpha-layout-builder.php Description: Filters the layout. Default Value: $layout, $layout_name

alpha_blog_ptb_title

File: u-design/framework/admin/layout-builder/class-alpha-layout-builder.php Description: Filters the title of blog page title bar. Default Value: $title

alpha_404_ptb_title

File: u-design/framework/admin/layout-builder/class-alpha-layout-builder.php Description: Filters the title of 404 page title bar. Default Value: string 'Error 404'

alpha_include_plugins

File: u-design/framework/admin/optimize-wizard/class-alpha-optimize-stylesheets.php Description: Filters the included plugins. Default Value: $including_plugins

alpha_exclude_style

File: u-design/framework/admin/optimize-wizard/class-alpha-optimize-stylesheets.php Description: Filters the excluded style. Default Value: $exclude_style

alpha_exclude_javascript

File: u-design/framework/admin/optimize-wizard/class-alpha-optimize-stylesheets.php Description: Filters the excluded js. Default Value: $exclude_javascript

alpha_get_used_shortcodes

File: u-design/framework/admin/optimize-wizard/class-alpha-optimize-wizard.php Description: Filters the used shortcodes. Default Value: $used

alpha_optimize_wizard_steps

File: u-design/framework/admin/optimize-wizard/class-alpha-optimize-wizard.php Description: Filters the steps of optimize wizard. Default Value: $steps

alpha_setup_wizard_steps

File: u-design/framework/admin/setup-wizard/class-alpha-setup-wizard.php Description: Filters the steps of setup wizard. Default Value: $steps

alpha_reset_menus

File: u-design/framework/admin/setup-wizard/class-alpha-setup-wizard.php Description: Filters the menus for importing progress. Default Value: $menus

alpha_admin_get_tools

File: u-design/framework/admin/tools/class-alpha-tools.php Description: Filters available tools. Default Value:

alpha_products_count_select

File: u-design/framework/plugins/woocommerce/product-archive.php Description: Filters the count of showing products. Default Value: array() includes counts

alpha_get_category_classes

File: u-design/framework/plugins/woocommerce/product-category.php Description: Filters the category classes. Default Value: $category_class, $category_type

alpha_product_hover_image_html

File: u-design/framework/plugins/woocommerce/product-loop.php Description: Filters the html of product hover image. Default Value: $attachment_image

alpha_product_loop_vertical_action

File: u-design/framework/plugins/woocommerce/product-loop.php Description: Filters the vertical actions of product. Default Value: array()

alpha_product_loop_action

File: u-design/framework/plugins/woocommerce/product-loop.php Description: Filters the action of product. Default Value: array()

alpha_woocompare_added_label

File: u-design/framework/plugins/woocommerce/product-loop.php Description: Filters the added label of woocompare. Default Value: String 'Added'

alpha_woocompare_add_label

File: u-design/framework/plugins/woocommerce/product-loop.php Description: Filters the add label of woocompare. Default Value: String 'Compare'

alpha_doing_quickview

File: u-design/framework/plugins/woocommerce/product-single.php Description: Filters if the quickview is ajax popup. Default Value: bool

alpha_single_product_extend_class

File: u-design/framework/plugins/woocommerce/product-single.php Description: Filters the extended class in single product. Default Value: $classes, $single_product_layout

alpha_single_product_layout

File: u-design/framework/plugins/woocommerce/product-single.php Description: Filters the single product layout. Default Value: $layout

alpha_wc_thumbnail_image_size

File: u-design/framework/plugins/woocommerce/product-single.php Description: Filters the image size of woocommerce thumbnail. Default Value: string 'woocommerce_thumbnail'

alpha_wc_get_gallery_image_html

File: u-design/framework/plugins/woocommerce/product-single.php Description: Filters the html of gallery image. Default Value: $image

alpha_single_product_gallery_slider_attrs

File: u-design/framework/plugins/woocommerce/product-single.php Description: Filters the slider attrs of single product gallery. Default Value: $options

alpha_single_product_thumbs_slider_classes

File: u-design/framework/plugins/woocommerce/product-single.php Description: Filters the slider classes of single product thumbs. Default Value: $classes

alpha_single_product_thumbs_slider_attrs

File: u-design/framework/plugins/woocommerce/product-single.php Description: Filters the slider attrs of single product thumbs. Default Value: $options

alpha_single_product_nav_prev_icon, alpha_single_product_nav_next_icon

File: u-design/framework/plugins/woocommerce/product-single.php Description: Filters the nav prev(next) icon in single product. Default Value: string $icon

alpha_single_product_navigation

File: u-design/framework/plugins/woocommerce/product-single.php Description: Filters the navigation of single product. Default Value: $html

alpha_filter_single_prev_next_product

File: u-design/framework/plugins/woocommerce/product-single.php Description: Filters the product which placed in prev or next. Default Value: $args

alpha_single_product_sticky_cart_enabled

File: u-design/framework/plugins/woocommerce/product-single.php Description: Filters if single product sticy cart is enabled. Default Value: bool

alpha_special_gallery_types

File: u-design/framework/plugins/woocommerce/product-single.php Description: Filters the types of gallery. Default Value: array() includes special gallery types

alpha_single_product_gallery_classes

File: u-design/framework/plugins/woocommerce/product-single.php Description: Filters the classes of single product gallery. Default Value: $classes, $single_product_layout

alpha_single_product_divider

File: u-design/framework/plugins/woocommerce/product-single.php Description: Filters the single product divider. Default Value: $html

alpha_cross_sell_columns

File: u-design/framework/plugins/woocommerce/woo-functions.php Description: Filters the count of columns of cross sell products. Default Value: int $count

alpha_cross_sell_products_count

File: u-design/framework/plugins/woocommerce/woo-functions.php Description: Filters the total number of products of cross sell. Default Value: int $count

alpha_wc_subcategory_thumbnail_html

File: u-design/framework/plugins/woocommerce/product-category/product-category-default.php Description: Filters the html of subcategory thumbnail. Default Value: $html

alpha_single_product_gallery_class, alpha_single_product_gallery_attr

File: u-design/framework/plugins/woocommerce/product-single/product-single-gallery.php
u-design/framework/plugins/woocommerce/product-single/product-single-horizontal.php
u-design/framework/plugins/woocommerce/product-single/product-single-vertical.php Description: Filters the class(attr) of single product gallery. Default Value: string $class

alpha_single_product_thumbs_wrap_class

File: u-design/framework/plugins/woocommerce/product-single/product-single-horizontal.php
u-design/framework/plugins/woocommerce/product-single/product-single-sticky-thumbs.php
u-design/framework/plugins/woocommerce/product-single/product-single-vertical.php Description: Filters the class of single product thumbs wrapper. Default Value: string $class

alpha_single_product_thumbs_class, alpha_single_product_thumbs_attr

File: u-design/framework/plugins/woocommerce/product-single/product-single-horizontal.php
u-design/framework/plugins/woocommerce/product-single/product-single-vertical.php Description: Filters the class of single product thumbs. Default Value: string $class

alpha_vendor_store_sidebar_has_content

File: u-design/framework/templates/sidebar.php Description: Filters if sidebar stored in vendor has content. Default Value:

alpha_sidebar_classes

File: u-design/framework/templates/sidebar.php Description: Filters the classes of sidebar. Default Value: $sidebar_class

alpha_run_archive_builder

File: u-design/framework/templates/posts/archive.php Description: Filters if the archive builder is running. Default Value: false

alpha_related_slider_options

File: u-design/framework/templates/posts/post-loop-start.php Description: Filters the option of related slider. Default Value: array(), $prop1 get related loop prop, $prop2 get column count loop prop

alpha_post_loop_wrapper_classes

File: u-design/framework/templates/posts/post-loop-start.php Description: Filters the classes of post loop wrapper. Default Value: $wrapper_class

alpha_post_wrap_class, alpha_post_wrap_attrs

File: u-design/framework/templates/posts/post.php Description: Filters the class(attrs) of post wrapper. Default Value: $wrap_class(attrs)

alpha_run_single_builder

File: u-design/framework/templates/posts/single.php Description: Filters if the single builder is running. Default Value: false

alpha_post_single_class

File: u-design/framework/templates/posts/single.php Description: Filters the class of prev wrapper. Default Value: $class

alpha_post_single_classes

File: u-design/framework/templates/posts/single.php Description: Filters the classes of single post. Default Value: $classes

alpha_filter_author_date_pattern

File: u-design/framework/templates/posts/single/post-author.php Description: Filters the date pattern of author. Default Value: $html

alpha_filter_related_posts_args

File: u-design/framework/templates/posts/single/post-related.php Description: Filters the arguments of related posts. Default Value: $args

alpha_run_shop_builder

File: u-design/framework/templates/woocommerce/archive-product.php Description: Filters if the shop builder is running. Default Value: false

alpha_product_wrap_class

File: u-design/framework/templates/woocommerce/content-product.php Description: Filters the class of product wrapper. Default Value: $wrap_class

alpha_product_class

File: u-design/framework/templates/woocommerce/content-product.php Description: Filters the class of product. Default Value: $product_classes, $product_type

alpha_is_single_product_li_tag

File: u-design/framework/templates/woocommerce/content-single-product.php Description: Filters whether current tag is single product li tag or not. Default Value: false

alpha_single_product_classes

File: u-design/framework/templates/woocommerce/content-single-product.php Description: Filters the classes of single product. Default Value: $classes

alpha_run_single_product_builder

File: Filters if single product builder is running. Description: u-design/framework/templates/woocommerce/content-single-product.php Default Value: false

alpha_single_product_summary_class

File: u-design/framework/templates/woocommerce/content-single-product.php Description: Filters the class of single product summary. Default Value: $classes

alpha_get_widget_products_show_info

File: u-design/framework/templates/woocommerce/content-widget-product.php Description: Filters the info that widget products allowed. Default Value: array() includes show info

alpha_run_checkout_builder

File: u-design/framework/templates/woocommerce/checkout/form-checkout.php Description: Filters if checkout builder is running. Default Value: false

alpha_get_shop_products_show_info

File: u-design/framework/templates/woocommerce/loop/loop-start.php Description: Filters the show info for alpha shop Default Value: $show_info

alpha_get_widget_products_show_info

File: u-design/framework/templates/woocommerce/loop/loop-start.php Description: Filters the show info of widget products. Default Value: $show_info

alpha_product_loop_wrapper_classes

File: u-design/framework/templates/woocommerce/loop/loop-start.php Description: Filters the classes of product loop wrapper. Default Value: $classes

alpha_shop_filter_clean_show

File: u-design/framework/templates/woocommerce/loop/orderby.php Description: Filters the clean all in shop page. Default Value: false

alpha_single_product_rating_show_number

File: u-design/framework/templates/woocommerce/loop/rating.php Description: Filters the rating number of single product. Default Value: false

alpha_single_product_show_review

File: u-design/framework/templates/woocommerce/loop/rating.php Description: Filters the review of single product. Default Value: bool

alpha_product_label_group_class

File: u-design/framework/templates/woocommerce/loop/sale-flash.php Description: Filters the class of product label group. Default Value: None

alpha_account_dashboard_items

File: u-design/framework/templates/woocommerce/myaccount/dashboard.php Description: Filters the items of account dashboard. Default Value: $account_arr

alpha_wc_notice_class

File: Filters the class of woocommerce notice. Description: u-design/framework/templates/woocommerce/notices/error.php
u-design/framework/templates/woocommerce/notices/notice.php
u-design/framework/templates/woocommerce/notices/success.php Default Value: $class, $notice, $type

alpha_single_product_gallery_buttons

File: u-design/framework/templates/woocommerce/single-product/product-image.php Description: Filters the buttons of single product gallery. Default Value: None

alpha_single_product_gallery_main_classes

File: u-design/framework/templates/woocommerce/single-product/product-image.php Description: Filters the classes of single product gallery. Default Value: $classes

alpha_single_product_title_tag

File: u-design/framework/templates/woocommerce/single-product/title.php Description: Filters the title tag of single product. Default Value: $tag

alpha_product_tab_title

File: u-design/framework/templates/woocommerce/single-product/tabs/custom-tab.php Description: Filters the tab title of product. Default Value: $tab_title, $tab_name

alpha_single_product_data_tab_class

File: u-design/framework/templates/woocommerce/single-product/tabs/tabs.php Description: Filters the class of single product data tab. Default Value: $wrapper_class



By browsing this website, you agree to our privacy policy.
I Agree