Visual Composer不会保存自定义元素的图像

时间:2018-01-29 14:27:23

标签: wordpress shortcode visual-composer

我想在Visual composer中创建自定义元素,它将在vc_single_image中添加2个图像 例如:

<div class="vc_single_image-wrapper vc_box_border_grey">
    <img src="img/macbook.png" class="vc_single_image-img attachment-full">
    <img src="img/tmp/mac-ins.png" class="vc_single_image-img attachment-full template-mac--ins">
</div>

在我的functions.php中,我做了以下事情:

function vc_before_init_actions() {
if( function_exists('vc_set_shortcodes_templates_dir') ){
    vc_set_shortcodes_templates_dir( get_template_directory() . '/vc-elements' );
    }
}

add_action( 'vc_after_init', 'vc_after_init_actions' );

function vc_after_init_actions() {
    $vc_single_image_new_params = array(

    array(
        'type' => 'attach_image',
        'heading' => __( 'Second Image', 'js_composer' ),
        'param_name' => 'secondImage',
        'value' => '',
        'description' => __( 'If you need use 2 image inside one "single image"', 'js_composer' ),
        'dependency' => array(
            'element' => 'source',
            'value' => 'media_library',
        ),
        'admin_label' => true,
        'group' => 'Addititonal',
    ),

);

    vc_add_params( 'vc_single_image', $vc_single_image_new_params );
}

我已经将文件格式js_composer / include / shortcodesvc_single_images复制到MyTheme / vc-elements /之后我改变了这个文件的html结构(添加新的varible&#34; secondImage&#34;)。

问题:当我在VP中创建此元素并添加新图像(来自原始面板的1和我的自定义中的其他)时,我尝试更新页面,嗯,更新后没有保存。

出了什么问题?

1 个答案:

答案 0 :(得分:0)

好吧,如果您遇到同样的问题,必须知道字段的名称绝不能大写字母。所以,'param_name' => 'second_image''param_name' => 'secondimage'