<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:content="http://purl.org/rss/1.0/modules/content/"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <title>BeBuilder — Betheme Support Forum</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/</link>
        <pubDate>Thu, 24 Sep 2026 12:10:54 +0000</pubDate>
        <language>en</language>
            <description>BeBuilder — Betheme Support Forum</description>
    <atom:link href="https://forum.muffingroup.com/betheme/index.php?p=/categories/bebuilder/feed.rss" rel="self" type="application/rss+xml"/>
    <item>
        <title>Different title bar image bg for parent categories</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80943/different-title-bar-image-bg-for-parent-categories</link>
        <pubDate>Thu, 24 Sep 2026 07:37:17 +0000</pubDate>
        <category>BeBuilder</category>
        <dc:creator>Pudis</dc:creator>
        <guid isPermaLink="false">80943@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hi, </p><p>how to make different image on parent categories and child on website?</p><div data-embedjson="{&quot;body&quot;:&quot;0,00 €&quot;,&quot;url&quot;:&quot;https:\/\/lauralutz.lt\/produkto-kategorija\/rubai-moterims\/&quot;,&quot;embedType&quot;:&quot;link&quot;,&quot;name&quot;:&quot;Rūbai moterims – lauralutz.lt&quot;}">
    <a rel="nofollow" href="https://lauralutz.lt/produkto-kategorija/rubai-moterims/">
        https://lauralutz.lt/produkto-kategorija/rubai-moterims/
    </a>
</div><p>and ex. this one <a href="https://lauralutz.lt/produkto-kategorija/rubai-vyrams/apatiniai-rubai-vyrams/" rel="nofollow">https://lauralutz.lt/produkto-kategorija/rubai-vyrams/apatiniai-rubai-vyrams/</a></p>]]>
        </description>
    </item>
    <item>
        <title>Bebuilder broken</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80944/bebuilder-broken</link>
        <pubDate>Thu, 24 Sep 2026 08:30:23 +0000</pubDate>
        <category>BeBuilder</category>
        <dc:creator>maddecheao</dc:creator>
        <guid isPermaLink="false">80944@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<div>
    <div>
        <a href="https://forum.muffingroup.com/betheme/uploads/161/3ERNW3ONYIIY.png" rel="nofollow noopener" target="_blank">
            <img src="https://forum.muffingroup.com/betheme/uploads/161/3ERNW3ONYIIY.png" alt="image.png" />
        </a>
    </div>
</div>
<p>How can this be resolved?</p><p>The front-end of the site is working fine.</p><p>I&#39;ve set up an administrator account for you.</p><p><br /></p><p>www.deborahcroci.it</p><p>h</p>]]>
        </description>
    </item>
    <item>
        <title>Pre-Built Website burger3 wrap alignment problem</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80940/pre-built-website-burger3-wrap-alignment-problem</link>
        <pubDate>Tue, 22 Sep 2026 16:48:00 +0000</pubDate>
        <category>BeBuilder</category>
        <dc:creator>pacaldi</dc:creator>
        <guid isPermaLink="false">80940@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>I have a problem with elements alignment as you can see <a href="https://www.merenderiacasteldilama.it/menu/" rel="nofollow">here</a>. If i duplicate the wrap then i can&#39;t align it anymore, it doesn&#39;t works and if you check the css you will find a lot of duplicate style file.</p><p>How can i solve it?</p><p>Thank you so much</p>]]>
        </description>
    </item>
    <item>
        <title>Hierarchical category filters missing on brand archives</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80941/hierarchical-category-filters-missing-on-brand-archives</link>
        <pubDate>Tue, 22 Sep 2026 17:40:25 +0000</pubDate>
        <category>BeBuilder</category>
        <dc:creator>chrismcb6</dc:creator>
        <guid isPermaLink="false">80941@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hi,</p><p>I found an issue with hierarchical taxonomy filters when using a Shop Archive template and template set for a Brands taxonomy.</p><p>The template contains a Filters element alongside Shop Products. The Categories filter is configured as:</p><ul><li>Filter by: Taxonomy</li><li>Taxonomy: Product categories</li><li>Field type: Checkbox</li></ul><p>Products and other filters display correctly, but the Categories filter disappears entirely on the brand archive. It displays in the builder&rsquo;s general shop preview.</p><p>Changing the field type to Switch makes the categories appear, but we need the hierarchical checkbox layout. Toggling &ldquo;Exclude parent taxonomy terms&rdquo; makes no difference.</p><p><strong>Example scenario</strong></p><p>Consider this category structure:</p><pre spellcheck="false">Clothing
└── Outerwear
    ├── Jackets
    └── Coats
</pre><p>A product belongs to Brand A and is assigned only to Jackets. Coats contains products from Brand B.</p><p>On the Brand A archive, the expected category filter would show:</p><pre spellcheck="false">Clothing
└── Outerwear
    └── Jackets
</pre><p>Instead, the Categories field can disappear completely.</p><p><strong>Why the current code appears to fail</strong></p><p>In <code spellcheck="false">sc_filters()</code> in <code spellcheck="false">functions/theme-shortcodes.php</code>, Checkbox, Radio and Select fields set:</p><pre spellcheck="false">$terms_params[&#39;parent&#39;] = 0;
</pre><p>On an archive, the query also adds:</p><pre spellcheck="false">$terms_params[&#39;object_ids&#39;] = $product_ids;
</pre><p>Together, these request only top-level terms directly assigned to products in the current archive.</p><p>In the example, the product is directly assigned to Jackets, not Clothing. The query therefore returns no root terms, and the filter field is omitted.</p><p><strong>Proposed change</strong></p><p>For hierarchical controls:</p><ol><li>Fetch the terms assigned to the archive&rsquo;s products, without the top-level restriction.</li><li>Add their ancestors so the hierarchy can be displayed.</li><li>Restrict the root query and every child query to that combined set.</li></ol><p>This preserves the relevant hierarchy without introducing unrelated branches. It uses the selected taxonomy rather than hard-coding brands or product categories.</p><p>The proposed minimal diff against 28.5.10 is:</p><pre spellcheck="false">--- a/functions/theme-shortcodes.php
+++ b/functions/theme-shortcodes.php
@@
 					if( ( is_tax() || is_tag() || is_category() || is_archive() ) &amp;&amp; !empty($product_ids) ) {
 						//$terms = mfn_get_available_attr_terms_in_current_view($product_ids, $excl_ids, $field[&#39;tax_filter&#39;], $hierarchical);
 						$terms_params[&#39;object_ids&#39;] = $product_ids;
+
+						if( isset($terms_params[&#39;parent&#39;]) ) {
+							$term_ids = get_terms(array_merge($terms_params, [
+								&#39;parent&#39;       =&gt; &#39;&#39;,
+								&#39;fields&#39;       =&gt; &#39;ids&#39;,
+								&#39;hierarchical&#39; =&gt; false,
+							]));
+
+							if( is_wp_error($term_ids) || empty($term_ids) ) continue;
+
+							$included_ids = $term_ids;
+							foreach( $term_ids as $term_id ) {
+								$included_ids = array_merge(
+									$included_ids,
+									get_ancestors($term_id, $field[&#39;tax_filter&#39;], &#39;taxonomy&#39;)
+								);
+							}
+
+							unset($terms_params[&#39;object_ids&#39;]);
+							$terms_params[&#39;include&#39;] = array_unique($included_ids);
+							$terms_params[&#39;hide_empty&#39;] = false;
+						}
 					}
@@
-							$term-&gt;childrens = get_terms([ &#39;taxonomy&#39; =&gt; $field[&#39;tax_filter&#39;], &#39;hide_empty&#39; =&gt; true, &#39;parent&#39; =&gt; $term-&gt;term_id]);
+							$term-&gt;childrens = get_terms(array_merge($terms_params, [ &#39;parent&#39; =&gt; $term-&gt;term_id ]));
@@
-									$termm-&gt;childrens = get_terms([ &#39;taxonomy&#39; =&gt; $field[&#39;tax_filter&#39;], &#39;hide_empty&#39; =&gt; true, &#39;parent&#39; =&gt; $termm-&gt;term_id]);
+									$termm-&gt;childrens = get_terms(array_merge($terms_params, [ &#39;parent&#39; =&gt; $termm-&gt;term_id ]));
@@
-											$termmm-&gt;childrens = get_terms([ &#39;taxonomy&#39; =&gt; $field[&#39;tax_filter&#39;], &#39;hide_empty&#39; =&gt; true, &#39;parent&#39; =&gt; $termmm-&gt;term_id]);
+											$termmm-&gt;childrens = get_terms(array_merge($terms_params, [ &#39;parent&#39; =&gt; $termmm-&gt;term_id ]));
</pre><p>Could you review this approach and consider incorporating a fix into the theme? I&rsquo;ll leave the final implementation and wider compatibility/regression testing with your team.</p><p>This has been applied and working in my current setup at <a href="https://tinyurl.com/z855sduf" rel="nofollow">https://tinyurl.com/z855sduf</a></p><p>Thanks!</p>]]>
        </description>
    </item>
    <item>
        <title>Local font regeneration creates duplicate regular fonts from checkbox metadata</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80935/local-font-regeneration-creates-duplicate-regular-fonts-from-checkbox-metadata</link>
        <pubDate>Mon, 21 Sep 2026 10:15:51 +0000</pubDate>
        <category>BeBuilder</category>
        <dc:creator>chrismcb6</dc:creator>
        <guid isPermaLink="false">80935@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hello.</p><p>I&rsquo;ve identified two issues with locally cached Google Fonts in BeTheme 28.5.9.1.</p><p><strong>1. Checkbox metadata is treated as a font weight</strong></p><p>With Ubuntu weights 400, 500 and 700 selected, regenerating local fonts also created <code spellcheck="false">Ubuntu-1-latin.woff2</code> and its Latin Extended equivalent. These were declared as weight 400, duplicating the regular font. The same happened with Poppins.</p><p>The checkbox renderer in <code spellcheck="false">muffin-options/fields/checkbox/field_checkbox.php</code> adds a hidden <code spellcheck="false">[post-meta]</code> value of <code spellcheck="false">1</code>.</p><p>In <code spellcheck="false">functions/builder/class-mfn-builder-ajax.php</code>, <code spellcheck="false">_tool_regenerate_fonts()</code> reads the font-weight array and iterates over its values without excluding this marker. It consequently requests weight <code spellcheck="false">1</code> and uses that value in the generated filenames.</p><p>For testing, I added:</p><pre spellcheck="false">unset($weight[&#39;post-meta&#39;]);
</pre><p>Immediately after:</p><pre spellcheck="false">$weight = mfn_opts_get( &#39;font-weight&#39;, [&#39;400&#39;] );
</pre><p>After regeneration, the duplicate <code spellcheck="false">Ubuntu-1</code> and <code spellcheck="false">Poppins-1</code> declarations disappeared, leaving the expected weights.</p><p>This also affected performance: WP Rocket preloaded <code spellcheck="false">Ubuntu-400</code>, while the browser downloaded <code spellcheck="false">Ubuntu-1</code> through the later CSS declaration, resulting in two regular-font downloads.</p><p>Could you exclude checkbox metadata and validate the weight values in the generator?</p><p><strong>2. Regenerated frontend font CSS retains a fixed version</strong></p><p>In <code spellcheck="false">functions/theme-head.php</code>, the local stylesheet is enqueued with <code spellcheck="false">true</code> as its version:</p><pre spellcheck="false">wp_enqueue_style(&#39;mfn-local-fonts&#39;, wp_normalize_path($path_fonts.&#39;/mfn-local-fonts.css&#39;), &#39;&#39;, true);
</pre><p>This produces <code spellcheck="false">mfn-local-fonts.css?ver=1</code>, which remains unchanged after regeneration. On our aggresively cached site, the original URL continued returning older CSS, while changing the query-string version returned the updated content.</p><p>Could this use the generated file&rsquo;s modification time, or another version updated during regeneration, to invalidate cached copies reliably?</p><p>I understand Poppins is included for the theme&rsquo;s admin/builder interface, so its inclusion is not the issue being reported.</p><p><br /></p><p>Thank you.</p>]]>
        </description>
    </item>
    <item>
        <title>global template Wrap</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80934/global-template-wrap</link>
        <pubDate>Mon, 21 Sep 2026 09:52:54 +0000</pubDate>
        <category>BeBuilder</category>
        <dc:creator>lisetta75</dc:creator>
        <guid isPermaLink="false">80934@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hi,</p><p>I created a global template using Wrap... how do I insert it into my page? I don&#39;t understand how to call it.</p><p>thank</p>]]>
        </description>
    </item>
    <item>
        <title>BeBuilder linked images: hard-coded accessibility label</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80933/bebuilder-linked-images-hard-coded-accessibility-label</link>
        <pubDate>Mon, 21 Sep 2026 08:51:23 +0000</pubDate>
        <category>BeBuilder</category>
        <dc:creator>chrismcb6</dc:creator>
        <guid isPermaLink="false">80933@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hello,</p><p>PageSpeed flags linked image elements under <strong>&ldquo;Identical links have the same purpose&rdquo;</strong>, identifying a failure to follow accessibility best practice. The reported elements have this markup:</p><p><code spellcheck="false">role=&quot;link&quot; aria-label=&quot;Image with links&quot; tabindex=&quot;0&quot;</code></p><p>In the BeTheme 28.5.9.1 source, this label is hard-coded in <code spellcheck="false">sc_image()</code> in <code spellcheck="false">functions/theme-shortcodes.php</code>, around line 10024.</p><p>The image element&rsquo;s custom <code spellcheck="false">$link_title</code> is already applied to the inner anchors, but the keyboard-focusable wrapper retains the generic &ldquo;Image with links&rdquo; description. This means the supplied link title does not provide a meaningful accessible name for that wrapper.</p><p>Could the wrapper&rsquo;s <code spellcheck="false">aria-label</code> use the custom link title when supplied, with an appropriate fallback when it is empty? For example, a linked logo could use &ldquo;Visit our home page&rdquo;.</p><p>You can see this at <a href="https://tinyurl.com/2w9wdbvj" rel="nofollow">https://tinyurl.com/2w9wdbvj</a></p><p><br /></p><p>Thank you.</p>]]>
        </description>
    </item>
    <item>
        <title>Background video on mobile showing play buttons</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80929/background-video-on-mobile-showing-play-buttons</link>
        <pubDate>Thu, 17 Sep 2026 14:16:26 +0000</pubDate>
        <category>BeBuilder</category>
        <dc:creator>themoodproject</dc:creator>
        <guid isPermaLink="false">80929@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hi! </p><p>Suddenly, my website has started showing the play buttons for background videos on iPhones. How can I remove them?</p><p>This is the website: <a href="https://es.complidermol.com/es/es/" rel="nofollow">https://es.complidermol.com/es/es/</a></p><p>Thank you</p>]]>
        </description>
    </item>
    <item>
        <title>Blog posts is going over the edge</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80926/blog-posts-is-going-over-the-edge</link>
        <pubDate>Tue, 15 Sep 2026 17:33:04 +0000</pubDate>
        <category>BeBuilder</category>
        <dc:creator>epicMAC</dc:creator>
        <guid isPermaLink="false">80926@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>I cannot solve this.</p><div>
    <div>
        <a href="https://forum.muffingroup.com/betheme/uploads/197/79KSSJQ5FJWH.png" rel="nofollow noopener" target="_blank">
            <img src="https://forum.muffingroup.com/betheme/uploads/197/79KSSJQ5FJWH.png" alt="image.png" />
        </a>
    </div>
</div>
<p><br /></p>]]>
        </description>
    </item>
    <item>
        <title>Wrap Contents Disappearing after Saving and Viewing.</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80927/wrap-contents-disappearing-after-saving-and-viewing</link>
        <pubDate>Tue, 15 Sep 2026 19:02:38 +0000</pubDate>
        <category>BeBuilder</category>
        <dc:creator>markm317</dc:creator>
        <guid isPermaLink="false">80927@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Been wasting hours on this.  I am creating a new Section, creating a 1/2 Wrap, adding image, Heading, Heading, and Column Text to this Wrap.  Saving Wrap and going to view it, that section is blank.</p><p>Go back to Navigator - the Wrap &quot;Elements&quot; are not visible.  Can&#39;t click on anything.  Any new changes wipes out previous work.</p><p>I tried writing custom code, instead of Using &quot;Elements&quot;.  Same thing happens.</p><p><a href="https://mf9vqbl9en-staging.onrocket.site/media-information/nelsonian-awards/2019-winners/" rel="nofollow">mf9vqbl9en-staging.onrocket.site/media-information/nelsonian-awards/2019-winners</a></p><p>&quot;This year&#39;s recipients are:&quot; section is the messed up section.  I have tried custom code, deleting and recreating.  System Status, PHP are all good.</p>]]>
        </description>
    </item>
    <item>
        <title>As admin Spielwiese I can’t edit or delete old pages</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80918/as-admin-spielwiese-i-can-t-edit-or-delete-old-pages</link>
        <pubDate>Sun, 13 Sep 2026 09:54:09 +0000</pubDate>
        <category>BeBuilder</category>
        <dc:creator>t_hans</dc:creator>
        <guid isPermaLink="false">80918@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>As administrator Spielwiese I can&rsquo;t edit or delete old pages e.g.&nbsp;<a href="https://korschenbroichertc.de/sport/mannschaften/jugend-mannschaften/feriencamp/" rel="nofollow">https://korschenbroichertc.de/sport/mannschaften/jugend-mannschaften/feriencamp/</a></p>]]>
        </description>
    </item>
    <item>
        <title>After migration to live server, header template no working anymore</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80923/after-migration-to-live-server-header-template-no-working-anymore</link>
        <pubDate>Mon, 14 Sep 2026 17:53:34 +0000</pubDate>
        <category>BeBuilder</category>
        <dc:creator>webbabe</dc:creator>
        <guid isPermaLink="false">80923@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>I have done a migration of a development website to the live server but now the header is completely wrong, is this a bug?</p><p>Details for this site have been sent through DM at code canyon</p>]]>
        </description>
    </item>
    <item>
        <title>Media Carousel</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80917/media-carousel</link>
        <pubDate>Fri, 11 Sep 2026 20:54:05 +0000</pubDate>
        <category>BeBuilder</category>
        <dc:creator>DutchPC</dc:creator>
        <guid isPermaLink="false">80917@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hello,</p><p>I use the media carousel, but that it is not working on mobile.</p><p>It shows the first picture and text, but it does not scroll to the next image.</p><div data-embedjson="{&quot;body&quot;:&quot;Vloeren Studio Duiven is de speciaalzaak met houten parketvloeren, PVC vloeren, laminaat &amp; trapbekleding. Met professionele legservice.&quot;,&quot;photoUrl&quot;:&quot;https:\/\/vloerenstudioduiven.nl\/wp-content\/uploads\/2024\/11\/Duoplank-eiken-houten-vloer.png&quot;,&quot;url&quot;:&quot;https:\/\/vloerenstudioduiven.nl\/&quot;,&quot;embedType&quot;:&quot;link&quot;,&quot;name&quot;:&quot;Vloeren Studio Duiven - Parket, PVC &amp; Laminaat&quot;}">
    <a rel="nofollow" href="https://vloerenstudioduiven.nl/">
        https://vloerenstudioduiven.nl/
    </a>
</div><p><br /></p><p>Thanks</p>]]>
        </description>
    </item>
    <item>
        <title>Template post type is never registered on requests authed outside determine_current_user (28.5.9.1)</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80920/template-post-type-is-never-registered-on-requests-authed-outside-determine-current-user-28-5-9-1</link>
        <pubDate>Mon, 14 Sep 2026 03:51:51 +0000</pubDate>
        <category>BeBuilder</category>
        <dc:creator>justawebguy</dc:creator>
        <guid isPermaLink="false">80920@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>SYMPTOM. On 28.5.9.1, a REST request authenticated by a bearer token &mdash; in my case AI Engine&#39;s MCP endpoint &mdash; sees the template post type as absent. post_type_exists returns false, and anything depending on the post type (querying templates, creating one) fails, even though the resolved user is a full administrator. My own plugin works around it by registering the post type itself when it finds it missing. Measured with hook-only instrumentation, no theme files modified. Instrumentation is still in place, so send me any patch and I will re-run the same request and return the same rows.</p><p>WHERE IT COMES FROM. functions/post-types/class-mfn-post-type-template.php is 2516 lines, and line 2516 &mdash; the last line &mdash; instantiates the class at file load.</p><p>In the constructor, line 23 opens a guard on Sitepress not existing. Inside it, the bebuilder_access filter bails at 25-26, and the editor/administrator test bails at 29-30. That guard closes at 33. The parent constructor call at 35 and the init attachment at 38 are outside it. So with WPML present the post type registers unconditionally; without it, registration is decided at file load, before authentication has run.</p><p>WHAT I MEASURED. Reading the current-user global directly, without calling anything that would resolve it:</p><p>&nbsp;set_current_user ... 0</p><p>&nbsp;setup_theme ........ 0</p><p>&nbsp;after_setup_theme .. 0</p><p>&nbsp;init priority 1 .... 0</p><p>&nbsp;init priority 9999 . 0</p><p>&nbsp;rest_api_init ...... 0</p><p>&nbsp;route handler ...... 1</p><p>ALREADY RULED OUT: MOVING THE CHECK TO INIT. It does not help, and not for a timing reason. At every point above, the determine_current_user callbacks are only the three core ones: wp_validate_auth_cookie, wp_validate_logged_in_cookie, wp_validate_application_password. AI Engine registers none, and sets the user explicitly inside its route handler instead. So there is no point before dispatch at which that token could be resolved, by any hook. You can confirm this in your own environment by dumping the determine_current_user filter list on such a request.</p><p>SCOPE. This is not all authenticated REST requests. wp_validate_auth_cookie is registered, so cookie-authenticated requests resolve normally and early and are unaffected. It applies to schemes that authenticate outside determine_current_user.</p><p>TWO CANDIDATE FIXES &mdash; THE CHOICE DEPENDS ON INTENT ONLY YOU HAVE.</p><p>Option A, register unconditionally and gate only the interface. Not neutral as things stand: the registration sets public to false but publicly_queryable to true explicitly, so with the type registered the single-item template-item URLs become reachable by anonymous visitors. Note your WPML path already registers unconditionally today, so that exposure already exists on those installs.</p><p>Option B, derive show_ui and publicly_queryable from the access check at registration time. That leaves a registered but invisible post type on a token request, which is all a programmatic client needs.</p><p>The question that decides it: is publicly_queryable true here deliberate, or a leftover alongside the template-item slug? If it is a leftover, Option A is small. If it is load-bearing for template preview, Option B looks better. I cannot tell from outside, which is why I am asking rather than proposing a patch.</p>]]>
        </description>
    </item>
    <item>
        <title>Strange issues with BeBuilder, pages showinf wrong in back- and frontoffice</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80894/strange-issues-with-bebuilder-pages-showinf-wrong-in-back-and-frontoffice</link>
        <pubDate>Tue, 01 Sep 2026 08:49:34 +0000</pubDate>
        <category>BeBuilder</category>
        <dc:creator>webbabe</dc:creator>
        <guid isPermaLink="false">80894@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>I have a very strange problem with one of the websites I am developing;</p><p>somehow what you see in the backoffice with Bebuilder editor, is not showing in the frontoffice (the website itself) and also different elements are there that should not be there. </p><p>A bit difficult to explain without going into detail and exposing which site is involved, so I have sent all details through envato DM, reffering to this post.</p><p>Please check what I have sent and look at the example pages mentioned in there, also then make sure to scroll down the entire pages from top to bottom, to see what is going wrong.</p><p>Thanks in advance!</p>]]>
        </description>
    </item>
    <item>
        <title>Shop slider</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80907/shop-slider</link>
        <pubDate>Mon, 07 Sep 2026 08:31:56 +0000</pubDate>
        <category>BeBuilder</category>
        <dc:creator>Pudis</dc:creator>
        <guid isPermaLink="false">80907@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>hi, its a bit strange.</p><p>Why texts apeared and how to delete them from shop slider be builder element? &quot;Original price&quot; and &quot;Current price&quot;</p><div>
    <div>
        <a href="https://forum.muffingroup.com/betheme/uploads/964/7DK6WDPBT4ZJ.png" rel="nofollow noopener" target="_blank">
            <img src="https://forum.muffingroup.com/betheme/uploads/964/7DK6WDPBT4ZJ.png" alt="image.png" />
        </a>
    </div>
</div>
<p><br /></p>]]>
        </description>
    </item>
    <item>
        <title>BeBuilder stuck on “Loading builder” after update – old Muffin Builder content cannot be edited</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80898/bebuilder-stuck-on-loading-builder-after-update-old-muffin-builder-content-cannot-be-edited</link>
        <pubDate>Wed, 02 Sep 2026 07:50:55 +0000</pubDate>
        <category>BeBuilder</category>
        <dc:creator>laubichler_holz</dc:creator>
        <guid isPermaLink="false">80898@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hello,</p><p>I need help with an older BeTheme website that was originally built several years ago using Muffin Builder.</p><p>After updating BeTheme, I can no longer edit the existing page content.</p><p><strong>The important point is that all existing content is still displayed correctly on the frontend, so the content has not been lost. However, in the WordPress backend the existing pages appear empty.</strong></p><p>When I click <strong>&ldquo;Edit with BeBuilder&rdquo;</strong>, BeBuilder gets stuck indefinitely on <strong>&ldquo;Loading builder&hellip;&rdquo;</strong>. This happens on <strong>all existing pages</strong>, not just one page.</p><p>We have already checked the database. The old builder content is still present in <code spellcheck="false">wp_postmeta</code>, including <code spellcheck="false">mfn-page-items</code> / the BeTheme builder data. Therefore, I do <strong>not</strong> want to rebuild, overwrite, or otherwise modify the existing page content.</p><p><br /></p><p>We have already tried:</p><p>&bull; updating BeTheme to 28.5.8</p><p> &bull; running the BeBuilder database updater successfully</p><p> &bull; BeTheme Tools &rarr; Regenerate files</p><p> &bull; BeTheme Tools &rarr; Re-render Builder data</p><p> &bull; updating BeCustom</p><p> &bull; updating the bundled WPBakery Page Builder to 8.7.3</p><p> &bull; testing with the &ldquo;Disable REST API&rdquo; plugin deactivated</p><p><br /></p><p>WPBakery now works, but the old page content is not stored as WPBakery <code spellcheck="false">post_content</code>, so WPBakery shows an empty page.</p><p><br /></p><p><strong>Server environment:</strong></p><p> &bull; WordPress 6.5.10</p><p> &bull; BeTheme 28.5.8</p><p> &bull; PHP 8.3.31</p><p> &bull; PHP memory limit: 256 MB</p><p> &bull; PHP max_input_vars: 3000 (BeTheme System Status recommends a minimum of 5000)</p><p> &bull; Hosting: World4You</p><p>The hosting error log previously showed:</p><p><code spellcheck="false">Resource temporarily unavailable: couldn&#39;t create child process: /usr/sbin/suphp</code></p><p>However, during a later controlled BeBuilder loading attempt, no new corresponding server error appeared.</p><p><br /></p><p><strong>Could you please check the website and help restore the ability to edit the existing Muffin Builder / BeBuilder content without overwriting or losing the existing content?</strong></p><p><br /></p><p>I can provide WordPress administrator and FTP access privately if required.</p><p>Thank you.</p>]]>
        </description>
    </item>
    <item>
        <title>Urgent: Price Display Errors After Updating BeTheme to Version 28.5.9.1</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80911/urgent-price-display-errors-after-updating-betheme-to-version-28-5-9-1</link>
        <pubDate>Mon, 07 Sep 2026 19:02:35 +0000</pubDate>
        <category>BeBuilder</category>
        <dc:creator>support-artha</dc:creator>
        <guid isPermaLink="false">80911@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<div data-embedjson="{&quot;url&quot;:&quot;https:\/\/forum.muffingroup.com\/betheme\/uploads\/671\/E1S0KI7WP7M2.png&quot;,&quot;name&quot;:&quot;shop product error.png&quot;,&quot;type&quot;:&quot;image\/png&quot;,&quot;size&quot;:589213,&quot;width&quot;:1905,&quot;height&quot;:876,&quot;embedType&quot;:&quot;file&quot;}">
    <a rel="nofollow" href="https://forum.muffingroup.com/betheme/uploads/671/E1S0KI7WP7M2.png" download="" aria-label="shop product error.png">
        shop product error.png
    </a>
</div><p>Hi BeTheme Support Team,</p><p>We are experiencing a critical issue with the Shop Products and Shop Slider elements after updating BeTheme to version 28.5.9.1.</p><p>Immediately after the update, product pricing and variation-related text started displaying incorrectly across the shop elements.</p><h3>Issues observed</h3><p>1. Product price is displayed twice</p><p>The product price is now appearing twice in the Shop Products and Shop Slider elements.</p><p>For example, instead of displaying the price once, the element is showing both the original/regular price and the current price in an incorrect or duplicated format.</p><p>2. Additional &quot;Original Price&quot; / &quot;Current Price&quot; text is appearing</p><p>Unexpected text has started appearing alongside the product pricing, including labels such as:</p><ul><li>&quot;Original price was:&quot;</li><li>&quot;Current price:&quot;</li></ul><p>These labels were not previously displayed and appear to have been introduced after updating to version 28.5.9.1.</p><p>3. Incorrect variation message is appearing</p><p>For products that have multiple variations, an additional message is now being displayed:</p><p>&quot;The product has multiple variants. The option may be chosen on the product page&quot;</p><p>This message is appearing directly within the Shop Products/Shop Slider product listing and was not present before the update.</p><h3>Expected behavior</h3><p>The shop product cards and Shop Slider should display the product information normally, with:</p><ul><li>The product price displayed only once</li><li>Sale/regular pricing displayed in the standard WooCommerce format, if applicable</li><li>No additional &quot;Original price was&quot; or &quot;Current price&quot; labels unless specifically configured</li><li>No variation-selection message displayed within the product listing</li><li>Products with multiple variations should simply link to the product page where the customer can select the required variation</li></ul><p>This issue appears to be a regression introduced after updating BeTheme to version 28.5.9.1, as the same elements were working correctly before the update.</p><p>I have attached screenshots showing the affected products and the incorrect pricing/text for your reference.</p><p>Could you please investigate this urgently and let us know how we can correct these issues? If this is a known issue with version 28.5.9.1, please provide the recommended fix or patch as soon as possible.</p><p>Please also confirm whether this requires a BeTheme update, a WooCommerce compatibility fix, or any changes to the theme/element settings.</p><p>Thank you for your prompt assistance. This is affecting the presentation of products on our shop pages, so we would appreciate an urgent resolution.</p><p>Best regards,</p>]]>
        </description>
    </item>
    <item>
        <title>I have some flags in my menu I can't get rid of</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80890/i-have-some-flags-in-my-menu-i-cant-get-rid-of</link>
        <pubDate>Fri, 28 Aug 2026 11:54:18 +0000</pubDate>
        <category>BeBuilder</category>
        <dc:creator>solifugae</dc:creator>
        <guid isPermaLink="false">80890@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hi,</p><p>on the website I am editing for my company, there are some flags, that were supposedly there to switch between languages. We decided to only launch the website in German for now and delete the flags, but somehow, even though they are shown in the top bar, I can&#39;t select them to delete them. They are also not part of the Menu they appear in.</p>]]>
        </description>
    </item>
    <item>
        <title>Unable to make section edits it BeBuilder</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80906/unable-to-make-section-edits-it-bebuilder</link>
        <pubDate>Fri, 04 Sep 2026 16:29:45 +0000</pubDate>
        <category>BeBuilder</category>
        <dc:creator>jenwyg</dc:creator>
        <guid isPermaLink="false">80906@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>I am trying to edit sections on my hompage at <a href="https://vegfest.org/" rel="nofollow">https://vegfest.org/</a> with BeBuilder but I am unable to do any of the actions listed under the three dots (Actions, Import/Export). I need to Show or Hide sections. When I hover over the three dots, the options appear partially underneath a text column, and when I try to click they/move the cursor, they all disappear.</p><div>
    <div>
        <a href="https://forum.muffingroup.com/betheme/uploads/674/DDMH8HRWYR20.png" rel="nofollow noopener" target="_blank">
            <img src="https://forum.muffingroup.com/betheme/uploads/674/DDMH8HRWYR20.png" alt="image.png" />
        </a>
    </div>
</div>
<p><br /></p>]]>
        </description>
    </item>
    <item>
        <title>Theme optimisation</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80908/theme-optimisation</link>
        <pubDate>Mon, 07 Sep 2026 09:15:12 +0000</pubDate>
        <category>BeBuilder</category>
        <dc:creator>Pudis</dc:creator>
        <guid isPermaLink="false">80908@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hi, </p><p>we have moved from theme porto to betheme, and it seems the shop results on page speed its much worse. </p><p>Domain rankine.lt</p><p>How to optimise website? we only have up to 15 plugins.</p>]]>
        </description>
    </item>
    <item>
        <title>My menu doesn't work on tablet view</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80893/my-menu-doesnt-work-on-tablet-view</link>
        <pubDate>Mon, 31 Aug 2026 07:22:21 +0000</pubDate>
        <category>BeBuilder</category>
        <dc:creator>solifugae</dc:creator>
        <guid isPermaLink="false">80893@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>The menu I made for navigating through the page doesn&#39;t work on tablet view.</p><p>The link to the page is https://2024.disag.de/</p><p>PC View:</p><div>
    <div>
        <a href="https://forum.muffingroup.com/betheme/uploads/582/JHAFBACGAP9F.png" rel="nofollow noopener" target="_blank">
            <img src="https://forum.muffingroup.com/betheme/uploads/582/JHAFBACGAP9F.png" alt="image.png" />
        </a>
    </div>
</div>
<p>Tablet View:</p><div>
    <div>
        <a href="https://forum.muffingroup.com/betheme/uploads/216/KZQYX4HUARAD.png" rel="nofollow noopener" target="_blank">
            <img src="https://forum.muffingroup.com/betheme/uploads/216/KZQYX4HUARAD.png" alt="image.png" />
        </a>
    </div>
</div>
<p><br /></p>]]>
        </description>
    </item>
    <item>
        <title>somethhing wrong with the builder</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80903/somethhing-wrong-with-the-builder</link>
        <pubDate>Fri, 04 Sep 2026 09:33:25 +0000</pubDate>
        <category>BeBuilder</category>
        <dc:creator>ktd_hamburg</dc:creator>
        <guid isPermaLink="false">80903@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>There is something wrong, not only with this website. the Bebuilder is not wotking properly, or let&acute;s say its not working at all. The frontend looks fin, but it impossible to make any changes. What happened?</p><p>How Can I fix this? </p><p>This affects several Sites I build &hellip;</p><p><br /></p><div>
    <div>
        <a href="https://forum.muffingroup.com/betheme/uploads/227/VEWFBE11QYAJ.png" rel="nofollow noopener" target="_blank">
            <img src="https://forum.muffingroup.com/betheme/uploads/227/VEWFBE11QYAJ.png" alt="bebuilder is not working_02.png" />
        </a>
    </div>
</div>
<p><br /></p><div>
    <div>
        <a href="https://forum.muffingroup.com/betheme/uploads/360/4AWS075GLSWW.png" rel="nofollow noopener" target="_blank">
            <img src="https://forum.muffingroup.com/betheme/uploads/360/4AWS075GLSWW.png" alt="bebuilder is not working.png" />
        </a>
    </div>
</div>
<p><br /></p>]]>
        </description>
    </item>
    <item>
        <title>Second Portfolio page</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80884/second-portfolio-page</link>
        <pubDate>Sat, 22 Aug 2026 07:27:00 +0000</pubDate>
        <category>BeBuilder</category>
        <dc:creator>Maindy</dc:creator>
        <guid isPermaLink="false">80884@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hi,</p><p>I&rsquo;m trying to create a second portfolio/archive page on my website, and I need some guidance on how this should be set up within the theme.</p><p>The website is for an event venue called&nbsp;<strong>The Place by Digma Productions ( </strong><a href="https://theplace-digma.com/portfolio/" rel="nofollow">https://theplace-digma.com</a> ) At the moment, we have a portfolio/archive page called&nbsp;<strong>Events</strong>, where we showcase different events that have taken place at the venue.</p><p>I would now like to create a second, separate page called&nbsp;<strong>Studio</strong>, using the same layout/design and functionality as the existing Events portfolio page.</p><p>The idea is:</p><ul><li><strong>Events</strong>&nbsp;&rarr; displays projects/events related to the venue&rsquo;s event space.</li><li><strong>Studio</strong>&nbsp;&rarr; displays projects where different clients have used the venue&rsquo;s studio facilities (photo/video productions, shoots, content creation, etc.).</li></ul><p>Both pages should have the same visual structure as the existing portfolio page, but they should display different portfolio items.</p><p>I tried duplicating the existing portfolio/archive page, but this does not work as expected. Instead of duplicating the actual page layout and settings, the duplicated page seems to use a different template, so the original portfolio design is lost/broken.</p><p>What I would like to achieve is:</p><ol><li>Keep the existing&nbsp;<strong>Events</strong>&nbsp;portfolio/archive page as it is.</li><li>Create a second archive/portfolio page called&nbsp;<strong>Studio</strong>, using exactly the same layout and design.</li><li>When I create a new portfolio item, I need to be able to assign it either to&nbsp;<strong>Events</strong>&nbsp;or&nbsp;<strong>Studio</strong>.</li><li>Items assigned to&nbsp;<strong>Events</strong>&nbsp;should appear only on the Events page.</li><li>Items assigned to&nbsp;<strong>Studio</strong>&nbsp;should appear only on the Studio page.</li><li>Ideally, both pages should use the same portfolio item template/design, while the two archive pages display different sets of projects.</li></ol><p>Could you please explain the correct way to set this up with your theme?</p><p>Specifically, should I be using portfolio categories, taxonomies, custom post types, archive templates, or another feature of the theme?</p><p>And how can I create a second archive page that uses the exact same design as the existing portfolio archive, but displays only the portfolio items assigned to the&nbsp;<strong>Studio</strong>&nbsp;category?</p><p>If possible, please provide step-by-step instructions for the correct setup.</p><p>Thank you!</p>]]>
        </description>
    </item>
    <item>
        <title>Logo needs to start from top screen edge</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80879/logo-needs-to-start-from-top-screen-edge</link>
        <pubDate>Wed, 19 Aug 2026 11:52:38 +0000</pubDate>
        <category>BeBuilder</category>
        <dc:creator>Maindy</dc:creator>
        <guid isPermaLink="false">80879@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hi,</p><p>I&rsquo;m working on the header of my website,&nbsp;<strong>theplace-digma.com</strong>, using BeBuilder / BeTheme.</p><p>I&rsquo;m having an issue with the positioning of the&nbsp;<strong>header logo</strong>. I want the logo to start directly from the&nbsp;<strong>top edge of the browser viewport</strong>, without any empty space above it.</p><p>At the moment, there is a visible gap between the top of the viewport and the top of the logo. I&rsquo;ve checked the header structure in the Navigator. The logo is inside:</p><p><strong>Section &rarr; Wrap &rarr; Header Logo</strong></p><p>I also checked the&nbsp;<strong>Section &rarr; Advanced &rarr; Positioning</strong>&nbsp;settings and the&nbsp;<strong>Section content position</strong>&nbsp;is already set to&nbsp;<strong>Top</strong>.</p><p>I don&rsquo;t want to simply move the logo upwards with a negative&nbsp;<code spellcheck="false">top</code>&nbsp;value, as I assume the empty space is caused by padding, spacing, the Wrap, or the Header/Section configuration.</p><p>Could you please advise me&nbsp;<strong>which exact BeBuilder setting is creating this top spacing and how I should configure the header so that the logo sits flush with the top edge of the viewport?</strong></p><p>I can provide screenshots of the current Section, Wrap and Logo settings if needed.</p><p>Thank you!</p>]]>
        </description>
    </item>
    <item>
        <title>Need help resolving content loss issue</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80877/need-help-resolving-content-loss-issue</link>
        <pubDate>Tue, 18 Aug 2026 14:36:51 +0000</pubDate>
        <category>BeBuilder</category>
        <dc:creator>customerservice389</dc:creator>
        <guid isPermaLink="false">80877@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Our website, <a href="http://www.hygenall.com" rel="nofollow">www.hygenall.com</a>: The entire site was made years ago with Classic Editor. Anytime we edit with BeBuilder and save, almost all content is lost.</p><p><strong>The Exact Bug:</strong></p><p>When opening any older, existing page with the modern &quot;Edit with BeTheme Editor&quot; (BeBuilder), the engine appears to display the layout fine visually. However, if we make&nbsp;<strong>any change at all&mdash;even editing a single word</strong>&mdash;and click Save, the save sequence completely drops the entire page payload. It immediately overwrites the database, wiping out all text, elements, and layout containers, leaving a completely blank page on the frontend [image_LSs-1H].</p><p><strong>Our Current Workaround:</strong></p><p>We can safely edit and save text copy without data loss&nbsp;<em>only</em>&nbsp;if we completely bypass BeBuilder and click the classic WordPress backend &quot;Edit Page&quot; button.</p><p><strong>Everything We Have Checked &amp; Attempted (To Rule Out Basics):</strong></p><ol><li><strong>Server Environment is Fully Optimized:</strong>&nbsp;Running PHP 8.3.33, PHP Memory Limit is 512MB, and PHP Max Input Vars is set to 10,000 [image_DmGEq5.png]. All System Status indicators are green.</li><li><strong>Plugin Conflict Testing:</strong>&nbsp;We deactivated ALL 3rd-party plugins on the site (including Elementor, Classic Editor, and Jetpack) to test in a native environment.</li><li><strong>Native Recovery Tools Ran:</strong>&nbsp;With 3rd party plugins deactivated, we executed the&nbsp;<strong>&quot;Re-render Builder data&quot;</strong>&nbsp;tool via&nbsp;<em>Betheme &gt; Tools</em>.</li></ol><p>Unfortunately, even after a clean data re-render with no plugins running, making any single text change inside BeBuilder immediately drops all layout content upon save. This strongly points to a deep database serialization or structural translation conflict between the 7-year-old meta arrays and the modern saving script.</p><p>Could a technical moderator please escalate this directly to the engineering team? I am happy to provide secure private dashboard admin login credentials so an engineer can inspect the raw database string translation mismatch.</p>]]>
        </description>
    </item>
    <item>
        <title>BeTheme</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80874/betheme</link>
        <pubDate>Tue, 18 Aug 2026 07:49:01 +0000</pubDate>
        <category>BeBuilder</category>
        <dc:creator>rhest321</dc:creator>
        <guid isPermaLink="false">80874@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hi,</p><p>How do I make edits to the sections which are built with BeBuilder, they appear blank when im in edit mode, so I can&#39;t make changes to those specific sections, please help.</p>]]>
        </description>
    </item>
    <item>
        <title>BeBuilder not responding – unable to edit elements</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80873/bebuilder-not-responding-unable-to-edit-elements</link>
        <pubDate>Mon, 17 Aug 2026 21:05:40 +0000</pubDate>
        <category>BeBuilder</category>
        <dc:creator>FeierblummProductionsasbl</dc:creator>
        <guid isPermaLink="false">80873@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hello,</p><p>I am experiencing an issue with BeTheme 28.5.7 and the BeBuilder/Live Builder.</p><p>When I create a new template, the Live Builder opens automatically. The existing elements are displayed correctly, but the builder does not respond to any actions.</p><p>The following functions do not work:</p><ul><li>Editing elements</li><li>Deleting elements</li><li>Adding new elements via &ldquo;Add Element&rdquo;</li><li>Undo/Redo</li><li>Saving changes via &ldquo;Update&rdquo;</li></ul><p>I have already performed the following tests:</p><ul><li>Checked the Chrome DevTools console &rarr; no JavaScript errors</li><li>Performed a hard refresh using Ctrl + Shift + R &rarr; no change</li><li>Tested the BeBuilder in Incognito mode &rarr; no change</li></ul><p>The builder itself loads correctly and the existing content is visible, but none of the editing functions respond to clicks.</p><p>My BeTheme version is <strong>28.5.7</strong>.</p><p>Could you please help me identify why the BeBuilder is not responding and how I can restore its editing functionality?</p><p>Thank you in advance for your help.</p><p>Best regards,</p>]]>
        </description>
    </item>
    <item>
        <title>ACF custom post type templates</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80867/acf-custom-post-type-templates</link>
        <pubDate>Thu, 13 Aug 2026 18:16:49 +0000</pubDate>
        <category>BeBuilder</category>
        <dc:creator>birddirty</dc:creator>
        <guid isPermaLink="false">80867@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>I have some custom post types created with ACF and I&#39;m trying to create some global templates for the single pages.  The post content element does not show in bebuilder like it does for other post types lke portfolio, clients, testimonials, etc.  Is there a way to get those builder elements available on my ACF post types?</p>]]>
        </description>
    </item>
    <item>
        <title>Code Editor</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80863/code-editor</link>
        <pubDate>Wed, 12 Aug 2026 11:54:02 +0000</pubDate>
        <category>BeBuilder</category>
        <dc:creator>Stiftung_Leuchtfeuer</dc:creator>
        <guid isPermaLink="false">80863@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Dear Support Team,</p><p>unfortunately the code editor is no longer working properly. In the BeBuilder, when I open a Column Text element and switch to the text/code view, the editor is broken: the toolbar buttons (bold, italic, etc.) have no effect, and the interface elements overlap. Switching back and forth or changing the usual settings doesn&#39;t fix it.</p><p>I suspect this is related to the update installed today. Could you please tell me how to restore the editor to working order? I&#39;d appreciate a quick solution, as I&#39;m currently building several pages that rely on custom HTML.</p><p>System details:</p><p> &ndash; BeTheme version: 28.5.7</p><p> &ndash; WordPress version: 7.0.3</p><p> &ndash; The site is a staging environment (Raidboxes) with FastPixel Cache</p><p>Thank you very much in advance and best regards,</p><p> Sebastian Sch&ouml;nenstein</p>]]>
        </description>
    </item>
   </channel>
</rss>
