Search the Community
Showing results for tags 'announcements'.
Found 13 results
-
Is there a way to lower the number of characters displayed in the announcements section on the home page?
- 6 replies
-
1
-
- announcements.tpl
- characters
-
(and 1 more)
Tagged with:
-
Hi Everyone, The WHMCS Forums were launched over 12 years ago and in that time have seen a number of iterations and updates. Today, we’re excited to announce that we're getting ready to introduce the next incarnation of the WHMCS Community and with it, a brand-new look and feel, along with a whole host of new features and functionality - starting with in-line post reactions & a new reputation structure as well as a new question & answer format for certain forum categories. Preparations are already well underway to migrate from the current forums to our new Community powered by the Invision Community Suite. The current community is home to a wealth of knowledge and information and we’ll be migrating all existing threads and posts as well as user accounts and private messages to the new WHMCS Community to ensure that none of this is lost. I’m personally very excited about the opportunities our new platform unlocks. Over the coming months, we’ll be rolling out a range of new features and functionality in our community, taking inspiration from the responses we received earlier in the year about how we can improve your experience. Stay tuned for updates in the coming weeks as we move nearer to the switch over, in the meantime, here’s a sneak preview of what’s to come. The team and I are excited to bring our new community to you in September, and I will be posting more information on the changes in future posts.
-
Hi Everyone, I'm opening this thread to start a general discussion. Part of my role at WHMCS involves helping grow and foster the WHMCS community in 2017, and a large part of that is right here on the forums. With that in mind, I'd love to hear your thoughts and ideas on the following questions: What do you feel is working well? What do you feel could be improved? What would you like to see more of? What could we do to make the forums more useful for you? Any other thoughts and comments are also welcome. Please take a few moments to let us know below, or if you prefer, you can log a private thread in the Forum Assistance Category or send me a PM. I look forward to hearing your open, honest and constructive feedback. Thanks!
-
Hi Everyone, In earlier incarnations of our Beta Program we used a Special Forum Group "Beta Testers" to provide access to the Beta Testing forums. In more recent beta releases, we've removed this restriction and now allow everyone in the community access to the beta forums. With that in mind we've begun a process to retire the Beta Testers user group. Over the next few days, those of you with the rank of Beta Testers will see your ranking level move to either Newbie, Member or Level 2 Member depending on your current rank in the forum. As always we welcome your feedback on the community so please do feel free to leave comments below.
-
- beta
- beta users
-
(and 1 more)
Tagged with:
-
Hi Everyone, In the past year we've seen a significant increase in the amount of Mobile Traffic visiting the WHMCS Community Forums and with that in mind we're pleased to annou a new mobile responsive theme for the community which is now live. For users visiting from small devices you'll now see a mobile ready version of the community. You'll be able to access your private messages by clicking the squares in the top right hand corner as well as posting to new and existing threads. Thanks for being a member of the WHMCS Community and we look forward to bringing you more enhancements throughout 2017.
-
Hi Everyone, I'm pleased to welcome Sentq as a gearhead on the WHMCS Community. A GearHead is a member of the community forums who is a champion of the WHMCS software. This individual possesses a high technical aptitude for WHMCS problem solving, is helpful, and can often be found on our forums selflessly assisting other WHMCS Administrators during their pursuit of providing World Class Web Hosting for the masses. We're thrilled to add Sentq to this esteemed group of community leaders!
-
I have a couple of old clunky pieces of code, using {php} inside the templates, that allow me to display announcements and network issues in the client area. Can someone help me convert these to Action Hooks, so I don't need to enable PHP in the templates? This will make for less clunky code and allow more display flexibility. Here's one that displays recent announcements (1 week): <!-- announcements --> {php} $query = "SELECT * from tblannouncements WHERE published != '0' AND DATE_SUB(CURDATE(),INTERVAL 1 WEEK) <= date ORDER BY date DESC"; $result=mysql_query($query); $num_rows = mysql_num_rows($result); if ($num_rows == 0 ) { echo "<!-- No recent announcements -->"; } else { echo "<div class='alert alert-info'> <a href='#' class='close' data-dismiss='alert' aria-label='close'>×</a> <h4>Recent news</h4>"; } $num=0; while($data = mysql_fetch_array($result) and $num<2 ) { $num = $num +1; $id = $data["id"]; $date = $data["date"]; $title = $data["title"]; $announcement = $data["announcement"]; $date = fromMySQLDate($date); echo("<h4> <span style='font-size:0.9em;font-weight: normal'> $date -</span> "); echo("$title </h4>"); echo("$announcement"); echo("</div>"); } {/php} <!-- /announcements --> And here's one that displays network issues, color-coded by severity, with a link for more details. <!-- network issues --> {php} $query = "SELECT * from tblnetworkissues WHERE status != 'Resolved'"; $result=mysql_query($query); $num_rows = mysql_num_rows($result); if ($num_rows == 0 ) { echo "<!-- No recent issues -->"; } else { $num=0; while($data = mysql_fetch_array($result) and $num<2 ) { $num = $num +1; $id = $data["id"]; $date = $data["lastupdate"]; $title = $data["title"]; $announcement = $data["description"]; $priority = $data["priority"]; $date = fromMySQLDate($date, true); if ($priority == 'Critical') { $color = "danger" ; } elseif ($priority == 'Low') { $color = "success" ; } elseif ($priority == 'High') { $color = "warning" ; } else { $color = "info" ; } echo "<div class='alert alert-$color'> <a href='#' class='close' data-dismiss='alert' aria-label='close'>×</a> <h4>Network Status</h4>"; echo("<h4> <span style='font-size:0.9em;font-weight: normal'> $date -</span> "); echo("$title </h4>"); //echo("$announcement"); echo("<a href='serverstatus.php'>More info</a>"); echo("</div>"); } } {/php} <!-- /network issues -->
- 2 replies
-
- announcements
- client area
-
(and 1 more)
Tagged with:
-
Hello, I want to setup the Announcements and the Knowledge base layout into Two columns. Now it is in a single column. I have notes that you could place html in a post so I have try to use a html code in a post, but that doesn't do the trick. Can some help me to get this layout into a two Column style or at least direct me into the right directions to fix this? Thanks in advance Vincent from Hostxls
- 4 replies
-
- announcements
- knowledge base
-
(and 1 more)
Tagged with:
-
Hello I am trying to localize the sidebar in By Month section on announcement page. Currently it shows Feb 2016. I want to change that to 2016-02 to make it simple. When I show the element for the site, the href="announcements.php?view=2016-02". I just want to show the menu to use exactly this numbers 2016-02. I am using 6.2.2 WHMCS. I tried put setlocale(LC_TIME, "ja-JP"); in configuration.php file, but it did not change. Some suggested setlocale(LC_TIME, "ja-JP.utf-8");, but it did not affect to show in Japanese date format. From admin, all of the general settings were done as follow: system char-set: utf-8 date format: YYYY-MM-DD Client Dateformat: same as above I wasn't quite sure what this date format do the whole WHMCS. Hook was suggested to be used. The example files did not show the title of the menu change by dateformat change. I was able to change the date format for the announcements.tpl and viewannouncement.tpl since it has smarty codes section to change the date format as time stamp. Any help would be appreciated. Thank you. Abraham
- 1 reply
-
- announcements
- date
-
(and 3 more)
Tagged with:
-
Our Time Tracking Center For WHMCS has been bolstered up to help you ensure the highest efficiency of time and assets management in your company! Among numerous new conveniences, version 1.3.0 introduces the ability to define the urgency level and set the extra hourly rate per each task. What is more, 'Start Counter' button has been implemented in a ticket system to let you supervise the time spent on responding and bill your clients for it accordingly! Changelog - v1.3.0: New Feature: Bill for time spent on solving tickets New Feature: Define task urgency New Feature: Define 'Extra Hourly Rate' per task New Feature: Decide if prepaid hours should be reset each month New Feature: Reset prepaid hours of recurring product each month New Feature: Edit number of hours & incidents pre-purchased per client New Feature: Edit billable items New Feature: Define product to which 'Buy Additional Hours' is linked Improvement: Minor tweaks Bug Fix: Minor fixes Find Out More About Time Tracking Center For WHMCS! It gives us great pleasure to announce that our gripping promotion is back! Do not hesitate and jump at the chance to save up to $500 on your project - simply submit your request and our advisor will provide you with all further details! See what's on the list of latest releases: Hosting Renewals For WHMCS – v2.5.7 WWD GoDaddy Domains For WHMCS – v2.2.3 Bulk Orders Center For Magento – v1.2.0 Liquid Web Storm Servers For WHMCS – v1.1.3 Coming soon: DNS Manager For WHMCS – v.2.2.0 Proxmox VPS & Cloud For WHMCS – v2.1.0 DirectAdmin Extended For WHMCS – v2.0.0 Need Custom Software Development For Your Business? Get Your Free Quote Now! Specially for you we will adapt an application and its design to your own needs, create a new module or even a completely new system built from scratch!
-
- announcements
- branding
-
(and 3 more)
Tagged with:
-
This addon will 301 redirect to the correct Search Engine Friendly URL. THE PROBLEM: After changing some knowledgebase article's titles, I've noticed that articles can be accessed through old URI as well. Even worse, can be accessed using any URI as long as it has the ID inside the path. Announcements have the same behavior as well. For example, all URLs below will show the same content: 1: yourdomain.com/knowledgebase/15/Transferring-Your-Domain-from-NameCheapcom.html 2: yourdomain.com/knowledgebase/15/Transfer-your-Domain-from-NameCheap.html 3: yourdomain.com/knowledgebase/15/JUST-ANYTHING.html This is a extremely negative for SEO as it produce duplicate content. SOLUTION: This addon will fix that by 301 redirecting to the correct Search Engine Friendly URL. For More Details please visit our WHMCS Addons page.
- 2 replies
-
- announcements
- knowledgebase
-
(and 3 more)
Tagged with: