Forum Replies Created

Viewing 10 Topics - 1 through 10 (of 10 total)
Author Posts
March 7, 2014 at 2:55 am in reply to: Issues with taxonomies 16259
DM DM

Sorry, I dont mean to highjack your thread, but this is a workaround which helped me today to solve my taxinomy issue, maybe it will be a solution for you as well.

I deleted my registered taxinomies in functions php and instead added support for standard wordpress categories to my custom post type, by adding the following code to functions php:

function wpa_category_for_cpt(){
    register_taxonomy_for_object_type( 'category', 'YOUR CUSTOM POST TYPE' );
}
add_action( 'init', 'wpa_category_for_cpt', 999 );

Then under my custom post type in wp-admin, the category tab appeared and I added my previous taxinomies as categories.

I then selected category field inside my form, seleted dropdown and added my catgory id’s comma seperated.

I then downloaded and installed this plugin http://wordpress.org/plugins/cat-post-type/

Now finally all my erstwhile “taxinomies” appear on the submission form, in wp-admin edit custom post, as well as on the submitted published custom post on the front end of the website.

The only caveat though, is that this method results in other ordinary wordpress post categories also appearing as options under the custom post type category in wp-admin, but in the form itself, you can specify only the categories you want to be selected in the form, so not such a big issue for me.

March 7, 2014 at 12:51 am in reply to: Change "WPUF Custom Fields" to another title 16257
DM DM

Thank you, much appreciated.

March 6, 2014 at 6:54 pm in reply to: Using WPUF for custom post types with custom fields 16242
DM DM

Okay what a pity, thank you for the reply.

March 6, 2014 at 3:34 am in reply to: Using WPUF for custom post types with custom fields 16225
DM DM

I have the same issue. How to resolve this?

March 1, 2014 at 4:40 am in reply to: Place WPUF Metabox on "Add New Post" 15966
DM DM

Nevermind, the problem has now been resolved and metaboxes with custom fields now appear in the “add new post” editor in wp-admin

February 28, 2014 at 1:46 pm in reply to: Place WPUF Metabox on "Add New Post" 15940
DM DM

Also, how to remove or change the title “WPUF Custom Fields” from the metabox section in user submitted post editor screen in WP-admin?

http://s28.postimg.org/lislaumel/Snap_2014_02_27_at_12_05_24.png

February 28, 2014 at 1:35 pm in reply to: Issues with taxonomies 15937
DM DM

Hi there,
I am currently developing the site offline on my local Xampp server, so not possible to give the url.

My taxinomies are created by ECPT http://pippinsplugins.com/easy-content-types

My taxinomies appear as field options in WPUF form, so I can add them and they appear on the submission form on the front end, but once the user submits the posts and its published, the taxinomy values selected, only appear in the editor view in wp-admin, they do not appear on the actual published post on the front end.

So it seems that WPUF does not support taxinomies created by ECPT. How to add support for ECPT taxinomies to WPUF?

February 28, 2014 at 1:11 pm in reply to: Place WPUF Metabox on "Add New Post" 15933
DM DM

Hi there,

No I already use Easy content Type (http://pippinsplugins.com/easy-content-types/) for custom post type, taxinomy and metabox creation.
However, when I create metaboxes with ECPT, obviously it differs from the metabox appearance of the ones created by WPUF. Also, to display the meta values of custom posts created in wp-admin, I have to use ecpt metakey code in theme files to display the values on the front end.

In WPUF, custom post type is already selected, so that is not the problem. WPUF is already subitting the posts to custom post type.

So I have WPUF creating metaboxes with custom fields on the front end submitted custom posts and have to use the WPUF code to display those particular user submitted posts in the theme files and I have custom posts created in wp-admin and have to use the ECPT code to display those particular custom posts in theme files.

Currently WPUF metaboxes and fields only show up on user submitted posts. I want it to appear on add new custom posts in wp-admin as well because the client will be addding posts from wp-admin and the users will be adding from the front end of the website.

So, to simplify things and to make everything appear uniform in custom post edit screens in wp-admin, I want to generate metaboxes and fields which are identical in appearance, function and code, to the WPUF metaboxes.

So my question is this: What is the code I need to add to functions.php in order to generate WPUF metaboxes and custom fields on my “add new” posts editor sections in wp-admin?

So to put is simply, I have a custom post type. The client will add new posts to this custom post type, from wp-admin and the users will add new posts to this custom post type from the front end of the website. Currently,in wp-admin backend, the custom fields created by WPUF, only appear inside the post editor of user submitted posts. I want the “form” aka blank WPUF custom fields, to appear also inside Wp-admin post editor when I add a new custom post to the custom post type in wp-admin.

February 27, 2014 at 3:34 pm in reply to: Issues with taxonomies 15899
DM DM

I have the same issue. I use Easy Custom Post Type for taxinomy creation and none of the taxinomy data appears on published posts.
This is a big issue as I’m working against a deadline and need a fix for this asap.

February 27, 2014 at 3:32 pm in reply to: ECPT & WPUF 15898
DM DM

Also, my ecpt taxinomy valuse are not displayed on the published post, despite selecting and entering values on the submission form.

So it seems that somehow I have to add support for ECPT Taxinomies to WPUF, but how to do that?

Viewing 10 Topics - 1 through 10 (of 10 total)