-
AuthorPosts
-
May 14, 2019 at 5:11 pm #1100690
Hallo Liebe Comnunity,
mir ist was aufgefallen das bei Custom Post-Types die Klassen Css nicht mit ausgegeben werden.
Bzw. Falsch formatiert werden.post:
<div id=”av_section_1″ class=”avia-section footer_color avia-section-default avia-no-border-styling avia-bg-style-scroll avia-builder-el-2 el_after_av_one_full el_before_av_one_full container_wrap fullsize” style=” “><div class=”container”><div class=”template-page content av-content-full alpha units”><div class=”post-entry post-entry-type-page post-entry-3241″><div class=”entry-content-wrapper clearfix”>
<div style=”padding-bottom:10px; ” class=”av-special-heading av-special-heading-h3 avia-builder-el-3 avia-builder-el-no-sibling “><h3 class=”av-special-heading-tag ” itemprop=”headline”>Eine nette Überschrift</h3><div class=”special-heading-border”><div class=”special-heading-inner-border”></div></div></div>
</div></div></div><!– close content main div –></div></div>custom post-type:
<div id=”av_section_1″ class=”avia-section alternate_color avia-section-default avia-no-border-styling avia-bg-style-scroll container_wrap fullsize” style=” “><div class=”container”><div class=”template-page content av-content-full alpha units”><div class=”post-entry post-entry-type-page post-entry-5802″><div class=”entry-content-wrapper clearfix”>
<div style=”padding-bottom:10px; ” class=”av-special-heading av-special-heading-h3 “><h3 class=”av-special-heading-tag ” itemprop=”headline”>Eine nette Überschrift</h3><div class=”special-heading-border”><div class=”special-heading-inner-border”></div></div></div>
<div class=”flex_column av_one_full flex_column_div av-zero-column-padding first ” style=”border-radius:0px; “><section class=”av_textblock_section ” itemscope=”itemscope” itemtype=”https://schema.org/CreativeWork”><div class=”avia_textblock ” itemprop=”text”><p>Klicke hier, um Ihren eigenen Text einzufügen</p>
</div></section></div>
</div></div></div><!– close content main div –> <!– section close by builder template –> </div><!–end builder template–></div>Woran kann dies liegen? Finde Enfold sonst echt nice, habe nur keine Lust wieder eine eigene Template Seite zu erstellen sonder möchte mit dem Builder arbeiten.
MFG Qeib
May 14, 2019 at 5:44 pm #1100703Hey Qeibu,
Danke dass Du Enfold verwendest.
Habt Ihr die CPT mit dem Filter “avf_alb_supported_post_types” registriert. Siehe als Beispiel:
Vielleicht hilft das schon.
Best regards,
GünterMay 14, 2019 at 6:16 pm #1100720Hallo Günter,
vielen Dank für deine Hilfe. :-)
Benutzen folgenden Script.
add_filter(‘avf_builder_boxes’, ‘add_builder_to_posttype’);
function add_builder_to_posttype($metabox)
{foreach($metabox as &$meta)
{
if($meta[‘id’] == ‘avia_builder’ || $meta[‘id’] == ‘avia_sc_parser’ || $meta[‘id’] == ‘layout’)
{
$meta[‘page’][] = ‘fahrzeuge’;
}
}return $metabox;
}LG Basti
May 14, 2019 at 6:19 pm #1100722Hallo Günter,
das war es vielen DANKKKKKK
May 14, 2019 at 6:31 pm #1100726 -
AuthorPosts
- The topic ‘Avia Builder – Custom Page // css not Found // avia-builder-el.. usw.’ is closed to new replies.