PATH:
home
/
thebhoeo
/
public_html
/
wp-content
/
themes
/
woodmart
/
inc
/
integrations
/
elementor
/
default-elements
<?php /** * Elementor column custom controls * * @package woodmart */ if ( ! defined( 'ABSPATH' ) ) { exit; // Direct access not allowed. } if ( ! function_exists( 'woodmart_menu_anchor_before_render' ) ) { /** * Column before render. * * @since 1.0.0 * * @param object $widget Element. */ function woodmart_menu_anchor_before_render( $widget ) { if ( 'menu-anchor' === $widget->get_name() ) { woodmart_enqueue_js_script( 'menu-anchor' ); } } add_action( 'elementor/frontend/before_render', 'woodmart_menu_anchor_before_render', 10 ); }
[-] container.php
[edit]
[-] menu-anchor.php
[edit]
[-] video.php
[edit]
[-] text-editor.php
[edit]
[-] accordion.php
[edit]
[-] section.php
[edit]
[-] common.php
[edit]
[+]
..
[-] column.php
[edit]