• Resolved lukilker

    (@lukilker)


    Hello
    i want to ask, where i can add label for the feature product image and gallery?
    There is no text…
    https://merymy.sk/wp-content/uploads/2019/10/missing-title.png

    And second question, in the membership settings i dont see “pay for product” section as you show it on the video here:

    And i tryed to post this question on your forum, but it is written “ERROR: Your topic cannot be created at this time.” after submit.

    Thanks

Viewing 1 replies (of 1 total)
  • Plugin Author WC Lovers

    (@wclovers)

    Hi,

    Please add this code to your site to add label for image section –

    add_filter( 'wcfm_product_manage_fields_images', function( $image_fields ) {
    	if( isset( $image_fields['featured_img'] ) ) {
    		$image_fields['featured_img']['label'] = 'Featured Image';
    		$image_fields['featured_img']['label_class'] = 'wcfm_title wcfm_full_ele catalog_visibility_ele';
    	}
    	if( isset( $image_fields['gallery_img'] ) ) {
    		$image_fields['gallery_img']['label'] = 'Gallery Image';
    		$image_fields['gallery_img']['label_class'] = 'wcfm_title wcfm_full_ele catalog_visibility_ele';
    	}
    	return $image_fields;
    }, 650 );

    Add this code to your child theme’s functions.php
    In case you do not have child theme then add code using this plugin –?https://www.ads-software.com/plugins/code-snippets/

    Pay for Product – please be sure this module is ON at WCFM Admin Setting -> Modules

    Thank You

Viewing 1 replies (of 1 total)
  • The topic ‘missing title/description on images’ is closed to new replies.