Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author wooassist

    (@wooassist)

    @marco-tulio-lucas-da-silva

    Sorry for not replying early for this. Have you gotten it working for posts? I tested it multiple times with the latest Storefront theme (1.4.4) and it seems to work well on all post types, including WooCommerce generated pages.

    I’m testing Simmer which creates a custom post type for recipes. On the edit screen for a recipe, there is not a Screen Option for “Title and Meta Toggle.”

    Plugin Author wooassist

    (@wooassist)

    @bradley the “Title and Meta Toggle” metabox only supports the default WordPress and WooCommerce post types.

    To add support for your custom post type, you will need to create a custom function for it on your functions.php. Please try using the code below if it works for you:

    add_filter( 'woa_sf_title_toggle_post_types', 'support_recipe_title_toggle' );
    function support_recipe_title_toggle( $post_types ) {
        $post_types[] = 'recipe'; // your custom post type slug here
        return $post_types;
    }

    Hope this helps!

    This works, thank you for your generous support!
    ~Bradley

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘works only on pages’ is closed to new replies.