- Dialog Display On User Image Approval
- Changing A Mockup URL Slug
- Extend Backbone Models, Views, Collections
- Custom Scripts & Styles
- Website Publish Action
- New Comment Threads
- Additional Notification Emails
- Welcome Message In Mockups
- Change Subscribed User Email
- Dialog Display After A Comment
- Auto-Close Mockup Comment
- Changing Mockup Download
- Add Settngs To Extension Page
- Listening JavaScript Events
- Modify Default Mockup Project Options
- Overriding & Changing Templates
Changing A Mockup URL Slug
SureFeedback has a built-in filter to change the custom post type urls used for mockups and websites. To change the url for mockup projects, add this code to your theme or child theme’s functions.php file:
/**
* Change post type slug
*/
function wp123_ph_change_post_type_slug( $args ) {
$args['rewrite'] = array( 'slug' => 'mockup' );
return $args;
}
add_action( 'ph_register_post_type_project', 'wp123_ph_change_post_type_slug' );
Change “mockup” to whatever you want in your url. After you add this code, be sure to resave permalinks under Settings > Permalinks
Was this doc helpful?
What went wrong?
We don't respond to the article feedback, we use it to improve our support content.
On this page