12/02/2013 at 8:02 pm
#274675
Keymaster
@ Todd
Of, I see the template must be loading before Connections loads. To make sure the template loads after Connections, change this:
add_action( 'cn_register_template', array( 'CN_SMC_Card', 'register' ) );
To this:
add_action( 'plugins_loaded', array( 'CN_SMC_Card', 'register' ), 11 );
I just tried it out; with that change it works as expected.
