<?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/">
	<channel>
		<title><![CDATA[WHMCS Services Forum - Domain Auction]]></title>
		<link>https://forum.whmcsservices.net/</link>
		<description><![CDATA[WHMCS Services Forum - https://forum.whmcsservices.net]]></description>
		<pubDate>Fri, 10 Apr 2026 10:58:36 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[How do I add the code to Zomex Template]]></title>
			<link>https://forum.whmcsservices.net/showthread.php?tid=365</link>
			<pubDate>Mon, 29 Dec 2025 19:41:53 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.whmcsservices.net/member.php?action=profile&uid=7">wssupport</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.whmcsservices.net/showthread.php?tid=365</guid>
			<description><![CDATA[Depending on what it's for you can add it as a link in:<br />
<br />
/templates/template_name/includes/menu.tpl for the main menu or the following for the top right toolbar:<br />
<br />
/templates/template_name/includes/toolbar.tpl<br />
<br />
&lt;li&gt;&lt;a href="{&#36;WEB_ROOT}/index.php?m=domain_auction"&gt;My Domain Bids&lt;/a&gt;&lt;/li&gt;<br />
<br />
&lt;li&gt;&lt;a href="{&#36;WEB_ROOT}/domainmarket.php"&gt;Domain Auction&lt;/a&gt;&lt;/li&gt;]]></description>
			<content:encoded><![CDATA[Depending on what it's for you can add it as a link in:<br />
<br />
/templates/template_name/includes/menu.tpl for the main menu or the following for the top right toolbar:<br />
<br />
/templates/template_name/includes/toolbar.tpl<br />
<br />
&lt;li&gt;&lt;a href="{&#36;WEB_ROOT}/index.php?m=domain_auction"&gt;My Domain Bids&lt;/a&gt;&lt;/li&gt;<br />
<br />
&lt;li&gt;&lt;a href="{&#36;WEB_ROOT}/domainmarket.php"&gt;Domain Auction&lt;/a&gt;&lt;/li&gt;]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Where can I edit the Email Template?]]></title>
			<link>https://forum.whmcsservices.net/showthread.php?tid=364</link>
			<pubDate>Mon, 29 Dec 2025 19:40:42 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.whmcsservices.net/member.php?action=profile&uid=7">wssupport</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.whmcsservices.net/showthread.php?tid=364</guid>
			<description><![CDATA[You can edit the email template Go to Setup &gt; Email Templates and they you find 3 templates<br />
<br />
WS Auction Contact Seller<br />
WS Auction Domain Overbid<br />
WS Auction Won]]></description>
			<content:encoded><![CDATA[You can edit the email template Go to Setup &gt; Email Templates and they you find 3 templates<br />
<br />
WS Auction Contact Seller<br />
WS Auction Domain Overbid<br />
WS Auction Won]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Remove menu]]></title>
			<link>https://forum.whmcsservices.net/showthread.php?tid=363</link>
			<pubDate>Mon, 29 Dec 2025 19:40:07 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.whmcsservices.net/member.php?action=profile&uid=7">wssupport</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.whmcsservices.net/showthread.php?tid=363</guid>
			<description><![CDATA[You can use this codes to remove items from menu:<br />
<br />
<br />
&lt;?php<br />
function adddomainauctionmenuremove()<br />
{<br />
    if (isset(&#36;_SESSION['uid'])) {<br />
<br />
        &#36;secondaryNavbar = Menu::primaryNavbar();<br />
        if (!is_null(&#36;secondaryNavbar) &amp;&amp; !is_null(&#36;secondaryNavbar['Domains'])) {<br />
            if(!is_null(&#36;secondaryNavbar['Domains']-&gt;getChild('domain_auction_1'))){<br />
                &#36;secondaryNavbar['Domains']-&gt;removeChild('domain_auction_1');<br />
                &#36;secondaryNavbar['Domains']-&gt;removeChild('domain_auction_2');<br />
            }<br />
    }<br />
}<br />
add_hook("ClientAreaSecondaryNavbar", 100, "adddomainauctionmenuremove");<br />
<br />
<br />
<span style="color: #353c41;" class="mycode_color"><span style="font-family: Lato, 'Helvetica Neue', Helvetica, Arial, sans-serif;" class="mycode_font">Save under /includes/hooks/&lt;any_filename&gt;.php</span></span><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://forum.whmcsservices.net/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=6" target="_blank" title="">da.zip</a> (Size: 350 bytes / Downloads: 0)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[You can use this codes to remove items from menu:<br />
<br />
<br />
&lt;?php<br />
function adddomainauctionmenuremove()<br />
{<br />
    if (isset(&#36;_SESSION['uid'])) {<br />
<br />
        &#36;secondaryNavbar = Menu::primaryNavbar();<br />
        if (!is_null(&#36;secondaryNavbar) &amp;&amp; !is_null(&#36;secondaryNavbar['Domains'])) {<br />
            if(!is_null(&#36;secondaryNavbar['Domains']-&gt;getChild('domain_auction_1'))){<br />
                &#36;secondaryNavbar['Domains']-&gt;removeChild('domain_auction_1');<br />
                &#36;secondaryNavbar['Domains']-&gt;removeChild('domain_auction_2');<br />
            }<br />
    }<br />
}<br />
add_hook("ClientAreaSecondaryNavbar", 100, "adddomainauctionmenuremove");<br />
<br />
<br />
<span style="color: #353c41;" class="mycode_color"><span style="font-family: Lato, 'Helvetica Neue', Helvetica, Arial, sans-serif;" class="mycode_font">Save under /includes/hooks/&lt;any_filename&gt;.php</span></span><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://forum.whmcsservices.net/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=6" target="_blank" title="">da.zip</a> (Size: 350 bytes / Downloads: 0)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[FAQ's]]></title>
			<link>https://forum.whmcsservices.net/showthread.php?tid=362</link>
			<pubDate>Mon, 29 Dec 2025 19:37:50 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.whmcsservices.net/member.php?action=profile&uid=7">wssupport</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.whmcsservices.net/showthread.php?tid=362</guid>
			<description><![CDATA[1. What happened when the domain auction end and the client pay the invoice?<br />
<span style="font-weight: bold;" class="mycode_b">ANS:</span> It will automatically move that domain name to his/her account<br />
<br />
2. Who is responsible to move the domain name to they own registrar?<br />
<span style="font-weight: bold;" class="mycode_b">ANS:</span> He/She need to contact each other and contact they own Domain registrar]]></description>
			<content:encoded><![CDATA[1. What happened when the domain auction end and the client pay the invoice?<br />
<span style="font-weight: bold;" class="mycode_b">ANS:</span> It will automatically move that domain name to his/her account<br />
<br />
2. Who is responsible to move the domain name to they own registrar?<br />
<span style="font-weight: bold;" class="mycode_b">ANS:</span> He/She need to contact each other and contact they own Domain registrar]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Compatible Template]]></title>
			<link>https://forum.whmcsservices.net/showthread.php?tid=361</link>
			<pubDate>Mon, 29 Dec 2025 19:37:05 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.whmcsservices.net/member.php?action=profile&uid=7">wssupport</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.whmcsservices.net/showthread.php?tid=361</guid>
			<description><![CDATA[This on the themes that work with this module.<br />
<br />
Zomex (Latest Version) <a href="https://www.whmcsservices.com/zomex.php" target="_blank" rel="noopener" class="mycode_url"><span style="color: #0072bc;" class="mycode_color">Click Here</span></a><br />
ThemeMetro (Latest Version) <a href="https://www.whmcsservices.com/thememetro.php" target="_blank" rel="noopener" class="mycode_url"><span style="color: #0072bc;" class="mycode_color">Click Here</span></a><br />
Impressive Themes (Latest Version) <a href="https://www.whmcsservices.com/impressivethemes.php" target="_blank" rel="noopener" class="mycode_url"><span style="color: #0072bc;" class="mycode_color">Click Here</span></a><br />
SwiftModders (Latest Version) <a href="https://www.whmcsservices.com/swiftmodders.php" target="_blank" rel="noopener" class="mycode_url"><span style="color: #0072bc;" class="mycode_color">Click Here</span></a><br />
ThemeLooks (Latest Version) <a href="https://www.whmcsservices.com/themelooks.php" target="_blank" rel="noopener" class="mycode_url"><span style="color: #0072bc;" class="mycode_color">Click Here</span></a><br />
RS Studio (Latest Version) <a href="https://cturl.net/rsstudio" target="_blank" rel="noopener" class="mycode_url"><span style="color: #0072bc;" class="mycode_color">Click Here</span></a><br />
AA Layer (Latest Version) <a href="https://www.whmcsservices.com/aalayer.php" target="_blank" rel="noopener" class="mycode_url"><span style="color: #0072bc;" class="mycode_color">Click Here</span></a><br />
Lara, WHMCS Admin (Latest Version) <a href="https://cturl.net/lara" target="_blank" rel="noopener" class="mycode_url"><span style="color: #0072bc;" class="mycode_color">Click Here</span></a><br />
<br />
Other Themes are not fully tested ye,t so I am not sure if it works or not. You can contact me first <a href="https://www.whmcsservices.com/members/submitticket.php?step=2&amp;deptid=1" target="_blank" rel="noopener" class="mycode_url"><span style="color: #0072bc;" class="mycode_color">Click Here</span></a>]]></description>
			<content:encoded><![CDATA[This on the themes that work with this module.<br />
<br />
Zomex (Latest Version) <a href="https://www.whmcsservices.com/zomex.php" target="_blank" rel="noopener" class="mycode_url"><span style="color: #0072bc;" class="mycode_color">Click Here</span></a><br />
ThemeMetro (Latest Version) <a href="https://www.whmcsservices.com/thememetro.php" target="_blank" rel="noopener" class="mycode_url"><span style="color: #0072bc;" class="mycode_color">Click Here</span></a><br />
Impressive Themes (Latest Version) <a href="https://www.whmcsservices.com/impressivethemes.php" target="_blank" rel="noopener" class="mycode_url"><span style="color: #0072bc;" class="mycode_color">Click Here</span></a><br />
SwiftModders (Latest Version) <a href="https://www.whmcsservices.com/swiftmodders.php" target="_blank" rel="noopener" class="mycode_url"><span style="color: #0072bc;" class="mycode_color">Click Here</span></a><br />
ThemeLooks (Latest Version) <a href="https://www.whmcsservices.com/themelooks.php" target="_blank" rel="noopener" class="mycode_url"><span style="color: #0072bc;" class="mycode_color">Click Here</span></a><br />
RS Studio (Latest Version) <a href="https://cturl.net/rsstudio" target="_blank" rel="noopener" class="mycode_url"><span style="color: #0072bc;" class="mycode_color">Click Here</span></a><br />
AA Layer (Latest Version) <a href="https://www.whmcsservices.com/aalayer.php" target="_blank" rel="noopener" class="mycode_url"><span style="color: #0072bc;" class="mycode_color">Click Here</span></a><br />
Lara, WHMCS Admin (Latest Version) <a href="https://cturl.net/lara" target="_blank" rel="noopener" class="mycode_url"><span style="color: #0072bc;" class="mycode_color">Click Here</span></a><br />
<br />
Other Themes are not fully tested ye,t so I am not sure if it works or not. You can contact me first <a href="https://www.whmcsservices.com/members/submitticket.php?step=2&amp;deptid=1" target="_blank" rel="noopener" class="mycode_url"><span style="color: #0072bc;" class="mycode_color">Click Here</span></a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Installation Instructions]]></title>
			<link>https://forum.whmcsservices.net/showthread.php?tid=137</link>
			<pubDate>Sat, 15 Nov 2025 15:29:05 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.whmcsservices.net/member.php?action=profile&uid=1">whmcsservices</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.whmcsservices.net/showthread.php?tid=137</guid>
			<description><![CDATA[1. Installation Instructions<br />
<br />
1 - Upload the entire folder to your WHMCS root directory - if you experience problems, try uploading in binary mode. However, do not upload the “upload” folder, just the files inside of it!<br />
2 - Login to the admin area and go to SETUP &gt; <span style="font-weight: bold;" class="mycode_b">ADDON MODULES</span><br />
3 - In the Addons page, you will see the Domain Auction. Click Activate, then click Configure to see the options<br />
<img src="https://forum.whmcsservices.net/cn/da.png" loading="lazy"  alt="[Image: da.png]" class="mycode_img" /><br />
4 - Change your_template to the directory name of your WHMCS template (found under whmcs_path/templates/), e.g, orbit, Croster, Lagom 2, etc.<br />
5 - Go to ADDONS &gt; <span style="font-weight: bold;" class="mycode_b">Domain Auction</span> you can set everything you need<br />
6 - See the auction go whmcsurl.com/domainmarket.php<br />
7 – The client starts the auction by clicking on Domains &gt; My Domain Bids<br />
<br />
<img src="https://forum.whmcsservices.net/cn/da1.png" loading="lazy"  alt="[Image: da1.png]" class="mycode_img" />]]></description>
			<content:encoded><![CDATA[1. Installation Instructions<br />
<br />
1 - Upload the entire folder to your WHMCS root directory - if you experience problems, try uploading in binary mode. However, do not upload the “upload” folder, just the files inside of it!<br />
2 - Login to the admin area and go to SETUP &gt; <span style="font-weight: bold;" class="mycode_b">ADDON MODULES</span><br />
3 - In the Addons page, you will see the Domain Auction. Click Activate, then click Configure to see the options<br />
<img src="https://forum.whmcsservices.net/cn/da.png" loading="lazy"  alt="[Image: da.png]" class="mycode_img" /><br />
4 - Change your_template to the directory name of your WHMCS template (found under whmcs_path/templates/), e.g, orbit, Croster, Lagom 2, etc.<br />
5 - Go to ADDONS &gt; <span style="font-weight: bold;" class="mycode_b">Domain Auction</span> you can set everything you need<br />
6 - See the auction go whmcsurl.com/domainmarket.php<br />
7 – The client starts the auction by clicking on Domains &gt; My Domain Bids<br />
<br />
<img src="https://forum.whmcsservices.net/cn/da1.png" loading="lazy"  alt="[Image: da1.png]" class="mycode_img" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Change Log]]></title>
			<link>https://forum.whmcsservices.net/showthread.php?tid=136</link>
			<pubDate>Sat, 15 Nov 2025 15:26:45 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.whmcsservices.net/member.php?action=profile&uid=1">whmcsservices</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.whmcsservices.net/showthread.php?tid=136</guid>
			<description><![CDATA[<span style="font-weight: bold;" class="mycode_b">Version: 1.3.2 Released (01/02/2026)</span><br />
Maintenance<br />
<br />
Updated Support WHMCS 9.x<br />
Updated Improve License System<br />
Updated Remove Support for WHMCS V8.10 to 8.11<br />
Updated Remove Support for PHP 8.1<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Version: 1.3.1 Released (05/02/2025)</span><br />
Maintenance<br />
<br />
Added Settings for the above-mentioned points into the admin side<br />
Added SRP and Notice Board Content<br />
Added Search Function of the domain stop sales[/font]<br />
Updated Remove Support for PHP 7.4<br />
Fixed decimal values are now not allowed at the time of adding a domain for auction, and also while the bid is<br />
Fixed Price format change on the domain auction page<br />
Fixed Support <span style="font-weight: bold;" class="mycode_b">WHMCS 8.13. x</span><br />
<br />
<span style="font-weight: bold;" class="mycode_b">Version: 1.3.0 Released (21/31/2024)</span><br />
Minor<br />
<br />
Added Domain Auction link under Store Menu<br />
Added Domain Auction link on the home page product subpanel<br />
Added functionality to submit a domain (not registered on the whmcs) for auction<br />
Added (not registered on your WHMCS System)<br />
Added Auction Noticeboard<br />
Updated a new settings tab on the admin side, allowing admin users to enable or disable the display of columns (Domain has website &amp; Domain Age) on the auction page client-side<br />
Updated Clients can set the domain bid stop date and specify whether a domain has a website (yes/no) while submitting auction domain details that are not registered on WHMCS<br />
Updated Remove Support for WHMCS 8.7 to 8.9<br />
Fixed Support <span style="font-weight: bold;" class="mycode_b">WHMCS 8.11.x &amp; 8.12</span><br />
Fixed. Due to a lack of API and not knowing which domain the user could submit, the admin needs to manually process for assigning domains, Register, transferring due date, and all other functions<br />
Fixed removed USD from the amount showing on the auction page<br />
Fixed support for ionCube Loader v14<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Version: 1.2.6 Released (01/25/2024)</span><br />
Maintenance<br />
<br />
Fixed Domain Market Of PHP 8.1<br />
Fixed Support WHMCS 8.9 &amp; 10.x<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Version: 1.2.5 Released (01/10/2024)</span><br />
Maintenance<br />
<br />
Fixed support for ionCube Loader v13<br />
Updated work with License System<br />
Updated Improve ionCube Loader<br />
Updated Remove Support for WHMCS V8.4 to 8.6<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Version: 1.2.4 Released (10/26/2023)</span><br />
Maintenance<br />
<br />
Fixed when a Client had no Domain and an error was thrown<br />
Fixed the issue with TLD extensions that contain two dots not functioning properly in 'Skip Validation TLDs'<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Version: 1.2.3 Released (12/27/2022)</span><br />
Maintenance<br />
<br />
Fixed Domain Auction list<br />
Fixed Multi Currency<br />
Fixed support for ionCube Loader v12 and PHP 8.1<br />
Updated Remove Support for PHP 7.1 to 7.3<br />
Updated Remove Support for WHMCS V8.1. x to 8.3.x<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Version: 1.2.2 Released (09/02/2022)</span><br />
Maintenance<br />
<br />
Fixed multi-currency support<br />
Fixed Issue with missing translate vars<br />
Fixed Issue with loading the wrong language file on the first load<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Version: 1.2.1 Released (07/1/2022)</span><br />
Maintenance<br />
<br />
Fixed Issue with the twice sales domain<br />
Fixed Domain favorites list moved to tabs<br />
Updated Disable Sale By Contact<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Version: 1.2.0 Released (05/12/2022)</span><br />
Minor<br />
<br />
Added Mark Domains as favorites<br />
Added Filter Domain<br />
Added Deposit when adding a bid<br />
Added Auto Category when domain adding<br />
Fixed Domains Auctions Page template changes and issues with currency<br />
Fixed Issue with the domain market list height<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Version: 1.1.2 Released (01/10/2021)</span><br />
Maintenance<br />
<br />
Fixed Empty Data for Chart<br />
Fixed issue with parse domains<br />
Fixed Lagom 2 Themes<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Version: 1.1.1 Released (10/28/2021)</span><br />
Maintenance<br />
<br />
Fixed Problems with Bootstrap 4<br />
Updated About page<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Version: 1.1.0 Released (09/25/2020)</span><br />
Minor<br />
<br />
Added skip validation<br />
Added Total Based Commission<br />
Updated Remove v4 Admin theme from distribution<br />
Updated Remove Support for PHP 5.6 to 7.0<br />
Fixed Problem with template buttons<br />
Fixed Problem with WHMCS V8<br />
Fixed Remove some words<br />
Fixed Problem with PHP 7.x<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Version: 1.0.1 Released (10/15/2018)</span><br />
Maintenance<br />
<br />
Fixed redeclare functions<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Version: 1.0.0 Released (10/12/2018)</span><br />
Stable<br />
<br />
New Initial Release]]></description>
			<content:encoded><![CDATA[<span style="font-weight: bold;" class="mycode_b">Version: 1.3.2 Released (01/02/2026)</span><br />
Maintenance<br />
<br />
Updated Support WHMCS 9.x<br />
Updated Improve License System<br />
Updated Remove Support for WHMCS V8.10 to 8.11<br />
Updated Remove Support for PHP 8.1<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Version: 1.3.1 Released (05/02/2025)</span><br />
Maintenance<br />
<br />
Added Settings for the above-mentioned points into the admin side<br />
Added SRP and Notice Board Content<br />
Added Search Function of the domain stop sales[/font]<br />
Updated Remove Support for PHP 7.4<br />
Fixed decimal values are now not allowed at the time of adding a domain for auction, and also while the bid is<br />
Fixed Price format change on the domain auction page<br />
Fixed Support <span style="font-weight: bold;" class="mycode_b">WHMCS 8.13. x</span><br />
<br />
<span style="font-weight: bold;" class="mycode_b">Version: 1.3.0 Released (21/31/2024)</span><br />
Minor<br />
<br />
Added Domain Auction link under Store Menu<br />
Added Domain Auction link on the home page product subpanel<br />
Added functionality to submit a domain (not registered on the whmcs) for auction<br />
Added (not registered on your WHMCS System)<br />
Added Auction Noticeboard<br />
Updated a new settings tab on the admin side, allowing admin users to enable or disable the display of columns (Domain has website &amp; Domain Age) on the auction page client-side<br />
Updated Clients can set the domain bid stop date and specify whether a domain has a website (yes/no) while submitting auction domain details that are not registered on WHMCS<br />
Updated Remove Support for WHMCS 8.7 to 8.9<br />
Fixed Support <span style="font-weight: bold;" class="mycode_b">WHMCS 8.11.x &amp; 8.12</span><br />
Fixed. Due to a lack of API and not knowing which domain the user could submit, the admin needs to manually process for assigning domains, Register, transferring due date, and all other functions<br />
Fixed removed USD from the amount showing on the auction page<br />
Fixed support for ionCube Loader v14<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Version: 1.2.6 Released (01/25/2024)</span><br />
Maintenance<br />
<br />
Fixed Domain Market Of PHP 8.1<br />
Fixed Support WHMCS 8.9 &amp; 10.x<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Version: 1.2.5 Released (01/10/2024)</span><br />
Maintenance<br />
<br />
Fixed support for ionCube Loader v13<br />
Updated work with License System<br />
Updated Improve ionCube Loader<br />
Updated Remove Support for WHMCS V8.4 to 8.6<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Version: 1.2.4 Released (10/26/2023)</span><br />
Maintenance<br />
<br />
Fixed when a Client had no Domain and an error was thrown<br />
Fixed the issue with TLD extensions that contain two dots not functioning properly in 'Skip Validation TLDs'<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Version: 1.2.3 Released (12/27/2022)</span><br />
Maintenance<br />
<br />
Fixed Domain Auction list<br />
Fixed Multi Currency<br />
Fixed support for ionCube Loader v12 and PHP 8.1<br />
Updated Remove Support for PHP 7.1 to 7.3<br />
Updated Remove Support for WHMCS V8.1. x to 8.3.x<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Version: 1.2.2 Released (09/02/2022)</span><br />
Maintenance<br />
<br />
Fixed multi-currency support<br />
Fixed Issue with missing translate vars<br />
Fixed Issue with loading the wrong language file on the first load<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Version: 1.2.1 Released (07/1/2022)</span><br />
Maintenance<br />
<br />
Fixed Issue with the twice sales domain<br />
Fixed Domain favorites list moved to tabs<br />
Updated Disable Sale By Contact<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Version: 1.2.0 Released (05/12/2022)</span><br />
Minor<br />
<br />
Added Mark Domains as favorites<br />
Added Filter Domain<br />
Added Deposit when adding a bid<br />
Added Auto Category when domain adding<br />
Fixed Domains Auctions Page template changes and issues with currency<br />
Fixed Issue with the domain market list height<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Version: 1.1.2 Released (01/10/2021)</span><br />
Maintenance<br />
<br />
Fixed Empty Data for Chart<br />
Fixed issue with parse domains<br />
Fixed Lagom 2 Themes<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Version: 1.1.1 Released (10/28/2021)</span><br />
Maintenance<br />
<br />
Fixed Problems with Bootstrap 4<br />
Updated About page<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Version: 1.1.0 Released (09/25/2020)</span><br />
Minor<br />
<br />
Added skip validation<br />
Added Total Based Commission<br />
Updated Remove v4 Admin theme from distribution<br />
Updated Remove Support for PHP 5.6 to 7.0<br />
Fixed Problem with template buttons<br />
Fixed Problem with WHMCS V8<br />
Fixed Remove some words<br />
Fixed Problem with PHP 7.x<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Version: 1.0.1 Released (10/15/2018)</span><br />
Maintenance<br />
<br />
Fixed redeclare functions<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Version: 1.0.0 Released (10/12/2018)</span><br />
Stable<br />
<br />
New Initial Release]]></content:encoded>
		</item>
	</channel>
</rss>