Repeat Field Problem
Author | Posts |
---|---|
April 19, 2013 at 2:08 pm 2554 | |
Hi
I am trying to create a form for use with a custom post type 'recipe' which is created by recipepress reloaded plugin. All seems OK except that there is a repeat section which I'm not sure how to do. Attached is a screen of admin section I am trying to recreate.
Could you help please. ![]() | |
April 19, 2013 at 10:26 pm 2578 | |
Can you share how the meta values is stored? I don’t know how it stores the data. | |
April 22, 2013 at 7:36 am 2661 | |
Hi I’m not sure shall I send you admin login? | |
April 22, 2013 at 8:20 am 2662 | |
Post the details as a private reply. | |
April 22, 2013 at 8:23 am 2663 | |
This reply has been marked as private. | |
April 22, 2013 at 11:46 am 2683 | |
Saw the options, the repeatable fields saves the data in a meta key `_recipe_ingredient_value`. In every meta, 5 values are stored. | |
April 22, 2013 at 12:07 pm 2689 | |
Tareq Thanks, could you give me an example please. Marc | |
April 22, 2013 at 12:41 pm 2697 | |
It’s an example how you should deal with it – if ( $items ) { update_post_meta( $post_id, ‘_recipe_ingredient_value’, $ingredients ); add_action( ‘wpuf_add_post_after_insert’, ‘wpufe_insert_recipe’ ); I’ve added a custom field called recipe as a multicolumn repeater and added two columns The ingredients field in that plugin is a custom taxonomy, and the link to page is a page dropdown, so you need to deal with that somehow. But you get the idea. | |
April 22, 2013 at 12:57 pm 2701 | |
Sorry to be dense where did you add that code I’m not seeing it?
| |
April 22, 2013 at 6:16 pm 2722 | |
I haven’t add that code, you’ve to add that code. Probably in your themes functions.php. | |
April 23, 2013 at 8:50 am 2762 | |
This reply has been marked as private. | |
April 23, 2013 at 9:25 am 2764 | |
Sorry, I am pretty busy right now. Won’t have time to do that. | |
April 23, 2013 at 9:43 am 2766 | |
Ok I understand, thank you anyway. I have one further problem. With the plugin enabled, it breaks the contact us page. I assume its a jQuery issue, could you tell me how to fix please. | |
April 23, 2013 at 10:04 am 2768 | |
Yes, it’s jQuery issue. May be those jQuery plugins is not included to that page. | |
April 23, 2013 at 10:32 am 2769 | |
The page works fine when your plugin is deactivated. Your plugin appears to be causing a conflict. | |
April 23, 2013 at 8:46 pm 2795 | |
Seems like there is a fatal error in that page. Does the contact page includes reCaptcha? Might be a possibility of conflict. |