Skip to content

Instantly share code, notes, and snippets.

@cristianstan
Created March 21, 2024 12:19
Show Gist options
  • Save cristianstan/a040ad94e51b253247c04a4235eecdc7 to your computer and use it in GitHub Desktop.
Save cristianstan/a040ad94e51b253247c04a4235eecdc7 to your computer and use it in GitHub Desktop.
Meeek SaaS: How to replace the 'Verified Owner text'?
<?php
function meeeksaas_verified_owner_text_override() {
// Your Own text here
$new_text = __('Verified User', 'meeek-saas');
return esc_html($new_text);
}
add_filter( 'meeeksaas_verified_owner_text', 'meeeksaas_verified_owner_text_override');
// Meeek SaaS (WordPress) -> https://modeltheme.com/portfolio/meeek-bio-links-saas-wordpress/
// Docs: https://docs.modeltheme.com/meeek-saas/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment