Forum Replies Created

Viewing 8 Topics - 1 through 8 (of 8 total)
Author Posts
July 31, 2013 at 9:40 pm in reply to: Repeater order change updating post 6541
DeanT765 DeanT765

Having this same problem. I suspect it’s due to the way meta tags are stored in the SQL? Is it possible to add a hidden attribute that stores the order?

July 27, 2013 at 6:03 am in reply to: Front-end Editing 6375
DeanT765 DeanT765

Yup that did the trick once I changed the line of code to $postarr['post_status'] = get_post_status($postarr['ID']);

Thanks again

July 27, 2013 at 2:11 am in reply to: Front-end Editing 6362
DeanT765 DeanT765

There would be a conflict, but for this particular installation of mine that would be fine. I tried to find where the post status is set in frontend-form-post.php but I didn’t have any luck even when I thought I found it.

I tried changing line 237 to

$postarr['post_status'] = get_post_status($post_id);

but that didn’t do the trick. Is there an alternate line I’m missing?

July 22, 2013 at 11:10 pm in reply to: Repeat field out of order 6202
DeanT765 DeanT765

Found a quick fix…in frontend_form_post.php in the function update_post_meta I just copied and pasted this code again

foreach ($multi_repeated as $repeat_key => $repeat_value) {
            // first, delete any previous repeatable fields
            delete_post_meta( $post_id, $repeat_key );

            // now add them
            foreach ($repeat_value as $repeat_field) {
                add_post_meta( $post_id, $repeat_key, $repeat_field );
            }

And that solved the problem…if only by way of reversing twice for each time the post is saved so it’s always in the right order. I didn’t want to deal with reordering keys or anything so that is fine with me.

July 22, 2013 at 8:53 pm in reply to: Repeat field out of order 6200
DeanT765 DeanT765

Actually it appears to just reverse with each edit of a form…they’re stored from the the top down and populate the edit fields from the bottom up? And then stored that way, then reversed on editing.

I think I can track this one down on my own actually I’ll update if I do.

July 13, 2013 at 12:12 am in reply to: Recurring Payments & Additional Gateways (Authorize.net) 5918
DeanT765 DeanT765

I’d like to second the support for an Authorize.net extension. I’ll be upgrading to a developer account as soon as that is release most definitely.

June 27, 2013 at 1:04 am in reply to: Strange behavior when adding checkbox to form 5305
DeanT765 DeanT765

Awesome that does the trick! Appreciate the help.

June 27, 2013 at 12:23 am in reply to: Strange behavior when adding checkbox to form 5303
DeanT765 DeanT765 This reply has been marked as private.
Viewing 8 Topics - 1 through 8 (of 8 total)