如何将响应组控件添加到elementor

时间:2019-01-24 02:56:34

标签: elementor

我可以将响应式控件添加到elementor中,以进行普通/单个控件。但是,我想知道是否有可能将响应组控件添加到elementor。我尝试通过以下方式添加组控制,但均失败。

例如,我想使框阴影组控件具有响应性,以便可以在桌面屏幕上添加阴影并在移动视图上将其删除。

 // first try failed
 $this->add_responsive_control(
        'button_box_shadow',
        [
            'type' => Group_Control_Box_Shadow::get_type(),
            'selector' => '{{WRAPPER}} .txc-elementor-button',
        ]
    );

//second try failed
$this->add_responsive_control(
        Group_Control_Box_Shadow::get_type(),
        [
            'name' => 'button_box_shadow',
            'selector' => '{{WRAPPER}} .txc-elementor-button',
        ]
    );

谢谢

0 个答案:

没有答案