Jason
Forum Replies Created
-
Thank you for the reply. I’ll post in the other forum next time. I found the answer buried in the documentation. I was able to enable the new post with the following code:
function lc_template_campaigns( $cpt ) { $cpt['campaigns'] = 'Campaigns'; return $cpt; } add_filter( 'dslc_post_templates_post_types', 'lc_template_campaigns' );- This reply was modified 8 years, 6 months ago by Jason. Reason: extra line not needed
Forum: Plugins
In reply to: [Plugin: Simple Facebook Connect] breaking WP ecommerceAfter turning off publishing to facebook i can now see the edit page for the store again. I tried turning off all the features but it doesn’t fix the store. Will edit the publish section of the plugin and see if i change the execution order.
Forum: Plugins
In reply to: Is there a Validate against list pluginis there more information on user_register I want to add something like this and have registration fail if the member ID does not match.
add_action(‘user_register’, ‘checkMemberID’);
jay
Forum: Plugins
In reply to: Is there a Validate against list pluginthank you for the link. I tried this but the client wants a system where registering requires a valid ID number.
I think i’ll have to write it myself.
Are there any tutorials to show me the basics. I know enough mysql and php to compare a field on the signup page I just need to know the api and how to hook into it.
Thanks again
Jason