Our Blog

Learn about our latest WordPress releases, updates and more

Denti is the new Roxima variation for Dentists

Last Updated On
Denti is the new Roxima variation for Dentists WordPress template

Exciting news! Denti, the latest addition to the Roxima theme, is now available. Tailored exclusively for dentists and dental clinics, Denti brings a unique touch to your online identity.

Denti incorporates the Services and Team post types from the Ignition Frameworks and empowers dental professionals to showcase their services seamlessly and introduce their expert team effectively.

Discover the tailored features of Denti. Elevate your dental practice’s digital presence effortlessly and highlight your professional excellence. Make the switch to Denti today!

Miniature 1.2.1 is now available in the Woo marketplace

Posted On
Miniature 1.2.1 is now available in the Woo marketplace WordPress template

We have released version 1.2.1 of our WooCommerce.com theme Miniature.

In this version we took care of some grid spacing issues that arose in the product grid blocks due to styling applied by WooCommerce blocks and fixed the display of the product carousel block style. Furthermore we introduced some minor styling fixes for the filter blocks.

Update today to take advantage of these improvements and keep providing your customers with a great shopping experience with Miniature.

Doric is a Business3ree variation for architects

Last Updated On
Doric is a Business3ree variation for architects WordPress template

We’re excited to introduce Doric, the newest variation for the Business3ree theme. Tailored for architects, this sleek design is also a perfect fit for professionals in various creative fields, such as urban planners, industrial designers, interior designers and more.

Doric seamlessly integrates with the Services and Portfolio post types of Business3ree, offering an elegant platform for professionals to showcase their work.

Elevate your online portfolio effortlessly with Doric. Upgrade today and let your creativity shine with precision and elegance.

GutenBee 2.17.4 release announcement

Posted On
GutenBee 2.17.4 release announcement WordPress template

With the recent update to WordPress 6.4, the removal of the lodash library from the block editor posed challenges for our GutenBee custom blocks plugin. Some users experienced difficulties in editing specific blocks, impacting the overall editing experience.

We’re pleased to introduce GutenBee v2.17.4, a patch release dedicated to addressing this issue. This update ensures seamless compatibility with WordPress 6.4, guaranteeing a smooth and efficient editing process.

Upgrade today through your WordPress dashboard to continue crafting compelling content with confidence. Thank you for creating with GutenBee.

Medi 1.1.6 is available for download

Posted On
Medi 1.1.6 is available for download WordPress template

Medi has just received an update! This version is all about the Underwood theme variation and Elementor.

You can now import Underwood’s Elementor based demo easily through the theme’s onboarding page. The import procedure is handled by the One Click Demo Import plugin, making it fast and very user friendly.

Furthermore all individual page templates can be imported straight into your Elementor pages. All you have to do to get access to them is install and setup the CSSIgniter Connector plugin.

Empower your political clients with Underwood, a theme variation that seamlessly integrates with Elementor. Craft dynamic websites that exude authority, trust, and connection. With Underwood and Elementor, you have the tools to build impactful digital platforms for the leaders of tomorrow. Elevate your agency’s portfolio and create the next success story in political web design.

Miniature 1.2.0 is now live

Posted On
Miniature 1.2.0 is now live WordPress template

We have released a new update for our WooCommerce.com theme Miniature.

Version 1.2.0 of Miniature includes an update for the thank you page template to ensure ongoing compatibility with the latest versions of WooCommerce.

The template change, introduced in WooCommerce 8.1, while minor, is not backwards compatible with earlier versions of WooCommerce. Please make sure you have the latest version of WooCommerce installed on your site before updating your theme.

Update today to take advantage of all the latest WooCommerce features, and provide your young customers with a delightful shopping journey with Miniature.

Customizing the WordPress Login Logo Using the Theme Customizer’s Logo

Posted On
Customizing the WordPress Login Logo Using the Theme Customizer’s Logo WordPress template

When setting up a WordPress website for a client, it’s the little touches that make a difference. One easy change that adds a personal touch is swapping out the standard WordPress logo on the login page for the client’s own logo. By using the logo they’ve already added in the WordPress Customizer, you can give their login page a familiar feel. This guide will help you do just that!

Always back up your theme before making any changes. Directly editing theme files can be risky, and a minor oversight might cause issues with your website’s functionality.

We are going to add the following code snippet in our active theme’s functions.php file.

Accessing the theme’s functions.php file

  • Navigate to your WordPress Dashboard.
  • Go to Appearance > Theme Editor.
  • On the right side, find and click on the functions.php file. This is where you’ll be adding the provided code.
  • Add the following code snippet.
function customizer_login_logo() {
if ( ! has_custom_logo() ) {
return;
}

$custom_logo_id = get_theme_mod('custom_logo');

$logo = wp_get_attachment_image_url($custom_logo_id, 'full');

echo '<style type="text/css">
#login h1 a {
background-image: url(' . esc_url( $logo ) . ');
background-size: contain;
width: auto;
height: 120px;
}
</style>';
}
add_action( 'login_head', 'customizer_login_logo' );

If you don’t see the Theme Editor option under Appearance it means that you are using a Full Site Editing theme. We will cover this scenario in an upcoming tutorial.

And that’s it!

Screenshot WordPress customizer logo used in the WordPress login page

Now every time you change your website’s logo through Appearance > Customize > Site Identity the logo on your WordPress login page will also be updated.

13 Essential wp-config.php tweaks every WordPress user should know

Posted On
13 Essential wp-config.php tweaks every WordPress user should know WordPress template

Inside every WordPress site, there’s a special file that can make a big difference: the wp-config.php file. Many people know the basics of this file, but there’s a lot more to it. In this guide, we’ll share some simple and useful tricks that can help your site work better and more safely. If you’re curious about getting the most out of WordPress, keep reading!

Read More

Ignition Framework 3.2.0 is now live

Posted On
Ignition Framework 3.2.0 is now live WordPress template

We’re pleased to announce the release of Ignition Framework version 3.2.0. This update ensures compatibility with WooCommerce 8.1.0. Please be aware that due to template changes in WooCommerce, this update is not be backwards compatible.

Additionally, we’ve resolved an issue where the GutenBee Google Maps block failed to load within Global Sections. A patch for this bug was also released for the GutenBee plugin and is available for download now.

You can get the latest version of the Ignition Framework plugin via your account’s download section or automatically if you have set up the CSSIgniter Connector plugin.

Thank you for your continued support.

Back to top