I created custom post types so we can have several independent portfolios but the "Parameters & Options" are not showing. I can only see them in the default portfolio items. How can I fix it?
Can you please share your site credentials here, because we need to login to your site and see this issue live. Your information is safe (private) in this thread.
To include your credentials click Insert Credentials button in the editor toolbar. (See how)
I have checked the ACF options and tried to set it up but unfortunately there isn't any way to achieve it through ACF, so I contacted the developers team and their response was that what you're trying to do is not possible without lots of customizations in the theme files, so unfortunately what you're trying to achieve is not possible.
If you're looking for professional help in this matter, there's always someone available for such tasks on the WP Kraken or Codeable. Pricing and timeline are always straightforward there and that's the main reason for recommending those services.
I created custom post types so we can have several independent portfolios but the "Parameters & Options" are not showing. I can only see them in the default portfolio items. How can I fix it?
This is the code I used:
function create_event_post_type() {
register_post_type( 'event',
array(
'labels' => array(
'name' => __( 'Veranstaltungen' ),
'singular_name' => __( 'Veranstaltung' )
),
'public' => true,
'has_archive' => false,
'supports' => array( 'title', 'editor', 'thumbnail', 'custom-fields','post-formats', 'excerpt', 'revisions'),
'menu_icon' => 'dashicons-calendar',
'taxonomies' => array( 'category' ), // Add support for categories
)
);
}
add_action( 'init', 'create_event_post_type' );
Hi there,
Can you please share your site credentials here, because we need to login to your site and see this issue live. Your information is safe (private) in this thread.
To include your credentials click Insert Credentials button in the editor toolbar. (See how)
Best regards,
Laborator Team
Hi Markel,
The credentials are not working, I have tried them two times but could not manage to login to your site.
Best regards,
Laborator Team
Hi there,
As you can see in the video recording below the credentials are not working, tested them many times in different browsers but could not login:
https://d.pr/v/4DHr4P
Best regards,
Laborator Team
Hi there,
I have checked the ACF options and tried to set it up but unfortunately there isn't any way to achieve it through ACF, so I contacted the developers team and their response was that what you're trying to do is not possible without lots of customizations in the theme files, so unfortunately what you're trying to achieve is not possible.
If you're looking for professional help in this matter, there's always someone available for such tasks on the WP Kraken or Codeable. Pricing and timeline are always straightforward there and that's the main reason for recommending those services.
Best regards,
Laborator Team