Can't create albums

This topic contains 19 reply and 2 voices, and was last updated by towhid 8 years, 11 months ago
Viewing 15 Posts - 1 through 15 (of 19 total)
Author Posts
May 2, 2015 at 2:46 am 42898
towhid Hello, I've tried to let users upload more then one photo to create a gallery in a post... I've followed this guide: http://docs.wedevs.com/woocommerce-product-image-gallery/ My setup looks like this: My setup But only one image are being saved, I tried doing the same on a local install and it worked without even adding the code to mye function file...
May 2, 2015 at 6:00 pm 42930
towhid towhid

Hello Alexander,

Did you able to get those 5 images from backend?

But whatever, I have checked and found the issue. I have already forward this issue to our developer team. Hope they will fix this issue very soon.

Thank you 🙂

May 2, 2015 at 6:01 pm 42931
Alexander Alexander

Hello,

No I can only see one image in the backend.
Thank you very much, how long is it until it’s fixed?

May 2, 2015 at 6:08 pm 42932
towhid towhid

Hello Alexander,

May be day after tomorrow. All of our developer are in weekend now. They will be available from Monday.

Thank you 🙂

May 6, 2015 at 2:18 am 43156
Alexander Alexander

So is this fixed now?

May 9, 2015 at 6:01 am 43416
Alexander Alexander

Hello?

I paid for this plugin and I was promised the bug was gonna get a fix.

May 9, 2015 at 10:39 am 43430
towhid towhid

Hello Alexander,

Sorry for my late reply.
Please provide your login details by using this form: http://wedevs.com/provide-login-details/. I will have a look what is going wrong.

Thank you 🙂

May 10, 2015 at 4:40 pm 43521
towhid towhid

Hello Alexander,

I have got your site details and able to login successfully. Also I have noticed the issue. Please allow me some time. Hope I will come back with a right solution.

Thank you 🙂

May 10, 2015 at 4:43 pm 43522
Alexander Alexander

Thank you 🙂

Can I work on the site while you fix the issue? 🙂

May 10, 2015 at 4:47 pm 43525
towhid towhid

Hello Alexander,

Off course, you can work on the site. Can you please install a plugin for me “Post Meta Inspector”.

Thank you 🙂

May 10, 2015 at 5:00 pm 43527
Alexander Alexander

Thanks!
I’ve installed it now 🙂

May 10, 2015 at 5:04 pm 43528
towhid towhid

Ok. I have seen you have installed the plugin. Please allow me some time. I will come back to you very soon. In the mean time you can work on your site.

Thank you 🙂

May 13, 2015 at 10:47 am 43825
towhid towhid

Hello Alexander,

I am still working to your site. Everything is working perfectly for me. Can you please send me your website database to me.

Thank you 🙂

May 13, 2015 at 11:26 am 43833
Alexander Alexander

Is there a way I can send it in private?
Edit: I’m uploading it to the media section of the admin area of my site 🙂
Here: http://simtopian.com/wp-admin/post.php?post=3012&action=edit

May 13, 2015 at 3:36 pm 43867
towhid towhid

Hello Alexander,

I am working on your site. Please allow me some time. Hope I will be come back to you with a right solution.

Thank you 🙂

May 16, 2015 at 1:24 pm 44144
towhid towhid

Hello Alexander,

I have checked thoroughly “klein” theme and come out a solution finally.

The theme you are using is creating conflict somehow. Try the following code in WordPress default theme – Twenty Thirteen, Twenty Fourteen, Twenty Fifteen.

function wpuf_woo_product_gallery( $post_id ) {
    if ( isset( $_POST['wpuf_files']['_product_image'] ) ) {

        $images = get_post_meta($post_id, '_product_image' );
        update_post_meta( $post_id, '_product_image_gallery', implode(',', $images) );
    }
}

add_action( 'wpuf_add_post_after_insert', 'wpuf_woo_product_gallery' );
add_action( 'wpuf_edit_post_after_update', 'wpuf_woo_product_gallery' );

Thank you 🙂

Viewing 15 Posts - 1 through 15 (of 19 total)