Home › Forums › Legacy Support › Support queries › How-to & Troubleshooting › Instructor Signature on Certificate
Tagged: certificate, instructor signatue
- This topic has 32 replies, 3 voices, and was last updated 5 years ago by MrVibe.
-
AuthorPosts
-
November 2, 2019 at 7:42 pm #232120ffpaqSpectatorIs there a shortcode to generate an instructor signature on the certificate. If I add the signature field to their registration form (perhaps an image), can I pull just that field onto the certificate with a shortcode?November 4, 2019 at 4:01 am #232150loganMemberHello, no this is not available in wplms yet but this is possible. it will need a custom code or plugin for your requirement with proper testing. because this is a custom feature request it will cost you a nominal cost. please let me know your thoughts.November 4, 2019 at 6:11 pm #232263ffpaqSpectatorOk, how much is this nominal fee? I want to also have instructor logo as well.... This is a for a free MOOC type use. These fields will come from their buddy press profile (i.e. custom registration. Just need a way to pull those fields with a short code on the certificate If you will use it in future releases, will you consider making it a very very very nominal fee :)?November 5, 2019 at 6:15 am #232284loganMemberHello, no, this won't be included in wplms release because no one has ever asked for this. it is only for your requirements. The cost will be: 19$ we will add 2 new shortcodes for this, if the instructor has it in their BuddyPress profile then we will fetch it else it will show none. please confirm.November 6, 2019 at 4:31 pm #232518ffpaqSpectatorThis reply has been marked as private.November 7, 2019 at 10:56 am #232609loganMemberHello, i am working on it. please remind me by tomorrow.November 7, 2019 at 1:36 pm #232638ffpaqSpectatorThis reply has been marked as private.November 8, 2019 at 12:57 pm #232780loganMemberHello, it is [email protected]. proceed for the payment.November 8, 2019 at 7:34 pm #232819ffpaqSpectatorI didn't get a link so I'm sending via Paypal to the email providedNovember 8, 2019 at 7:49 pm #232821ffpaqSpectatorThis reply has been marked as private.November 8, 2019 at 7:53 pm #232822ffpaqSpectatorThis reply has been marked as private.November 9, 2019 at 10:05 am #232871loganMemberHello, Note: create separate topics for different issues. i am not the one who deals with the social network or email thing. contact them they will answer you better to your questions.
install this plugin: https://wordpress.org/plugins/bp-xprofile-custom-field-types/ then create a new field in wp-admin >> users profile field >> name should be signature >> then select the type image. after adding goto your profile and upload your signature image.
now goto wp-admin >> plugins >> plugin editor >> wplms customizer plugin >> wplms customizer.php file and edit. add this code at the last line. add_shortcode('certificate_inst_field',function( $atts, $content = null ) { extract(shortcode_atts(array( 'field' => '', ), $atts)); $cid = $_GET['c']; if(isset($cid) && is_numeric($cid) && isset($field) && strlen($field)>3){ $uid = get_post_field('post_author',$cid); if(!empty($uid)){ return '<div class="image_cer" style="width:150px">'.bp_get_profile_field_data( 'field='.$field.'&user_id=' .$uid).'</div>'; } }else return '[certificate_inst_field]'; }); save the settings.
now goto wp-admin >> lms >> certificate templates. add this shortcode in the certificate. [certificate_inst_field field="Signature"] here the signature is the same title as the field you added in buddypress. save the settings and generate certificate.
for the meetings: refer this tip: https://wplms.io/support/knowledge-base/wplms-bbb-addon/November 9, 2019 at 5:09 pm #232893ffpaqSpectatorThis reply has been marked as private.November 9, 2019 at 7:25 pm #232897ffpaqSpectatorThis reply has been marked as private.November 9, 2019 at 7:48 pm #232898ffpaqSpectatorThis reply has been marked as private. -
AuthorPosts
- The topic ‘Instructor Signature on Certificate’ is closed to new replies.