• Resolved razihaider694

    (@razihaider694)


    My theme includes a Variation Image Gallery feature that supports multiple images for each variation. However, in the Product Feed Pro plugin, these images from the Variation Gallery aren’t being included; only the standard Gallery Images are appearing.

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Support Tanjir Al Mamun

    (@tanjiralmamun)

    Hello @razihaider694,

    Additional Variation Image Gallery support is currently unavailable at this moment. However, we have noted your request for further enhancement of the plugin.

    Thanks!

    Thread Starter razihaider694

    (@razihaider694)

    I am using Xstore theme which most widely used theme and in best selling in the Theme forest.

    I connected with theme support team and they reverted with the below responce

    “For information to your plugin’s developers (you may ask them for help):
    1/ Our theme field name iset_variation_gallery_images(to get variation gallery for any product variation we used next line of php code ->get_post_meta( $product->get_id(), 'et_variation_gallery_images', true );

    We suggest you to try next snippet to be added in your child-theme/functions.php

    add_filter('woo_feed_custom_fields', 'add_etheme_variation_gallery_image_to_feed', 10, 3);
    function add_etheme_variation_gallery_image_to_feed($fields, $product, $variation) {
    	$image_gallery = get_post_meta($variation->get_id(),'et_variation_gallery_images', true);
    	if ( (bool)$image_gallery ) {
    		$fields['variation_image_gallery'] = $image_gallery;
    	}
    	return $fields;
    }

    But this code is not working probably your devloper could take help from this response.

    Thread Starter razihaider694

    (@razihaider694)

    I have not recieved any update yet, Could you please tell me the update regarding it?

    Plugin Support Tanjir Al Mamun

    (@tanjiralmamun)

    Hi @razihaider694,

    As mentioned earlier, the Additional Image Variation gallery feature is unfortunately unavailable at this moment. Also, no custom solution is available to achieve this requirement. However, we noted your requirement as a request for further enhancement of the plugin, but we are unable to provide any workaround at this moment.

    Thanks for understanding.

Viewing 4 replies - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.