Forum Replies Created

Viewing 15 Topics - 1 through 15 (of 114 total)
Author Posts
paperweight paperweight

@kcssm: I suggest you use the PMPro plugin and connect it with WPUF Pro, and then you can easily do discounts and a lot more e-commerce related things.

November 29, 2013 at 8:06 am in reply to: Select File and Select Image buttons not working 13018
paperweight paperweight

Support is generally very good. But I suggest you start a new thread since your issues may be confused with mine and others previous on this thread. If you start a new thread it’s easier for them to track and respond. I run a forum and support system for my clients too and I know this makes things easier if they start a fresh thread…

November 21, 2013 at 7:52 pm in reply to: Notification that Admin or User is editing Post at same time? 12636
paperweight paperweight

Cheers~ 🙂

November 21, 2013 at 9:07 am in reply to: Notification that Admin or User is editing Post at same time? 12622
paperweight paperweight

Thanks for your help. I just tested: a user is first editing their post. At the same time, the admin then tries to edit the post from the backend. The admin can freely edit it and the admin does not see that the user is also editing at the same time.

The latest version of WordPress locks the Post if two people try edit at same time. Is it possible to use that feature in WPUF?

November 20, 2013 at 11:31 pm in reply to: Disable post editing when post is in "publish/live" status? 12598
paperweight paperweight

Thanks Tareq. I don’t intend to pose difficult problems. 🙂 We are trying to configure it around our needs. I think we figured this out now. Great plugin and great support~

November 19, 2013 at 11:11 pm in reply to: Disable post editing when post is in "publish/live" status? 10270
paperweight paperweight

Right, however I have a problem with post_status=draft and post_status=pending. They both appear to do the same thing in this WPUF Pro plugin?

For example, when a user makes a Post but wants to save a draft, what post_status is that saved?

Then when that user submits the Post to the Admin but we want to save it in Draft format before it is published by Admin, what post_status is that?

I am trying to show text if the user saved a draft, but then I wan tto show other text when the user submits the Post but the Post is not yet published. So that is my problem, and it seems like pending and draft do the same thing here but they should not. Am I correct or am I looking at this problem incorrectly? 😉

November 16, 2013 at 12:12 am in reply to: Premium Add-ons for WPUF released 10132
paperweight paperweight

Hi, no problem, I’m happy to help as much as I can. I really like WPUF and I like PMPro, so the more people who use both will make both developers make better services 🙂

Actually, the free version of PMPro is identical to the paid version. The only difference is if you pay you can then receive support. So, you can do everything you want to do without paying, but to get good tools and tips and tutorials on how to integrate everything you need to pay PMPro.

1) You said you want to add “bank payment and the paypal or card payment”. PMPro can handle multiple payment processors so you can do that, yes. This thread for example tells how to accept cash or bank transfers as a payment option (but it is only available to paid members): http://www.paidmembershipspro.com/forums/topic/how-to-process-cash-payments/

There are also other tips on how to add more payment processors. The developers are very eager to answer questions and assist you.

2) You said you want to “add a package by post category or custom post type”. I am unsure if that is possible. It seems like it should be fine, but you should ask the PMPro before you purchase if it is possible.

paperweight paperweight

Yes, I tested it twice with 2 different users and it seems to work perfectly!! 🙂

Many many many thanks Tareq for getting a fix out so quickly~

paperweight paperweight

Wait… sorry… it does seem to work — my colleague was reloading an incorrect admin page. Yes… seems to work 🙂 I will do some more testuing and let you know of any other issues!

paperweight paperweight

Hi, thanks for your help on uploading that new subscription.php. Unfortunately it doesn’t seem to fix the problem — a user who makes a new Post has the Post published immediately rather than have it in Draft status. 🙁

paperweight paperweight

Great thank you. Will test this within an hour.

November 15, 2013 at 9:49 pm in reply to: Premium Add-ons for WPUF released 10118
paperweight paperweight

PMPro does have the option to add multiple payment processors. Are you using the paid version of PMPro or the free version? If you use the paid version, they offer lots of ways to add more methods on their forums. They will also add Bitcoin next month 🙂

paperweight paperweight

Hi, any update on this? Should the code Tareq gave me fixed this specific issue? If so, did I just implement it incorrectly? Any thoughts on how to fix this?

November 13, 2013 at 3:53 am in reply to: Good Idea 10013
paperweight paperweight

yes, excellent idea!

paperweight paperweight

Hi Tareq: ok I implemented the change but it still published immediately.

I changed this:

    function handle_post_publish( $order_id ) {
        $post = self::post_by_orderid( $order_id );

        if ( $post && $post->post_status != 'publish' ) {
            $update_post = array(
                'ID' => $post->ID,
                'post_status' => 'publish'
            );

            wp_update_post( $update_post );
        }
    }

To this:

function handle_post_publish( $order_id ) {
    $post = self::post_by_orderid( $order_id );
 
    if ( $post && $post->post_status != 'publish' ) {
        $post_status = 'publish';
        $form_id = get_post_meta( $post->ID, '_wpuf_form_id', true );
         
        if ( $form_id ) {
            $form_settings = get_post_meta( $form_id, 'wpuf_form_settings', true );
            $post_status = $form_settings['post_status'];
        }
         
        $update_post = array(
            'ID' => $post->ID,
            'post_status' => $post_status
        );
 
        wp_update_post( $update_post );
    }
}

Any other thoughts on how to fix this problem? Thanks for your help~

Viewing 15 Topics - 1 through 15 (of 114 total)