Use the coupon code WORDPRESS and save 30% OFF! Buy Now

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

WooCommerce 8.0.x related updates

Last Updated On
WooCommerce 8.0.x related updates WordPress template

WooCommerce 8.0.x has been released. Below you can find some of the key features of this release.

CSSIgniter themes

All Ignition Framework themes  play nicely with WooCommerce 8.0.x. and did not require any updates. Make sure to update Ignition Framework to the latest v3.1.0 though.

Τhe deprecated themes Herringbone, Flevr and UltraSeven, have received updates to ensure compatibility with WooCommerce 8.0.x.

WooCommerce.com and WordPress.com themes

Rhodes and Miniature also received an update to the WooCommerce templates where necessary for 8.0.x.

WordPress.org themes

Our free themes Nozama Lite and Blockchain Lite have also been updated to maintain compatibility with WooCommerce 8.0.x.

WordPress 6.3 – What’s new and related updates

Last Updated On
WordPress 6.3 – What’s new and related updates WordPress template

The latest version of WordPress has just been released. Version 6.3 is available for download or update via your dashboard. This latest version brings plenty of changes, improvements and additions. Let’s take a look at some of them.

  • Support for PHP 5 is discontinued. The new minimum supported version of PHP is 7.0.0.
  • Do everything in the Site Editor: Content, templates, and patterns can now be edited together, without the user having to leave the Site Editor.
  • Preview Block themes.
  • Create and sync patterns (previously referred to as “Reusable blocks”).
  • New Command Palette Tool Enables Quick Search and Command Execution.
  • Design Tools updated to include more customization capabilities.
  • New design settings for the Cover block.
  • Style revisions in the Site Editor let users revert to previous versions of the design.
  • Two new blocks, Footnotes and Details.
  • Build templates with Patterns.
  • Many performance updates and accessibility improvements.
  • Failed update safeguards: auto-restore the previously installed version of plugins or themes if something goes wrong during a failed manual update.
  • Revamped Top Toolbar.
  • Set aspect ratio on images.
  • Improvements to List View’s drag-and-drop functionality.

CSSIgniter themes and plugins

The following themes and plugins have been updated to ensure compatibility with the latest version of the block editor.

Plugins:

Themes:

20 Best Gutenberg Blocks Plugins for WordPress

Posted On
20 Best Gutenberg Blocks Plugins for WordPress WordPress template

The WordPress block editor, or “Gutenberg” as it’s widely known, was introduced in version 5.0 and despite the initial negative reception, it has both grown as a project seeing rapid improvements between WordPress major releases, but also has started gaining some traction and much needed acceptance in the WordPress community.

The new editor’s main goal was to improve the content creation experience on WordPress sites by making it more flexible and more intuitive to use. Each piece of content is a block, hence it’s name “block editor”, which can be easily manipulated and moved around to help the user achieve the desired flow in their content.

WordPress offers all the basic blocks you might need to start writing all your posts, but this did not stop third party developers from extending the functionality of the existing core blocks and creating entirely new ones which offer features not yet available in core blocks. There are many major plugins which offer custom blocks which complement their product by making it easier to use with the block editor, WooCommerce is one of them, it comes with built in blocks to display product grids, featured and on-sale products, a cart and many more.

Apart from product enhancing blocks, there are many plugins in which the blocks are the products. Developers create collections of blocks which add new functionality to the block editor, such as maps, testimonials, ratings, tabs, food menus and more.

Read More

WordPress 5.5 released – What’s new

Posted On
WordPress 5.5 released – What’s new WordPress template

WordPress 5.5 is the second major release of 2020 after WordPress 5.4 released in March 31st, a third major release 5.6 is planned for December. This release further progresses with phase 2 of Project Gutenberg which aims to redefine the way we publish content on the web. This is accomplished with the introduction of block patterns, the block directory and block inserter, and more than 1500 improvements to the overall editor experience.

Read More

WordPress Plugins: How many is too many? + Tips on finding a plugin.

Last Updated On
WordPress Plugins: How many is too many? + Tips on finding a plugin. WordPress template

A question that has come up time and time again, how many plugins are too many WordPress plugins? There’s pretty much a WordPress plugin to add whatever functionality you require, be it a premium plugin or a free one.

That’s the beauty of WordPress. Talented developers answering user needs and coming up with something exceptional.

Read More

Korina, our WordPress theme for bars and restaurants now supports the upmenu.com ordering system

Posted On
Korina, our WordPress theme for bars and restaurants now supports the upmenu.com ordering system WordPress template

If you are a restaurant owner and have tried managing online orders via the available WordPress related solutions you know this can be a hassle, we have some good news for you. Our stunning restaurant WordPress theme Korina, just got a little bit better. The theme now supports the upmenu online ordering system to offer an easy solution when it comes to order management. Below we’ll take a brief look at some of the more interesting features offered by upmenu.

Read More

Get access to all WordPress themes & plugins

24/7 Support Included. Join 115,000+ satisfied customers.

Pricing & Sign Up

30-day money-back guarantee. Not satisfied? Your money back, no questions asked.

Back to top