You can do this via the available translation filters:
add_filter( 'gettext_with_context', 'gowp_replace_learndash_label', 10, 4 );
function gowp_replace_learndash_label( $translation, $text, $context, $domain ) {
if (
( 'LearnDash %s Settings' == $text ) &&
( 'placeholder: Quiz' == $context ) &&
( 'learndash' == $domain )
) {
$translation = str_replace( 'LearnDash ', '', $translation );
}
return $translation;
}
This removes “LearnDash ” from the string:
You can also remove the first condition of the if-check to have this removed from all of the metaboxes:
Related Posts:
- Make Custom Metaboxes Collapse by Default
- Check for and enforce unique value in user-entered custom meta field in WP Admin
- Add ‘Right Now’ widget to custom dashboard
- Change separators in HTML tags
- How to display post title & excerpt when mouse hovers on an image?
- Replace “WordPress” word in title of Dashboard
- The Best Way to always load the newest version of 3rd party code
- Custom title, Bones theme
- I’m using add_meta_box() but want to include TinyMCE editor *and* Media Uploads for each box
- Get Image from Media Library with the Title
- custom meta box for page default template
- Get rid of title from static front page
- Set Title from Custom Template
- Save title as custom field on custom post type
- Keep Title and Description always
- Data won’t save if metabox within conditional in admin. What am I missing?
- How do I modify the size of the text in my page titles?
- How to add span on WordPress Title for first and third word
- Remove link from page title
- Let author add field to metabox by pressing a button
- Replace a ‘Title’ tag with a Custom Field
- Meta Tags by Meta Box
- Showing Meta Box via Jquery Checkbox
- problem saving/ retrieving custom meta with wp alchemy metabox
- WordPress 3.1.2 Bug: add_theme_support() and video post format registering twice
- title tag function
- Select input in metabox not updated
- Multiple header style under meta box
- How to get the full product name by ignoring custom modification on it
- Adding a drop-down (select tag) option under Menu Settings in WordPress Admin
- Need to replace some text string on a title
- Delete page titles
- Embedded Options in a Custom Metabox
- duplicate featured image functionality in custom meta box
- How to add custom Author Info Box to blog posts “only” and NOT custom post templates
- issue with saving custom metaboxes fields
- after checked the checkbox in backend, dont show social link on frontend
- Change post template the proper way
- Get a different size of Image thumbnail while working with custom metabox
- Need Advice to Working with Custom Post Meta
- I need to make the title of the page dynamic in my custom plugin
- Different titles on homepage vs single based on category
- How to: Easily Move a WordPress Install from Development to Production?
- Is there a flowchart for WordPress loading sequence?
- Essential technical features for high-end WordPress web hosting? [closed]
- How to remove admin menu pages inserted by plugins?
- How to put logs in WordPress
- How to get the Date Format and Time Format settings for use in my template?
- Where are Additional CSS files stored
- Best Practices for Regression Testing WordPress Websites?
- Remove wrapping div and ul from output of wp_nav_menu
- What Is The Use Of map_meta_cap Filter?
- get post author id outside loop
- Custom Walker: how to get ID in function start_lvl
- Creative uses of WordPress [closed]
- How to *remove* a parent theme page template from a child theme?
- How do I make my child theme re-apply the settings that were customised when its parent was active?
- Multiple Inputs in a Customizer Control
- New WP_Customize API – how does it work under the hood?
- Embedding a SOAP Client into a WordPress Plugin?
- Is there anything that Joomla or Drupal can do that can’t be done in WordPress? [closed]
- Update widget form after drag-and-drop (WP save bug)
- Data sanitization: Best Practices with code examples
- How to benchmark a WordPress installation? [closed]
- Should I delete the default themes?
- Moving WP install from local to live, what about wp_posts GUID?
- Modified wp.media.view.Settings.Gallery in Backbone JS, but editing doesn’t work
- Running Gutenberg React in Development Mode
- Prevent WordPress from automatically installing a new theme each year
- Can we use one WordPress installation for multiple databases, domains and content directories
- Is there a blank theme framework compatible with WP 3.0? [closed]
- Plugin SVN & update API – how are plugins identified?
- Users with custom roles not showing in post author select box
- How to use more than 256MB of memory in the admin?
- WordPress SEO by Yoast: Hide Meta Boxes in Posts for Non-admins
- How do register_sidebar() and get_sidebar() work together?
- How do you get formatted content of a post using the WordPress API?
- How To Remove The “+ Add New Category” Link From A Category Metabox
- Localization: I want the backend: english and frontend in defined language
- Are there any forks of WordPress (and what is different about them)?
- How to Change 404 page title
- WordPress Paginate $wpdb->get_results
- Custom maintenance page
- Add button to TinyMCE bar without creating a plugin
- Why do I get the timeout warning?
- How to add a new product type on woocommerce product types? [closed]
- How to include own css on wordpress tinymce editor?
- How to disable page delete
- add button to post edit page when post_status=publish
- How to force one column layout on custom post type edit page?
- how to override woocommerce specific loop or archive-product.php [closed]
- Removing Metabox for “Slug” without removing functionality
- Modify existing plugin function using filter (without modifying the plugin directly)
- Rename UPLOADS folder with custom WP_CONTENT_DIR
- WordPress hook before inserting post into database
- Any post install tips after installing WordPress 3.0.1?
- Making Custom Fields Standard in the Admin UI
- Remove WordPress theme from a specific page
- Version Control: Entire site or just pieces?
- Getting a stack trace when an error occurs?