To add pixfort page options to WordPress custom post page, you can use the filter pixfort_page_options_post_types which passes an array of the default post types that have pixfort options, for example to enable pixfort options in “download” custom post type you can add the following code to the child theme functions.php file:
function example_add_page_post_types($post_types) { array_push($post_types, "download"); return $post_types; } add_filter( 'pixfort_page_options_post_types', 'example_add_page_post_types' );
After that the custom post type edit page will display pixfort options and you will be able to set custom values for the page (for example: custom header, footer, intro image,…).