The essential news about content management systems and mobile technology. Powered by Perfect Publisher and XT Search for Algolia.
The News Site publishes posts to the following channels: Facebook, Instagram, Twitter, Telegram, Web Push, Bluesky, and Blogger.
Google Drawings allows you to easily create, share, and edit drawings online.
It is really easy to add Google Drawings to Joomla sites, using our OSEmbed extension.
You can embed Google Drawings into your Joomla site with just a URL.
The URL will automatically be turned into a working Google drawing!
The Google drawing embed will work perfectly on the front of your site.
About the author
Steve is the founder of OSTraining. Originally from the UK, he now lives in Sarasota in the USA. He was a teacher for many years before starting OSTraining. Steve wrote the best-selling Drupal and Joomla books.
Google's Sheets product is their version of Microsoft Excel.
It is really easy to add Google's spreadsheets to Joomla sites, using our OSEmbed extension.
You can embed Google Sheets into your Joomla site with just a URL.
The URL will automatically be turned into a working Google spreadsheet! You'll see a preview inside the editor:
The Google spreadsheet embed will work perfectly on the front of your site.
About the author
Steve is the founder of OSTraining. Originally from the UK, he now lives in Sarasota in the USA. He was a teacher for many years before starting OSTraining. Steve wrote the best-selling Drupal and Joomla books.
This new release fixes various bugs our customers reported and also adds an important, much requested feature: migration of DOCman between sites.
Many of our customers requested to move DOCman data between different sites. With this release EXTman gained support for exporting and importing DOCman data between sites.
You can find extensive instructions on how to run the migration in the documentation.[1]
This release also contains many bug fixes on our framework making all our extensions more stable and robust.
Simply download the latest EXTman version[2] and make sure you have DOCman 2.1.4[3] installed which was released last month.
If you have an active Joomlatools subscription you have immediate access to EXTman 2.2 at no additional cost. If you do not have a subscription you can purchase a bundle or single extension subscription[4] in a matter of minutes.
Read more https://www.joomlatools.com/blog/2016/02/extman-22-is-out/
Joomla offers a menu type "Category List" that allows you to display a category and children subcategories in list format.
Normally a Category List layout looks like the image below. In this example, we're using Protostar as a template. Not really appealing, is it?
We can do it better. For example, we can add an image next to the title of each subcategory. I'm going to show you how do that, using Joomla's template overrides.
To change the appearance of this list you will need to create an override of this file: com_content/category/default_children.php
Joomla has now created all necessary files for the override inside the HTML folder of your template.
The code is very simple:
<?php echo '<img class="xt-lazy-img" src="'.json_decode($child->params)->image . '" />'; ?>
I decided to insert the code inside the link that encloses the title, so is the image also clickable.
Much better than before!
Protostar is a Bootstrap 2-based template. We can use the CSS classes from Bootstrap to improve how the images are showed.
You can go back to the editor and add the class "img-polaroid" (the class "img-thumbnail" is the pendant in Bootstrap 3) to the image:
<?php echo '<img class="img-polaroid img-thumbnail" src="'.json_decode($child->params)->image . '" />'; ?>
With a simple override, a very nice and useful feature of Joomla, you can change the appearance of your pages. In many cases, you don’t need to install third party extensions to achieve what you want.
If you want to learn more about overrides, you can check the Joomla! Documentation and also visit the website of the Community Project j!-over (www.j-over.de/en[1]). Here you will find some interesting overrides for your next project.
About the author
Viviana Menzel is the owner of a web agency based in Germany. She creates websites with Joomla, develops own templates and writes for the Joomla Community Magazine. She is a mother of 3 and co-founder of j!-over, an Override Community Project. In her free time she learns to develop Joomla! plugins.
Joomla comes with a search component that can look inside articles and other components. However, the search component does have some limitations. For example, it can't index content that is included in modules or plugins.
To search through all of the content on your Joomla pages, Google Search Engine provides a powerful alternative.
In this tutorial, I'm going show you how to integrate Google Search Engine in Joomla.
We're going to use an extension called ITP Google Search.
Go to the extension page[1] and scroll down to download it.
Go to the Google Custom Search Engine[2] page.
If you don't have a Google account, click "Sign in to Custom Search Engine" button and continue the process. On the other hand, if you're already logged in, click "Add".
Fill in the required fields:
Let's display the search form on our website:
Go to your public site and test the search form.
The search results will be displayed right away.
There are some disadvantages to using Google Search. For example, Google won't be able to index and show search results for private content on your site. And you have less control over your customization of the search. However, for many sites, Google Custom Search Engine is a great option.
About the author
Valentín creates beautiful designs from amongst the tequila plants of Jalisco, Mexico. You can see Valentín's design work all over this site and you can often find him helping members in our support forum.