Hi @peterparket
Add needed post type in configuration. Exapmle of configuration You can view in config folder in root of the plugin.
I’d be really grateful if you could provide me a more detailed answer. Many thanks.
Add needed post type in ‘post_types’ section in your wpm-config file in root of your current theme.
Hi. I uploaded a file called wpm-config.json in my child theme containing the following code (photograph is the custom post type slug):
{
“post_types”: {
“photograph”: {}
}
}
Now my custom post types are shown in both languages but I can’t save them in both languages: I mean worpress saves just one language. Thanks
Each translation saving separately. Use language switcher in admin for swich translation.
This worked for me
{
“post_types”: {
“photograph”: {
“post_title”: {},
“post_content”: {},
“post_excerpt”: {}
}
}
}