A few issues and a few questions…

This topic contains 8 reply and 3 voices, and was last updated by Kevin 9 years, 8 months ago
Viewing 8 Posts - 1 through 8 (of 8 total)
Author Posts
June 29, 2014 at 6:55 am 22562
Kevin First, sorry for the long list, but I thought it better to put it all in one message. I'm using Dokan theme and WPUFEPRO to create the product submission form for a digital product (as the built in one is not very user friendly for the average user). I followed the tutorial on how to create a downloadable product using WPUFEPRO.. but it seems to be missing some information/instructions (or I am doing something wrong). It doesn't show how to add the Name field of the file, the download expiry, download limit, etc. (a screenshot would be helpful). Because this form is for digital products I would like to have the product type field default to simple and hidden. Is this possible? Also, is there a way to set them as a "virtual product" so that it doesn't take into account shipping/stock? Or is there another way to remove the address from checkout? When I try to edit the submitted product from the Dokan product edit screen it gives the following error message... "I don't know how to edit this post, I don't have the form ID". When I go to the WPUFEPRO Dashboard to edit it doesn't show any way of editing it... if I click on the picture it just goes to the product. (See screenshot) For WPUFEPRO I would like to assign the ability to submit a guest post on a per user basis and only show the link to do it to that user. Is this possible? If not my thought is just create a form where people can request to become a contributing author and then we could send the a link to a WPUFEPRO form that only they have... to submit a post that will be held for moderation. Does that sound right or do you have a better suggestion? One of the products I created through WPUEFRRO showed up 44 times (It seemed to be after I edited it in the back end admin)? (See screenshot) Screenshot of product showing 44 times in Back End A few responsive issues: It looks like WPUFEPRO isn't responsive out of the box (Tested the dashboard and forms so far). I'm sure we can fix this, but it would be nice to have it built responsive from the start. Thank you for your help!
June 29, 2014 at 6:57 am 22563
Kevin Kevin This reply has been marked as private.
June 30, 2014 at 12:49 pm 22601
Sekander Badsha Sekander Badsha

See our tutorials about integrating User Front End Pro with WooCommerce here: http://docs.wedevs.com/category/plugins/wp-user-frontend-pro/tutorials/.

Read them care fully and see what issues remain. Don’t hesitate to come back and post again. We’re always happy to help you. 🙂

June 30, 2014 at 12:55 pm 22602
Kevin Kevin

As I explained I have already read the tutorials and they are missing some
information.

I need responses to my questions urgently.

I’m hoping I made the right choice switching to your solution and that you
back up the support that came with the purchase.

Thank you for taking the time to respond,
Kevin
On Jun 29, 2014 11:49 PM, “weDevs Team” wrote:

July 1, 2014 at 5:09 pm 22660
Sekander Badsha Sekander Badsha

Okay, I’m gonna reply you point by point.

1. Doesn’t Show File Name Field: You can’t use it right now. We didn’t included that into our plugin system right now.

2. Set Product Type Field Default and Hidden,
3. Set Product as Virtual:
add the following lines to your themes function.php

/**
 * Update the downloadable file array with appropriate meta values
 *
 * @param  int $post_id
 * @return void
 */
function wpufe_woo_file_paths( $post_id ) {
    if ( isset( $_POST['wpuf_files']['woo_files'] ) ) {
        $files = $_POST['wpuf_files']['woo_files'];
        $woo_files = array();
 
        foreach ($files as $file_id) {
            $file_url = wp_get_attachment_url( $file_id );
            $woo_files[md5( $file_url )] = array(
                'file' => $file_url,
                'name' => basename( $file_url )
            );
        }
 
        update_post_meta( $post_id, '_downloadable_files', $woo_files );
        update_post_meta( $post_id, '_downloadable', 'yes');
        update_post_meta( $post_id, '_virtual', 'yes');
    }
    wp_set_object_terms( $post_id, 'simple', 'product_type' );
}
 
add_action( 'wpuf_add_post_after_insert', 'wpufe_woo_file_paths' );
add_action( 'wpuf_edit_post_after_update', 'wpufe_woo_file_paths' );

4. Unable to edit product,
5. Dashboard Doesn’t Show Edit Link:
Please do the following if not done already –

  1. Create a page for edit and place short code [wpuf_edit]
  2. Set that page for editing in “User Frontend > Settings > General”
  3. Select both “can edit” and “can delete” in “Frontend > Settings > Dashboard” to yes
  4. create a page for dashboard and place the short code [wpuf_dashboard post_type="product"]

6. One Post Per User: You can force the users to take a subscription pack and you’ll set that to free. But the user have to be logged in (Registered). Guest post availability is coming in our next update.
7. Product Repeated 44 times: This may have been happened because of some other plugin conflict.
8. Not Responsive: I have created an issue for the designer team. Hope that they will think about that in later update.

August 2, 2014 at 12:27 am 24376
Anders Anders

Hi Kevin!

Did you manage to get this to work? I also think that the Dokan upload function is terrible.
If you have any progress, please let me know – since I am struggeling myself integrating it with WPUF Pro

August 4, 2014 at 8:35 am 24468
Kevin Kevin

Hi Anders,

Yes, I was able to get it working quite nicely using WPUFP to upload the digital products. Much more user friendly.

Thanks,
Kevin

August 4, 2014 at 3:59 pm 24499
Anders Anders

How great 😉 But hos did you manage to do the connection to WooCommerce and the Dokan plugin? And how did you connect it with the dashboard and making New products?

Anders 😉

August 8, 2014 at 10:12 am 24780
Kevin Kevin

Hey Anders,

We followed this – http://docs.wedevs.com/woocommerce-with-wp-user-frontend-pro-tutorial-part-1/

As well as made some additional modifications.

Thanks,
Kevin

Viewing 8 Posts - 1 through 8 (of 8 total)