Category: Joomla

  • How to Uninstall Joomla?

    How to Uninstall Joomla?

    Sometimes you may want to uninstall Joomla from the server for one of the following reasons:

    • You want to move the Joomla website to another server and you want to use the current host to delete all information related to the website.
    • There was a problem with your initial installation and you want to redo everything from the beginning.
    • You just want to get rid of your Joomla website!

    Unlike installation, there is no such method to uninstall the Joomla directly from the server. Uninstall of Joomla is done manually. For this, you need to delete all the Joomla files and drop the MySQL database that has been created during installation.

    • Well, the process is very simple, here is what you can do:
    • Log in to the FTP of your website and delete all Joomla folders and files.
    • Make sure you do not delete folders that do not belong to your Joomla website.
    • If you have installed a lot of extensions and/or a lot of images/files on your website, this process may take a long time.
    • Go to phpMyAdmin and delete the database containing the data of the Joomla website.
    • Make sure not to delete shared databases (databases shared by different websites, the only difference is the table prefix). Go to the “Cron Jobs” page (or Cron Manager) in cPanel and delete all cron associated with the Joomla website.

    Generally, it takes a lot of time to delete the files through FTP, so its recommended to remove data through host manager (ex: Cpanel, Plesk).

    How to uninstall Joomla from cPanel?

    If you have installed the Joomla through any of the Joomla website using Softaculous an auto-installer in cPanel, then you can uninstall the Joomla in a single click. Softaculous is a commercial script library that automatically installs commercial and open source web applications onto websites. Most of the hosting provides like Godaddy, Siteground and Hostgator provides cPanel with Softaculous in it.
    If you need help uninstalling the Joomla website, or if you think the process is daunting, then we will help you. Please contact us and we will serve you.

    Summary

    If you are afraid to perform this process, please don’t do it and seek help from a Joomla professional.
    Remember, if something goes wrong, it will definitely go wrong! Be careful while you delete the files or folders.
    If you are not sure about a file or directory, please do not delete it, and then seek the help of a Joomla professional again.
    This process does not delete the email account associated with your Joomla domain.

  • Use 301 Joomla Redirect for non www to www and vice-versa

    Use 301 Joomla Redirect for non www to www and vice-versa

    Joomla Redirect is important when you change some URL or direct http to https. Like physical addresses, your URL can change. If you change it, your frequent visitors and regular users might have a hard time finding it as the old and new addresses are separate. To avoid this, you can use 301 redirects. Simply put, a redirect will effortlessly “direct” the user (and the crawlers) to their new URL when they visit outdated URLs.

    Why is “301 redirect” useful?

    Suppose your website has an affiliate program, and you can find detailed information about the program at www.example.com/affiliate. But recently you changed the site structure and the permalink structure was also reorganized. Therefore, the “member” page has a new address: www.example.com/affiliate-program. As a result, because the URL has been changed, users who bookmarked the “Members” page with the old address will receive a 404 error. This awkward situation can be solved by 301 redirection. Joomla provides a built-in feature for this, called URL redirection.
    It is also useful if you want to maintain site authority and SEO weight while moving the content to another page. The bot of the search engine will visit the old URL, redirect, and crawl the new page while maintaining the weight of the old URL.

    Joomla 301 Redirects

    Joomla uses a built-in plugin called Redirect to handle 301 redirects. You only need to follow a few simple steps to enable 301 redirects for any URL on your Joomla website.
    Redirection of Joomla website can be also be done by modifying and editing the .htaccess file in the server. But many of us face problems while writing exactly the redirection code. Recently we found a website which can help us generating any .htaccess code, may it be non-www to www redirection, 301 redirection or 404 errors.
    Generate Redirect Code

    Joomla Redirect non www to www and www to non www

    For SEO reasons, it is better to redirect your site’s url other than www to www or vice versa.
    For example, when trying to access our site through https://infyways.com, you redirect to https://data.infyways.com/new.
    Note the “www” in the second URL. Technically, the version without www and the www version are two different domains. So redirecting one to another improves our SEO. Google and other search engines won’t have to worry about two different domains.
    This tutorial will show you how to redirect the entire Joomla website to non-www or www.

    • Open the default .htaccess file from your Joomla folder and find the following
    RewriteEngine On
    • To redirect non-www to www, add the following code below it:
    RewriteCond %{HTTP_HOST} ^yourdomain.com [NC]
    RewriteRule ^(.*)$ https://www.yourdomain.com/$1 [L,R=301]
    • To redirect non-www to www, add the following code below it:
    RewriteCond %{HTTP_HOST} ^www.yourdomain.com [NC]
    RewriteRule ^(.*)$ https://yourdomain.com/$1 [L,R=301]
    

    If none of the above methods work for you, please check if you are on the IIS server. If so, please try this tutorial.

  • How to Add Favicon in Joomla: A Comprehensive Guide

    How to Add Favicon in Joomla: A Comprehensive Guide

    Are you wondering how to create a favicon for your Joomla site? Maybe you’ve created one, but are unsure about how to add favicon in Joomla? Don’t worry! You’ve come to the right place. This blog post is here to guide you through the process of adding a favicon to your Joomla website.

    What is a Favicon?

    First things first, let’s understand what a favicon is. A favicon, short for favorite icon, is a small icon that represents your website in the browser’s tab. It helps users identify your website among other open tabs and can contribute to your website’s overall brand image. So, without further ado, let’s dive into how to add a favicon in Joomla.

    Step 1: Creating a Favicon

    Before we can insert a favicon into your Joomla site, we need to create one. There are numerous online tools you can use to create a favicon. Once your favicon is ready, make sure it’s in the .ico format and is named favicon.ico.

    Step 2: Uploading the Favicon

    Now that your favicon is ready, let’s upload the favicon to your Joomla website. But where to upload the favicon? The Joomla favicon location is in your Joomla template’s directory. Typically, the path is: joomla_root/templates/your_template/. Replace your_template with the name of your active template. Just upload your favicon.ico file to this location, replacing the existing favicon.ico file. Note: Make sure to backup the existing favicon file before you replace it. If your template is missing the code to add the favicon then you can place the following code to
    <link rel="shortcut icon" href="Your_domain_name/templates/your_template/favicon_name.ico" />

    Step 3: Clear Joomla Cache

    After you have replaced the favicon, it is necessary to clear your Joomla and browser cache to ensure that your new favicon appears correctly. To clear your Joomla cache, navigate to System > Clear Cache, select all files and click Delete. That’s it! You’ve successfully learned how to add favicon in Joomla.

    Frequently Asked Questions​

    Just like changing the site favicon, you can change the administrator favicon by replacing the favicon.ico file in the administrator/templates/your_template/ directory.

    You can add a favicon in your Joomla website by replacing the favicon.ico file in your Joomla template’s directory (joomla_root/templates/your_template/).

    The favicon should be uploaded to your active Joomla template’s directory, which is usually joomla_root/templates/your_template/.

    Although some modern browsers support PNG and JPG favicons, it’s best to use a .ico file for maximum compatibility. There are many free online tools to convert PNG or JPG images to .ico files.

    If you change your Joomla template, you will need to upload the favicon.ico file to the new template’s directory, as each template uses its own favicon.

    If you are looking to personalize your Joomla website further, don’t forget to check out our guides on how to customize the arrangement of articles in Joomla, how to add custom JavaScript to Joomla, or how to create a contact page for Joomla.

    The favicon might be a small component of your website, but it’s one that should not be overlooked. A unique and recognizable favicon can help reinforce your brand and improve the user experience. So, go ahead and put a favicon on your Joomla website today!

    For more information on Joomla, feel free to explore our comprehensive guides and tutorials at infyways.com. To understand Joomla in detail, consider checking out our ultimate guide to mastering Joomla. Enjoy your journey in enhancing your Joomla website!

  • How to show Heureka Reviews on your website?

    How to show Heureka Reviews on your website?

    If you are searching to implement or export the heureka reviews into your website then the first thing which is required is the XML file. The XML file provides information such as

    <review>
    <rating_id>XXXXXX</rating_id>
    <source>regular</source>
    <unix_timestamp>1453155494</unix_timestamp>
    <total_rating>5</total_rating>
    <recommends>5</recommends>
    <delivery_time>5</delivery_time>
    <transport_quality>5</transport_quality>
    <web_usability>5</web_usability>
    <communication>5</communication>
    <cons>
    <![CDATA[Txt]]>
    </cons>
    <summary>
    <![CDATA[TEXT]]>
    </summary>
    <order_id>123</order_id>
    </review>
    

    The above XML needs to be parsed to show the reviews.

    We can get the path for the XML file from the Heureka website. The XML file path looks like this

    https://www.heureka.sk/direct/dotaznik/export-review.php?key=XXXXXX

    or

    https://www.heureka.cz/direct/dotaznik/export-review.php?key=XXXXXX

    Recently we have developed a Custom Joomla module for one of our clients. The module has a feature to show the Heureka Badge as well as the latest reviews, ratings and other information. These information are pulled directly from the XML file in real time. 

    Joomla Module Parameters

    The client wanted to have the option to add his XML URL, Minimum height of each testimonial and the badge. We have provided the options in the module backend.

    Other features like data, time, individual ratings for transport quality, recommendation, website usability, communication and other options can also be added as per the requirements.

    heuraka joomla implementation

    The same features can also be implemented for any CMS like WordPress, Magento , OpenCart or custom PHP development.

    This is how it looks like

    The testimonials styles can be changed with all color and font options. As per the customer request the number of testimonials can be changed and sliding feature can also be implemented to it.

    heureka testmonials
    Want to Heureka your website?

    Are you looking for someone to implement Heureka Reviews on your website? Just fill in the form and get started!

  • How to update Joomla to latest version and fix update Error?

    How to update Joomla to latest version and fix update Error?

    Whenever Joomla releases a new update, in the administrator dashboard notification is shown which asks you to update the site to the latest version. You can simply click on it to update but sometimes you might encounter an issue which won’t allow updating. So now how to fix it?

    How to update Joomla to the latest version?

    If you are using Joomla 3.x or 2.5.x, you can follow the steps below :

    • Login to the backend of your Joomla website and navigate to Components > Joomla Update
    • Click on the button on the right top “Check for Updates”.
    • If there is an update from Joomla, it will below.
    • Then click on the Install button.
    • Don’t close the browser or navigate to another menu unless the process is complete.
    • Upon successful completion, you will be notified to a success message.

    Joomla Update Issue Fix

    In the above screenshot, you can see that Joomla warns you to take a backup of your website before updating the site. I would recommend you to use Akeeba Backup to back up your files. Every time you update your website, Akeeba starts to take a complete backup of your site. In case you run into any issues after updating your site, the backup can help you restore to the original state. If your site is already updated, it will ask you to Reinstall the Joomla core files.
    This is simply one-click update process but if you don’t succeed, then download the stable update package and go to the Upload and Update tab. Select the update package and install like you install the extensions.
    Sometimes you won’t be notified or Joomla won’t be able to determine the update. For that you can follow these steps :
    Login to the backend of your site and navigate to Extensions > Extension Manager and then go to the Update tab.

    • Click on the Purge Cache button which will clear the entire cache.
    • Then click on Find Updates button in the toolbar. It will show the list of extensions and updates which has to be done.
    • Check the list and click on the Install button.

    What if you don’t see the Joomla Update menu under the components?

    If you don’t see the Joomla! Update menu under the Components then you can use the following
    https://youdomain.com/administrator/index.php?option=com_joomlaupdate

    How to fix Joomla Update Error?

    After trying the above steps if you still run into an error while updating your site to the latest version then you can follow the steps:

    • Check your directory permissions are set to 755 and file permissions to 644.
    • Clear all the cache or try to open the backend of the website in Browser Incognito Mode.
    • Try to disable Akeeba Backup extension and test if it doesn’t solve, disable all third-party plugins that you have installed.
    • Install using FTP: Download the stable update package and overwrite the files. But before that backup your website.

    If you still face issues in updating your website then feel free to contact us. Our experienced developers will look into the issue and assist you to update to the latest version.

     

  • How to create a custom 404 page in Joomla?

    How to create a custom 404 page in Joomla?

    Creating a 404 page in Joomla is essential as it tells the users that the page they are visiting isn’t found or broken. In this tutorial, I will explain to you the steps to create a 404 page. If the page isn’t found instead of 404 server error, a 200 HTTP code will be sent to the browser. This will also tell the search engine that page isn’t allowed to be crawled. So, now let us create it.

    Step 1: Create an Uncategorized Joomla article

    The first step is to create an article in the Uncategorized category. Set the title of the article to “404 – Page Not Found” and the alias to “404”. Add images or text which says “Sorry, the page isn’t found” or anything that you wish.

    Step 2: Set the Robots to No Index, No Follow

    The robots tell the search engine to either allow or disallow the page to index. As we don’t want the 404 to be indexed by the search engine. We have to set the Robots to No Follow, No Index in the Publishing tab of the Joomla article and Save the article.

    Step 3: Create a Menu item

    Once you have saved the article, create a Hidden Menu. To create it you can now go to Menus> Manage > Add Menu and fill the menu type and description.
    After creating the Hidden Menu, navigate to Menus > Hidden Menu > Add New Menu Item

    • Add the Menu Title and Alias
    • Select the Menu Item Type as Single Article
    • Save the article and copy the Link (index.php?option=com_content&view=article&id=292)

    Step 4: Create the error.php file

    The error.php file is usually located in templates/YOUR_ACTIVE_TEMPLATE/error.php. If it doesn’t create an error.php file and add the following codes into it. Replace your link with your link into the header function below.

    defined( '_JEXEC' ) or die( 'Restricted access');
    if ($this->error->getCode() == '404')
    {
    header('Location: /index.php?option=com_content&view=article&id=292');
    exit;
    }

    Save the file after adding the codes into error.php file of your template.

    Step 5: Test your page

    Once you have added the codes, test your website. Try to open a page which doesn’t exist. For example, www.yoursite.com/hahaha. If the site opens the 404 pages you have created, then everything works fine. If it doesn’t recheck the steps or contact us. We will help you out 🙂

  • How to enable maintenance mode in Joomla?

    How to enable maintenance mode in Joomla?

    Website regularly needs maintenance and it may be required to put on offline or maintenance mode so that the users will not be able to access the pages. A custom message like “The website is under maintenance please visit after some time” have to be set so that the visitor can understand and visit the website later.
    You can set the site to offline in the backend of the Joomla administrator. The frontend of the website can’t be accessed by public. A super administrator can login to the frontend using the login credential in maintenance mode.

    How to enable offline or maintenance mode in Joomla?

    Unlike WordPress, you really don’t need an additional extension to do it. The option is available in the administrator panel of Joomla. You can follow the steps below to set the site to offline :

    1. Login to the backend or administrator panel of Joomla.
    2. Go to System > Global Configuration
    3. In first Site Tab you will find an option “Site Offline”
    4. Set it to Yes. Upon settings it to yes two other options will show up.
    5. You can add your own offline custom message.
    6. Click on the Save button after making the changes.
    site offline joomla


     

  • Top 20 Premium WordPress Themes for Intranet, Extranet and Coworking Sites

    Top 20 Premium WordPress Themes for Intranet, Extranet and Coworking Sites

    Are you an owner of a business that has its own Intranet network? A website of your own where your workers can communicate, learn and get tasks can be very beneficial for your success. So, today we have gathered for you a collection of 20 premium WordPress themes to suit your needs.

    Why choose a ready-made template?

    The answer is very simple. By getting a pre-designed template, you basically get a website that works pretty much out of the box. These themes boast a wide range of features, which enable you to install and customize them to your liking without ever having to touch a line of code. They are also quite SEO-friendly ensuring that your website gets the visitors it deserves and optimized for performance so that your pages never take too long to load. Getting such a theme is also much faster than creating one from scratch and much cheaper than hiring someone to do it for you! And if you have any questions or need help with your template, you can always ask the support team and get your problems sorted out in the shortest possible time.

    What’s WordPress?

    All of the themes present in the list below are powered by WordPress, which is one of the most popular content management systems on the market. It is highly flexible, user-friendly, and, most importantly, free to use. Anybody with a computer can download WP and start working with it right away. It is a great CMS to use for your first website because of its combination of simplicity and potential, which is essentially limitless and can be extended even further with thousands of user-created plugins and add-ons.

    But enough talk, we all know you came here for the templates and not walls of text. So go ahead, feel free to check out the list of amazing themes we have prepared for you and pick something for yourself!

    Alliance | Intranet & Extranet WordPress Theme

    Alliance | Intranet & Extranet WordPress Theme

    This is a modern, fresh and clean theme with accents on performance and usability. It’s perfect for improving communication inside of your company, firm or agency and for providing easy, stylish and user-friendly access to corporate data. It also supports awesome dashboards, file sharing, polls, education tools, Booked Appointments and much, much more.

    Details | Demo

    Micro Office | Extranet & Intranet WordPress Theme

    Micro Office | Extranet & Intranet WordPress Theme

    This theme is compatible with WPBakery visual page builder to provide you with awesome customization opportunities that don’t involve any code. It also supports Revolution Slider, Essential Grid, EventON, BuddyPress, Content Timeline, WP Pro Quiz, Responsive Poll and many more amazing plugins. The theme is fully responsive, Retina-ready and optimized for mobile devices.

    Details | Demo

    WotaHub | Coworking Space WordPress Theme

    WotaHub | Coworking Space WordPress Theme

    WotaHub was designed for trendy corporate websites to represent your company in the best way possible. It supports top-rated WP plugins like WPBakery Page Builder, Essential Grid, Revolution Slider, Events Calendar etc. The theme is fully responsive and easily customizable with the user-friendly admin panel and handy page builder.

    Details | Demo

    Crework | Coworking and Creative Space WordPress Theme

    Crework | Coworking and Creative Space WordPress Theme

    This is a fully responsive and Retina ready theme with a strong business look that will fit for any market niche. It comes with three homepage layouts, a powerful admin panel, a whole set of shortcodes, a pack of popular plugins and even Parallax animations! It even features one-click demo installation options.

    Details | Demo

    Artrium | Creative Agency & Web Studio WordPress Theme

    Artrium | Creative Agency & Web Studio WordPress Theme

    Artrium is a stylish, responsive and easy-to-use template best suited for a contemporary web design studio or creative agency. It is made with Elementor and will let you manage your website’s visual and operational sides within minutes. The theme is optimized to work with such popular plugins as Revolution Slider, Essential Grid, MailChimp for WP, ThemeREX Add-ons and more.

    Details | Demo

    Coworking – Open Office & Creative Space WordPress Theme

    Coworking - Open Office & Creative Space WordPress Theme

    Coworking has an intuitive visual interface and informative layout that looks great on any platform since it’s fully responsive and Retina ready. It has everything you need to create a corporate website, including premade amenities blocks along with pricing, an awesome forum, video tour, our team, and products modules, dozens of shortcodes and advanced contact forms. It even comes with full WooCommerce store compatibility.

    Details | Demo

    Consultor | A Business Consulting WordPress Theme

    Consultor | A Business Consulting WordPress Theme

    Consultor was designed as a multipurpose business template, so you can use it to build any corporate website. The theme is supplied with a collection of powerful shortcodes and widgets along with a premium drag & drop page builder for ease and depth of customization. It is SEO friendly and offers Contact Form 7 support, giving your users the ability to sign up.

    Details | Demo

    Revirta | Virtual Assistant WordPress Theme

    Revirta | Virtual Assistant WordPress Theme

    Revirta is perfect for both small and large-scale businesses and its pure corporate design gives you maximum flexibility. The theme is integrated with the ThemeREX Addos plugin, providing you with 12 new widgets, CV Card functionality, image optimization options and much more. It also supports Visual Composer, Revolution Slider, Booked Appointments, Essential Grid, MailChimp and Contact Form 7.

    Details | Demo

    uReach | Immigration Consulting WordPress Theme

    uReach | Immigration Consulting WordPress Theme

    uReach is a stylish and elegant theme designed for migration bureaus, immigration firms and emigration offices. WPBakery Page Builder, Revolution Slider, Essential Grid along with many other outstanding plugins will help you in creating a respectable online platform for your website. It also comes with full WooCommerce store compatibility, allowing you to use your website as a platform to sell goods.

    Details | Demo

    Woffice – Intranet/Extranet WordPress Theme

    Woffice - Intranet/Extranet WordPress Theme

    Woofice is a very powerful and feature-rich multipurpose theme for Intranet sites. It comes with a complete BuddyPress Network, a custom login page, Projects management, Wiki, Chat and messaging, Files Manager, Calendar, Directory Extension, Forum, E-commerce and much more. It is also bundled with 5 premium plugins, saving you a total of $180!

    Details | Demo

    Thrive – Intranet/Extranet/Community WordPress Theme

    Thrive - Intranet/Extranet/Community WordPress Theme

    Thrive has been designed as the ultimate foundation for your collaborative online community. It brings together social networking, messaging, forums, events, project and task management, file sharing, e-commerce, and even e-learning. It also offers a private site option with a secure login for your members.

    Details | Demo

    CommunityJunction – BuddyPress Theme

    CommunityJunction - BuddyPress Theme

    CommunityJunction uses a flexible modular layout and is integrated with a powerful page builder so you have complete freedom in regards to customization. It is highly optimized for performance, ensuring that your workflow won’t be interrupted by slow load times. It is also integrated with bbPress, rtMedia, WooCommerce, WPMU, jQuery Masonry and many more amazing plugins.

    Details | Demo

    Cinematix – BuddyPress Community Theme

    Cinematix - BuddyPress Community Theme

    This is the ultimate template for an online community. Every single one of its pages and details is polished, the colors are neat-looking, all of its typography is clear and readable and is designed to depict your company in the best possible light. It has been built with a modular design system so you can rearrange design blocks on the front page as you wish.

    Details | Demo

    Aardvark – BuddyPress, Membership & Community Theme

    Aardvark - BuddyPress, Membership & Community Theme

    This is a multipurpose theme fit for any business in any niche. Its 200+ customization options allow you to easily create a good-looking site without ever touching a line of code. It is also integrated with BuddyPress, bbPress, WooCommerce, Paid Membership Pro, Sensei, Event Manager, and many more awesome premium plugins.

    Details | Demo

    OneCommunity – BuddyPress Community e-Learning LMS Theme

    OneCommunity - BuddyPress Community e-Learning LMS Theme

    OneCommunity comes with 9 different color schemes, 3 blog layouts, full bbPress integration, Visual Composer 5 support, and quick demo content installation. It is packed with $108 worth of premium plugins, a modular layout and all of the BuddyPress features. The theme also features a private messaging system and LearnPress compatibility.

    Details | Demo

    WildCommunity – BuddyPress Community Theme

    WildCommunity - BuddyPress Community Theme

    WildCommunity lets you build a social network for your company, school, sports team or niche community. It works with the latest 4.0 version of BuddyPress and is fully integrated with bbPress along with Theme Customization API, Events Manager, rtMedia and others. It also includes over 40 varying inner pages, 4 frontpage designs and a bundle of shortcodes.

    Details | Demo

    Segments – CRM & Project Management WordPress Theme

    Segments - CRM & Project Management WordPress Theme

    Segments is an advanced CRM and project management theme made for WordPress. It is extremely simple to install and then modify with Visual Composer. It is also fully responsive and looks amazing on all screen resolutions.

    Details | Demo

    UnitedCommunity – BuddyPress Theme

    UnitedCommunity - BuddyPress Theme

    UnitedCommunity is an awesome theme that combines everything you need to create a website for your community. Its modular layout is highly flexible and is integrated with a page builder so you can customize your pages with no coding skills required. It is compatible with the latest version of BuddyPress, rtMedia, BuddyPress Global Search, Event Manager, WooCommerce, Theme Customization API, Contact Form 7m jQuery Masonry and much more.

    Details | Demo

    BuddyApp – Mobile First Community WordPress theme

    BuddyApp - Mobile First Community WordPress theme

    With a creative design and a mobile first approach, this is a theme that lets you build a site that stands out from the crowd. It includes Visual Composer, WooCommerce integration, 600+ Google Fonts, Child Theme functionality, unlimited sidebars, and custom post types. It also supports WPML, allowing you to turn your site into a multilingual one in minutes.

    Details | Demo

    Coworking Co. – Creative Space WordPress Theme

    Coworking Co. - Creative Space WordPress Theme

    This beautiful and clean theme is ideally suitable for coworking spaces, meeting, creative, conference space rental, and other business websites. It’s integrated with the most powerful eCommerce plugin- WooCommerce, allowing you to create an online store on your website. It is also fully responsive and Retina ready, making it look sharp and impressive on all devices.

    Details | Demo

    Wrapping Up

    So, that’s that for today’s showcase! Be sure to tell us your thoughts on the templates we’ve picked in the comments section! Did you find anything that appeals to your taste? If so, awesome! And if not, remember that there are always more themes at ThemeRex! Have a nice day and good luck with your new website!