Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #793227

    hello

    i know basic Pods and would like to use Enfold Advanced Layout Editor in my Pods content types instead of the normal Wysiwyg.

    thank you

    #793235

    Hey mm256,

    I’m not sure what Pods content is, could you try to explain a bit further please?

    Best regards,
    Rikard

    #793632

    Pods is a WordPress Framework that interfaces with the website’s database and easily creates Custom Post Types.

    my question is: can i use the Enfold Advanced Layout Editor in a custom template ??

    #794158

    Hi mm256,

    You can use shortcodes from Advanced Layout Builder or have a look here.

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #800024

    it worked,

    thank you

    #800515

    Hi mm256,

    Glad you got it working for you! :)

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #1280716

    Hi there,
    unfortunately the video in the link above is not the latest version anymore, maybe.
    In the meta.php it now says “$alb_post_types = Avia_Builder()->get_supported_post_types();” Therefore the hack to add new post types doesnt work anymore. Whats the workaround now, please?
    Urs
    Frank

    #1281976

    Hi,

    Thank you for the update.

    You can use the avf_alb_supported_post_types filter in the functions.php file to add more items to the list of supported post types.

    /* 
       Add more items to supported post types
    **************************************************************************** Enfold - CPT UI */
    function avf_alb_supported_post_types_mod( array $supported_post_types )
    { 
      $supported_post_types[] = 'theor_grundlagen'; 
      $supported_post_types[] = 'grundlagen_planung';  
      $supported_post_types[] = 'orientierungsplan'; 
    
      return $supported_post_types;
    }
    add_filter('avf_alb_supported_post_types', 'avf_alb_supported_post_types_mod', 10, 1);

    Let us know if that helps.

    Best regards,
    Ismael

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.