<?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>Updates &amp;amp; Changelog — Betheme Support Forum</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/</link>
        <pubDate>Sat, 06 Jun 2026 01:50:47 +0000</pubDate>
        <language>en</language>
            <description>Updates &amp; Changelog — Betheme Support Forum</description>
    <atom:link href="https://forum.muffingroup.com/betheme/index.php?p=/categories/updates-changelog/feed.rss" rel="self" type="application/rss+xml"/>
    <item>
        <title>updated theme and now theme options tabs are broken</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80625/updated-theme-and-now-theme-options-tabs-are-broken</link>
        <pubDate>Wed, 20 May 2026 20:17:13 +0000</pubDate>
        <category>Updates &amp; Changelog</category>
        <dc:creator>siqve006</dc:creator>
        <guid isPermaLink="false">80625@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Cannot go in and make changes in my theme options. When I click on the theme option tabs, like footer..nothing happens.</p><p><br /></p><p>Shows this email: An error of type E_COMPILE_ERROR was caused in line 1424 of the file /www/wp-content/themes/betheme/muffin-options/options.php. Error message: require_once(): Failed opening required &#39;/www/wp-content/themes/betheme/muffin-options/fields/pages_select/field_pages_select.php&#39; (include_path=&#39;.:/usr/share/php&#39;)</p>]]>
        </description>
    </item>
    <item>
        <title>Your suggestions for future updates!!!</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/113/your-suggestions-for-future-updates</link>
        <pubDate>Mon, 09 Jun 2014 14:42:53 +0000</pubDate>
        <category>Updates &amp; Changelog</category>
        <dc:creator>Albert</dc:creator>
        <guid isPermaLink="false">113@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[Because we get many questions each day about features for Be we decided to build this theme with YOU! So will be great if you can leave your suggestions about future updates in this section. We will consider all of them and try to add in future updates ;)<br /><br />You should love this section, we hope :)<br />]]>
        </description>
    </item>
    <item>
        <title>Update 28.4.3 bug</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80630/update-28-4-3-bug</link>
        <pubDate>Fri, 22 May 2026 12:41:02 +0000</pubDate>
        <category>Updates &amp; Changelog</category>
        <dc:creator>Imaginity</dc:creator>
        <guid isPermaLink="false">80630@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Subject: Bug Report: PHP Fatal Error in Betheme 28.4.3 &mdash; Null Term Object in theme-functions.php</p><p><br /></p><p>Hi Betheme / Muffin Group Team,</p><p>I wanted to report a PHP fatal error we encountered after updating to Betheme 28.4.3 on two of our WordPress sites running WPML (multilingual).</p><p><br /></p><p>---</p><p><br /></p><p>BUG DESCRIPTION</p><p><br /></p><p>After updating to version 28.4.3, the WordPress site editor became inaccessible and the following PHP warnings appeared repeatedly in the error log, causing a critical site error:</p><p><br /></p><p>PHP Warning: Attempt to read property &quot;term_id&quot; on false in /wp-content/themes/betheme/functions/theme-functions.php on line 3865</p><p><br /></p><p>PHP Warning: Attempt to read property &quot;slug&quot; on false in /wp-content/themes/betheme/functions/theme-functions.php on line 3866</p><p><br /></p><p>---</p><p><br /></p><p>ROOT CAUSE</p><p><br /></p><p>The issue is in the foreach loop in theme-functions.php around line 3860. The function get_term_by() can return false when a taxonomy term doesn&#39;t exist or has been deleted. The code immediately tries to access -&gt;term_id on the false return value without checking first:</p><p><br /></p><p>$term = get_term_by(&#39;slug&#39;, $slug, $type);</p><p>$term = apply_filters(&#39;wpml_object_id&#39;, $term-&gt;term_id, $type, true); // Fatal if $term is false</p><p>$slug = get_term_by(&#39;term_id&#39;, $term, $type)-&gt;slug; // Fatal if result is false</p><p><br /></p><p>This is particularly triggered on sites using WPML where some taxonomy terms may exist in one language but not in another.</p><p><br /></p><p>---</p><p><br /></p><p>TEMPORARY FIX APPLIED</p><p><br /></p><p>We resolved the issue by adding null checks inside the foreach loop:</p><p><br /></p><p>$term = get_term_by(&#39;slug&#39;, $slug, $type);</p><p>if ( ! $term ) { continue; } // Skip if term not found</p><p>$term = apply_filters(&#39;wpml_object_id&#39;, $term-&gt;term_id, $type, true);</p><p>$term_obj = get_term_by(&#39;term_id&#39;, $term, $type);</p><p>if ( ! $term_obj ) { continue; } // Skip if term object not found</p><p>$slug = $term_obj-&gt;slug;</p><p><br /></p><p>This fix prevents the fatal error and allows the site to function normally.</p><p><br /></p><p>---</p><p><br /></p><p>ENVIRONMENT</p><p><br /></p><p>- Betheme version: 28.4.3</p><p>- WordPress version: 6.9.4</p><p>- PHP version: 8.3.31</p><p>- WPML version: 4.9.4 (multilingual site with EN/ES languages)</p><p>- File affected: /wp-content/themes/betheme/functions/theme-functions.php, lines 3860-3870</p><p><br /></p><p>---</p><p><br /></p><p>I hope this helps identify and fix the issue in the next release. Please let me know if you need any additional information or debug data.</p><p><br /></p><p>Best regards</p><p>Hernan</p>]]>
        </description>
    </item>
    <item>
        <title>LICENCE CODE keeps disappearing from registered domain!</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80608/licence-code-keeps-disappearing-from-registered-domain</link>
        <pubDate>Mon, 18 May 2026 11:20:59 +0000</pubDate>
        <category>Updates &amp; Changelog</category>
        <dc:creator>tracym17</dc:creator>
        <guid isPermaLink="false">80608@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hi there - LICENCE CODE keeps disappearing from registered domain! This is not the first time it is happening...could you please explain what is going wrong?! it is causing a lot of issues with plugins and updating failing... as betheme says its not registered even though it is.</p><p>Also, this website has multiple sub domains also using the same licence code for betheme as per your advice saying this is possible and allowed.   </p><p>What is going wrong please?  Please note: we have re-added the licence code to the below parent domain... but why does this keep happening?</p><p>afm-ags.org</p>]]>
        </description>
    </item>
    <item>
        <title>update v.28.4.1.1 bug - blog pagination will disappear</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80527/update-v-28-4-1-1-bug-blog-pagination-will-disappear</link>
        <pubDate>Sun, 26 Apr 2026 07:34:55 +0000</pubDate>
        <category>Updates &amp; Changelog</category>
        <dc:creator>web_monkey</dc:creator>
        <guid isPermaLink="false">80527@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hi,</p><p>Blog pagination will disappear after updating to v.28.4.1.1 </p><p><br /></p><div>
    <div>
        <a href="https://forum.muffingroup.com/betheme/uploads/671/WD89PZIC04VG.png" rel="nofollow noopener" target="_blank">
            <img src="https://forum.muffingroup.com/betheme/uploads/671/WD89PZIC04VG.png" alt="{73D4B385-A10D-40FA-A4D0-B105D4744039}.png" />
        </a>
    </div>
</div>
<p><br /></p><p>Please advise</p>]]>
        </description>
    </item>
    <item>
        <title>After updating 28.4.11 -Menu has disappeared completely!! Not impressed</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80522/after-updating-28-4-11-menu-has-disappeared-completely-not-impressed</link>
        <pubDate>Fri, 24 Apr 2026 17:42:59 +0000</pubDate>
        <category>Updates &amp; Changelog</category>
        <dc:creator>zadil786</dc:creator>
        <guid isPermaLink="false">80522@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hi</p><p>Can someone urgently contact me regarding my website, www.strommergroup.com, after the update has lost the template menu!</p><p>Please can you contact me. Thank you.</p><p>Kind regards</p><p>Zahid</p>]]>
        </description>
    </item>
    <item>
        <title>Theme Updates</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80497/theme-updates</link>
        <pubDate>Mon, 20 Apr 2026 20:05:39 +0000</pubDate>
        <category>Updates &amp; Changelog</category>
        <dc:creator>annmills</dc:creator>
        <guid isPermaLink="false">80497@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>I uploaded the latest theme update as my site showed a critical site error. Our client site is functioning, but the top menu is not post this update 28.4.1.1. The site is: <a href="https://njedreport.com/" rel="nofollow">https://njedreport.com/</a>. Could you advise if there are any residual issues with the patch? Thank you.</p>]]>
        </description>
    </item>
    <item>
        <title>Licence substitution</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80448/licence-substitution</link>
        <pubDate>Thu, 09 Apr 2026 14:36:04 +0000</pubDate>
        <category>Updates &amp; Changelog</category>
        <dc:creator>enricobottelli</dc:creator>
        <guid isPermaLink="false">80448@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hello, we&rsquo;re writing to you because we&rsquo;ve purchased a new licence, as ours had expired some time ago and needed updating, but we can&rsquo;t enter the new purchase code, and when we try to deregister the theme, it won&rsquo;t let us. We&rsquo;re stuck &ndash; could you help us?</p>]]>
        </description>
    </item>
    <item>
        <title>BeTheme License Keeps Deactivating Periodically</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80465/betheme-license-keeps-deactivating-periodically</link>
        <pubDate>Mon, 13 Apr 2026 17:19:22 +0000</pubDate>
        <category>Updates &amp; Changelog</category>
        <dc:creator>rosuflorinionut</dc:creator>
        <guid isPermaLink="false">80465@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hello,</p><p>I am experiencing a recurring issue with my BeTheme license on my website.</p><p>Approximately every 2&ndash;3 weeks, the theme prompts me to activate the license again, even though I have already entered a valid license key. After reactivating, everything works correctly, but the issue keeps repeating.</p><p>This has been happening consistently for about 2-3 months, during this period is that I upgraded my hosting plan</p><p>Why the license keeps getting deactivated and what to do?</p><p><br /></p><p>website: solariimuntenia.ro</p><p><br /></p><p>Thank you</p><p>Florin</p>]]>
        </description>
    </item>
    <item>
        <title>Aggiornamento tema</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80430/aggiornamento-tema</link>
        <pubDate>Tue, 07 Apr 2026 09:17:27 +0000</pubDate>
        <category>Updates &amp; Changelog</category>
        <dc:creator>notifichelaboratoriodigitale</dc:creator>
        <guid isPermaLink="false">80430@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Buongiorno,</p><p>attualmente sul mio sito &egrave; installata una versione datata del tema (versione 26.3.4.1) che presenta alcune vulnerabilit&agrave;, quindi ho la necessit&agrave; di aggiornarla.</p><p>Ho provato a eseguire l&rsquo;aggiornamento tramite la procedura standard, ma compare un errore (allego screenshot per riferimento).</p><p>Per questo motivo ho acquistato una nuova licenza con l&rsquo;intenzione di reinstallare il tema nella versione pi&ugrave; recente, ma anche questa operazione non va a buon fine.</p><p>Potreste indicarmi come procedere correttamente per aggiornare il tema?</p><div data-embedjson="{&quot;url&quot;:&quot;https:\/\/forum.muffingroup.com\/betheme\/uploads\/811\/OESKWC8FLG8U.png&quot;,&quot;name&quot;:&quot;Screenshot 2026-04-07 alle 11.05.20.png&quot;,&quot;type&quot;:&quot;image\/png&quot;,&quot;size&quot;:1365896,&quot;width&quot;:2634,&quot;height&quot;:1274,&quot;embedType&quot;:&quot;file&quot;}">
    <a rel="nofollow" href="https://forum.muffingroup.com/betheme/uploads/811/OESKWC8FLG8U.png" download="" aria-label="Screenshot 2026-04-07 alle 11.05.20.png">
        Screenshot 2026-04-07 alle 11.05.20.png
    </a>
</div><p><br /></p><p>Grazie in anticipo per il supporto.</p>]]>
        </description>
    </item>
    <item>
        <title>The site is behaving strangely.</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80366/the-site-is-behaving-strangely</link>
        <pubDate>Tue, 24 Mar 2026 23:54:58 +0000</pubDate>
        <category>Updates &amp; Changelog</category>
        <dc:creator>eric31</dc:creator>
        <guid isPermaLink="false">80366@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<div data-embedjson="{&quot;url&quot;:&quot;https:\/\/forum.muffingroup.com\/betheme\/uploads\/560\/TJJEZEVCPMV1.png&quot;,&quot;name&quot;:&quot;\u05e6\u05d9\u05dc\u05d5\u05dd \u05de\u05e1\u05da 2026-03-25 015405.png&quot;,&quot;type&quot;:&quot;image\/png&quot;,&quot;size&quot;:400191,&quot;width&quot;:1849,&quot;height&quot;:982,&quot;embedType&quot;:&quot;file&quot;}">
    <a rel="nofollow" href="https://forum.muffingroup.com/betheme/uploads/560/TJJEZEVCPMV1.png" download="" aria-label="צילום מסך 2026-03-25 015405.png">
        צילום מסך 2026-03-25 015405.png
    </a>
</div><p>Hello, I bought your template, and it&#39;s just awesome!</p><p>The thing is, while I was editing the template options, for some reason the site took on a strange shape (attaching a picture), and no button clicked, and when I log in through another browser, the site is normal but I get the message &quot;Wonderful things are waiting on the horizon</p><p>Something is brewing! We&#39;re working on our store, and it will be launched soon!&quot;</p><p>And I didn&#39;t edit anything related to the design! I just messed around with the translation of the words and stuff like that... What did I do wrong?</p><p><br /></p><p>Thanks.</p>]]>
        </description>
    </item>
    <item>
        <title>Is It Possible to Connect BeBuilder or Elementor with Cloud Code to Automatically Generate Pages?</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80313/is-it-possible-to-connect-bebuilder-or-elementor-with-cloud-code-to-automatically-generate-pages</link>
        <pubDate>Fri, 13 Mar 2026 13:30:11 +0000</pubDate>
        <category>Updates &amp; Changelog</category>
        <dc:creator>giacomojcassano</dc:creator>
        <guid isPermaLink="false">80313@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hi everyone,</p><p>I&rsquo;m working with <strong>BeTheme</strong> and using <strong>BeBuilder / Elementor</strong>, and I&rsquo;d like to know if there&rsquo;s a way to connect them with <strong>Cloud Code</strong> (or a similar automation tool) to automatically generate pages based on predefined templates.</p><p>My goal is to automate the creation of multiple pages by pulling data from an external source and letting the page builder generate the layout.</p><p>Does anyone know if BeBuilder or Elementor supports this type of integration, or if there are recommended tools, APIs, or workflows to achieve it?</p><p>Thanks in advance!</p><p>Giacomo</p>]]>
        </description>
    </item>
    <item>
        <title>Error in theme-shortcodes.php after update wordpress and betheme</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80299/error-in-theme-shortcodes-php-after-update-wordpress-and-betheme</link>
        <pubDate>Wed, 11 Mar 2026 11:55:17 +0000</pubDate>
        <category>Updates &amp; Changelog</category>
        <dc:creator>foxtrotstudio</dc:creator>
        <guid isPermaLink="false">80299@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>After updating wordpress and betheme Im getting following errors.</p><p>I dont use child theme i didnt change  <strong>theme-shortcodes.php file </strong></p><p>prior to update everything was great </p><p>Please advise </p><p>Errors:</p><p><strong>Warning</strong>: Undefined array key &quot;file&quot; in&nbsp;<strong>/web/htdocs/www.xtaticwines.com/home/wp-content/themes/betheme/functions/theme-shortcodes.php</strong>&nbsp;on line&nbsp;<strong>5268</strong></p><p><br /></p><p><strong>Warning</strong>: Trying to access array offset on value of type null in&nbsp;<strong>/web/htdocs/www.xtaticwines.com/home/wp-content/themes/betheme/functions/theme-shortcodes.php</strong>&nbsp;on line&nbsp;<strong>5268</strong></p><p><br /></p><p><strong>Warning</strong>: Undefined array key &quot;file&quot; in&nbsp;<strong>/web/htdocs/www.xtaticwines.com/home/wp-content/themes/betheme/functions/theme-shortcodes.php</strong>&nbsp;on line&nbsp;<strong>5278</strong></p><p><br /></p><p><strong>Warning</strong>: Trying to access array offset on value of type null in&nbsp;<strong>/web/htdocs/www.xtaticwines.com/home/wp-content/themes/betheme/functions/theme-shortcodes.php</strong>&nbsp;on line&nbsp;<strong>5278</strong></p><p>Upload error: Unknown error</p>]]>
        </description>
    </item>
    <item>
        <title>We need to be able to use the license on a staging site</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80295/we-need-to-be-able-to-use-the-license-on-a-staging-site</link>
        <pubDate>Tue, 10 Mar 2026 18:58:50 +0000</pubDate>
        <category>Updates &amp; Changelog</category>
        <dc:creator>janenoel2</dc:creator>
        <guid isPermaLink="false">80295@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>We use two different Wordpress Hosting systems that have a staging site and a production sight. It causes constant problems when we have issues with licensing between the two.</p><p>Is there something that could be done to allow two domains to have the same licensing?</p><p>I&#39;ve tried unlicensing the production site so I can license staging, but I can&#39;t remove it without removing the theme completely from the production site. That really defeats the point of a staging site.</p>]]>
        </description>
    </item>
    <item>
        <title>Responsive - Color inversion on iPhone</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80284/responsive-color-inversion-on-iphone</link>
        <pubDate>Fri, 06 Mar 2026 16:17:31 +0000</pubDate>
        <category>Updates &amp; Changelog</category>
        <dc:creator>Imaginity</dc:creator>
        <guid isPermaLink="false">80284@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hi Phill,</p><p>We are working on a website and everything looks great but we have a problem when navigating from iPhone (Safari and also Chrome and Duck-Duck-Go)</p><p>How this part is viewed on iPhone: background light, image darkened</p><p>The Adevit image has grey background while the actual background is white</p><p>(Actual image shown on iPhone: greyed picture, white background)</p><div>
    <div>
        <a href="https://forum.muffingroup.com/betheme/uploads/979/A2FT81N3QA5E.jpg" rel="nofollow noopener" target="_blank">
            <img src="https://forum.muffingroup.com/betheme/uploads/979/A2FT81N3QA5E.jpg" alt="Actual-iPhone-Picture.jpg" />
        </a>
    </div>
</div>
<p><br /></p><p>This is how it should be seen, and this is how it is shown in Bebuilder showing responsive-mobile</p><p>(Provided content in website: Image has white background, webpage has light-grey background)</p><div>
    <div>
        <a href="https://forum.muffingroup.com/betheme/uploads/830/QUXWFWBZSWVZ.jpg" rel="nofollow noopener" target="_blank">
            <img src="https://forum.muffingroup.com/betheme/uploads/830/QUXWFWBZSWVZ.jpg" alt="Bebuilder-mobile-preview.jpg" />
        </a>
    </div>
</div>
<p><br /></p><p>There are two issues: </p><ol><li>Image inversion (image should be white and not greyed)</li><li>Background inversion: it should be light grey and not white</li></ol><p><br /></p><p>Website url: </p><p><a href="https://u7o.3f9.myftpupload.com/" rel="nofollow">https://u7o.3f9.myftpupload.com/</a></p><p><br /></p><p>Please advise, thanks!</p>]]>
        </description>
    </item>
    <item>
        <title>Problems with the latest version BeTheme 28.3</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80244/problems-with-the-latest-version-betheme-28-3</link>
        <pubDate>Thu, 26 Feb 2026 13:36:33 +0000</pubDate>
        <category>Updates &amp; Changelog</category>
        <dc:creator>pulgaradamse</dc:creator>
        <guid isPermaLink="false">80244@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hi</p><p>I&#39;m having the following problems with the latest version of BeTheme.</p><p>1. It rejects the Contact 7 plugin, causing the site to crash intermittently upon loading and displaying the following error:</p><p>2. When changing and saving options from Theme Options, it generates the error:</p><p>&ldquo;Not Acceptable. An appropriate representation of the requested resource could not be found on this server.&rdquo;</p><p>This is a conflict with the ModSecurity feature in cPanel; it&#39;s as if it&#39;s generating a dangerous or malicious script for the server.</p><p>IMPORTANT DETAIL: I have two sites with the same tools on the same server. One uses version 27.5 and has no problems whatsoever, while the one I mentioned above is the newer version of BeTheme.</p><p>Is anyone else experiencing this problem?</p><p>I would appreciate any help from Muffingroup support.</p>]]>
        </description>
    </item>
    <item>
        <title>Elementor Pro</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80235/elementor-pro</link>
        <pubDate>Wed, 25 Feb 2026 09:04:38 +0000</pubDate>
        <category>Updates &amp; Changelog</category>
        <dc:creator>HarrisonBuck</dc:creator>
        <guid isPermaLink="false">80235@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hi there, do you give updates for the elementor pro plugin - keeps say it is unauthorised.</p>]]>
        </description>
    </item>
    <item>
        <title>Update from v15 to v28</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80162/update-from-v15-to-v28</link>
        <pubDate>Wed, 11 Feb 2026 14:00:01 +0000</pubDate>
        <category>Updates &amp; Changelog</category>
        <dc:creator>jairo</dc:creator>
        <guid isPermaLink="false">80162@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hi</p><p>I started to support a website which ran Betheme 15.x and I purchase a license and updated to 28x.</p><p>Header and many pages look awful after the upgrade.</p><p>Is there any easy to fix the website ?</p><p>Thanks</p>]]>
        </description>
    </item>
    <item>
        <title>Update 28.2.2 bug</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80151/update-28-2-2-bug</link>
        <pubDate>Tue, 10 Feb 2026 06:37:26 +0000</pubDate>
        <category>Updates &amp; Changelog</category>
        <dc:creator>stefanociaccio84</dc:creator>
        <guid isPermaLink="false">80151@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>The last version 28..2.2 can&#39;t be updated, zip file is empty</p><div>
    <div>
        <a href="https://forum.muffingroup.com/betheme/uploads/715/0LE6AJNXQW7H.png" rel="nofollow noopener" target="_blank">
            <img src="https://forum.muffingroup.com/betheme/uploads/715/0LE6AJNXQW7H.png" alt="Immagine 2026-02-10 073434.png" />
        </a>
    </div>
</div>
<p><br /></p>]]>
        </description>
    </item>
    <item>
        <title>The license registration change does not work</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80123/the-license-registration-change-does-not-work</link>
        <pubDate>Thu, 05 Feb 2026 02:21:04 +0000</pubDate>
        <category>Updates &amp; Changelog</category>
        <dc:creator>tisantos</dc:creator>
        <guid isPermaLink="false">80123@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hello,</p><p>We have a bilingual website that we need to update. The current version in use is 20.9.8.3. However, the registered license belongs to a former developer with whom we no longer have contact.</p><p>We have tried several times to remove the existing registration so that we could then insert our new license and proceed with the automatic theme update. However, the registration is not removed, and no changes are reflected in the license settings.</p><p>We considered performing a manual update, but we do not have a child theme and are concerned about overwriting previous customizations.</p><p>Could you please assist us with this matter?</p><p>Our testing environment is hosted on the following domain: <a href="https://comexim.com.br/up/" rel="nofollow">https://comexim.com.br/up/</a></p><div>
    <div>
        <a href="https://forum.muffingroup.com/betheme/uploads/478/OTNA2BECBYSN.jpg" rel="nofollow noopener" target="_blank">
            <img src="https://forum.muffingroup.com/betheme/uploads/478/OTNA2BECBYSN.jpg" alt="cm1.jpg" />
        </a>
    </div>
</div>
<p><br /></p><h2></h2>]]>
        </description>
    </item>
    <item>
        <title>Update does not work</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80116/update-does-not-work</link>
        <pubDate>Wed, 04 Feb 2026 08:51:58 +0000</pubDate>
        <category>Updates &amp; Changelog</category>
        <dc:creator>yd5qsmpqvp</dc:creator>
        <guid isPermaLink="false">80116@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hello may you can help me, my update does not work like you see</p>]]>
        </description>
    </item>
    <item>
        <title>License Change</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/80058/license-change</link>
        <pubDate>Sat, 24 Jan 2026 11:10:44 +0000</pubDate>
        <category>Updates &amp; Changelog</category>
        <dc:creator>Garvanliev</dc:creator>
        <guid isPermaLink="false">80058@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hi,</p><p>after the license was registered on the development site, after the development site change the url, how to re-register the new site url with the existing license? </p><p>With the new update there should be removed all theme files to deregister theme, but this will make website fall down?</p>]]>
        </description>
    </item>
    <item>
        <title>Betheme 28.2.1 caused critical error on website</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/79893/betheme-28-2-1-caused-critical-error-on-website</link>
        <pubDate>Fri, 19 Dec 2025 03:00:31 +0000</pubDate>
        <category>Updates &amp; Changelog</category>
        <dc:creator>katashworth</dc:creator>
        <guid isPermaLink="false">79893@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hello, I having been using Betheme across 10+ websites that I develop &amp; manage since 2016.</p><p>However for the first time, the latest version of Betheme has crashed one of the website I manage, causing a critical error everytime I try to re-activate.</p><p>The website is running Wordpress 6.9, however same issue occurred with Wordpress 6.8.4</p><p>PHP 8.2 active. All plugins are up to date. </p><p>The only way I have been able to retrieve the website &amp; wp-admin access after activating Betheme, is to completely delete theme files via File Manager.</p><p>I have checked with host; and other than Betheme, all appears fine from there side. I have also tried deactivating major plugins such as Woocommerce (+extensions), but this made no difference.</p><p>I have reinstalled Betheme 28.2.1 files via File Manager. But have left Wordpress theme &quot;Twenty Twenty-Four&quot; active for now until this situation can be resolved.</p>]]>
        </description>
    </item>
    <item>
        <title>Mega Menu loading delay &amp; Custom JS not working after update</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/79955/mega-menu-loading-delay-custom-js-not-working-after-update</link>
        <pubDate>Wed, 07 Jan 2026 16:11:16 +0000</pubDate>
        <category>Updates &amp; Changelog</category>
        <dc:creator>akonektd</dc:creator>
        <guid isPermaLink="false">79955@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hello BeTheme Support Team,</p><p>we are experiencing issues on a website built with BeTheme and would appreciate your assistance so we can safely keep the theme updated without breaking functionality.</p><p><strong>Website:</strong> <a href="https://gaudeo-fit.com" rel="nofollow">https://gaudeo-fit.com</a></p><p><strong>Theme:</strong> BeTheme</p><p><strong>Issue evidence:</strong> visible in the attached video recording and photo (on the right side)</p><h3>1. Mega Menu &ndash; delayed loading</h3><p>Elements inside the <strong>Mega Menu</strong> do not load instantly. Each mega menu requires approximately <strong>1 second to fully render</strong>, which is noticeable on every hover/open action. This happens consistently across all mega menus and negatively impacts UX.</p><p>We would like to understand:</p><ul><li>Why mega menu elements are loaded with a delay</li><li>Whether this is related to lazy loading or a recent BeTheme change</li><li>How this can be optimized or disabled so mega menu content loads instantly</li></ul><h3>2. Custom JS stopped working after the latest update</h3><p>After the latest BeTheme update, <strong>custom JavaScript code stopped working correctly</strong>.</p><p>Specifically:</p><ul><li>We implemented custom JS to open a <strong>popup / quick view on mobile devices</strong></li><li>The button click event no longer triggers the popup</li><li>The same logic worked correctly before the update</li><li>No JS errors were present prior to updating</li></ul><p>We would appreciate guidance on:</p><ul><li>Changes in BeTheme JS handling or event bindings</li><li>Recommended way to hook custom JS so it remains compatible with future updates</li><li>Wheher certain BeTheme scripts now override or block custom click handlers</li></ul><h3>Goal</h3><p>Our goal is to keep BeTheme fully up to date <strong>without introducing regressions</strong>, especially related to:</p><ul><li>Mega Menu performance</li><li>Custom JS integrations</li></ul><p>Please let us know what additional information you need (WP admin access, console logs, code snippets). We will gladly provide it.</p><p>Thank you in advance for your support.</p><p>Kind regards,</p>]]>
        </description>
    </item>
    <item>
        <title>BeTheme support for Variable Fonts and Font Options in &quot;em&quot;, &quot;%&quot; and so on</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/79977/betheme-support-for-variable-fonts-and-font-options-in-em-and-so-on</link>
        <pubDate>Sat, 10 Jan 2026 06:24:26 +0000</pubDate>
        <category>Updates &amp; Changelog</category>
        <dc:creator>Astrophytum</dc:creator>
        <guid isPermaLink="false">79977@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hello,</p><p>I have two concerns:</p><p>I would like to use a variable font on my website. This has many advantages for me, since I can customize every aspect of such a typeface myself.</p><p>Is it planned that BeTheme will support this in the future?</p><p><br /></p><p>Furthermore, it is currently the case in BeTheme that in the font options, Fonts &ndash; Style &amp; Size, I can only enter values in pixels.</p><p>For example, I need values in &ldquo;em&rdquo; or percent.</p><p>It would be great if this could be possible in the future.</p><p><br /></p><p>Kind regards,</p><p>Steffen</p>]]>
        </description>
    </item>
    <item>
        <title>Add slug as dynamic data in Template</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/79870/add-slug-as-dynamic-data-in-template</link>
        <pubDate>Tue, 16 Dec 2025 11:12:53 +0000</pubDate>
        <category>Updates &amp; Changelog</category>
        <dc:creator>imessalas</dc:creator>
        <guid isPermaLink="false">79870@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hi, I think it would be a good idea to add the <strong>slug</strong> (e.g., for a category) as dynamic data.</p><p>This way, it would be available when creating a template, just like the existing dynamic data such as {title}, {content}, and {permalink}.</p><p><br /></p><div>
    <div>
        <a href="https://forum.muffingroup.com/betheme/uploads/157/TH8IRF0NWW2F.png" rel="nofollow noopener" target="_blank">
            <img src="https://forum.muffingroup.com/betheme/uploads/157/TH8IRF0NWW2F.png" alt="image.png" />
        </a>
    </div>
</div>
<p>Thank you a lot!</p>]]>
        </description>
    </item>
    <item>
        <title>Theme Update</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/79877/theme-update</link>
        <pubDate>Wed, 17 Dec 2025 09:38:04 +0000</pubDate>
        <category>Updates &amp; Changelog</category>
        <dc:creator>cristianbits</dc:creator>
        <guid isPermaLink="false">79877@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hello ,</p><p><br /></p><p>Im trying to update the BeTheme of a friend of mine , originally the website was created by someone else and they didn&#39;t share the license with my friend , now i buyed another license for him.</p><p>On the wordpress site he still has the old license and is marked as &quot;Theme is registered&quot; but when i try to update from the Dashboard , i get error:</p><p>An error occurred while updating Betheme:&nbsp;The package could not be installed. The package contains no files.</p><p>As i read on the forums this might be a problem with license identification and i must re activate the license or manually updating the theme by re-uploading it to wordpress.</p><p>i didn&#39;t upload it yet , first i tried the check license button , i insert my Purchase code and envato username but i get error: The purchase code has not been used to register Betheme or the username does not match the purchase code.</p><p><br /></p><p>What i need is a procedure on how to update the theme to the latest version and set the new license that i bought , without breaking anything or having too much of a downtime.</p><p>I do not want to recover the old license , i want to use the new one that i bought</p><p>The current installed version is: 21.7.8.1</p><p>In System Status everything is in green</p><p>the domain name is: everart.ro</p><p><br /></p><p>Thank you in advance</p>]]>
        </description>
    </item>
    <item>
        <title>Alternative for Google Maps with Advanced Maps item in Betheme</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/79872/alternative-for-google-maps-with-advanced-maps-item-in-betheme</link>
        <pubDate>Tue, 16 Dec 2025 13:09:46 +0000</pubDate>
        <category>Updates &amp; Changelog</category>
        <dc:creator>webbabe</dc:creator>
        <guid isPermaLink="false">79872@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Would be a great idea to have an alternative map provider, like for example open street maps, to be chosen besides Google Maps with the Advanced Map Item of Betheme. Google Maps will cost money and setting up an account is not easy anymore.</p>]]>
        </description>
    </item>
    <item>
        <title>Request for Confirmation: BeTheme Compatibility with WordPress 6.9</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/79793/request-for-confirmation-betheme-compatibility-with-wordpress-6-9</link>
        <pubDate>Tue, 02 Dec 2025 23:44:19 +0000</pubDate>
        <category>Updates &amp; Changelog</category>
        <dc:creator>gnorimaki</dc:creator>
        <guid isPermaLink="false">79793@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hi,</p><p>I am considering updating my website to&nbsp;<strong>WordPress 6.9</strong>&nbsp;and I need to confirm the&nbsp;<strong>official compatibility status of BeTheme with this version</strong>.</p><p><br /></p><p>My current environment:</p><ul><li><strong>BeTheme version 28.1.12</strong></li><li><strong>WordPress 6.8.3</strong></li><li><strong>PHP 8.4</strong></li></ul><p><br /></p><p>Before updating the live site, could you please confirm:</p><ol><li>Whether&nbsp;<strong>BeTheme 28.1.12 is fully compatible with WordPress 6.9</strong>,</li><li>If there are any&nbsp;<strong>known issues or limitations</strong>,</li><li>And whether you recommend updating&nbsp;<strong>BeTheme before or after</strong>&nbsp;updating WordPress.</li></ol><p><br /></p><p>I would also appreciate knowing if there is an upcoming&nbsp;<strong>theme update specifically aimed at ensuring compatibility</strong>with WordPress 6.9.</p><p><br /></p><p>Thanks.</p>]]>
        </description>
    </item>
    <item>
        <title>Plugins update error</title>
        <link>https://forum.muffingroup.com/betheme/index.php?p=/discussion/79772/plugins-update-error</link>
        <pubDate>Fri, 28 Nov 2025 07:27:05 +0000</pubDate>
        <category>Updates &amp; Changelog</category>
        <dc:creator>primesystem</dc:creator>
        <guid isPermaLink="false">79772@/betheme/index.php?p=/discussions</guid>
        <description><![CDATA[<p>From some time after theme update, plugins in beTheme --&gt; Plugins shows wrong version, and won&#39;t update from panel. It&#39;s strange, because after uninstall and install plugin again we have the newest version, but in this panel still show old version without possibility of update. </p><p><br /></p><p>Right now in panel I have installed WP-Bakery Version:&nbsp;8.6.1 but when I enter to plug-in about page there is 8.7, and BeTheme panel don&#39;t  show any updates.</p>]]>
        </description>
    </item>
   </channel>
</rss>
