The parent slug is 'partner-organization'
The child slug is 'service-provider'
The column name should be 'Partner Name'
Here is the code with my updates:
//Replace the following
/*
cptslug - replace with custom post type slug
parent - replace with parent cpt slug
child - replace with child cpt slug
Column Name - replace with the desired column name.
*/
The column is getting created on the CPT service-provider layout. All records have the same parent but they are all showing 'No Parent Found' in the column. I am trying to get it to display the name of the Parent (i.e. partner-organization)
Can you try changing the array( 'partner-organization', 'service-provider' ) in the toolset relationship function to just using the relationship slug on ?
Meaning it should be like this
toolset_get_related_post( $post_id, "relationship-slug" ) )