In the admin panel, on the left side there is now an option called “smart slider”.
When going into there you can select – “dashboard” from the side-menu that appears and then select to create a “new project”.
When creating a new project you can give that slider a specific name etc if you want to
The project type you’d likely want to use is slider and slider type simple, you’d probably want the name to be a reference to the post it is for.
When you add a slide, you can select image which will give you a prompt to add an image from the media library.
Once it’s been set up you need to add the shortcode in the blog editor section and it should populate itself on the frontend, this slider in the example was given an ID of 2, so you’d add [smartslider3 slider=”2”]
Well, I am cheating a bit here as it is still 2020, but it’s December 22nd so please forgive me.
I don’t have any plugins on this site, but I do on my ecommerce site – NiceMMA.com
I’ve also been asked to look into plugins and basically update myself with WordPress ready for 2021 and a slightly new job role, so a thought a blog post might make a good place to record my findings.
Rank Math SEO – WordPress Plugin
This is similar to Yoast but you get more in the free version. I’m not sure I’ll be using it in my day job though, as it asks for permission to analytics and search console.
You can update URLs, redirects and a bunch of other great things with the free version and it also gives a quick SEO audit, which is nice.
Rank Math SEO allows you to look at ‘focus keywords’ and makes it easy to update the meta details.
Duplicate Page – WordPress Plugin
If you make a specific blog layout or a contact page or anything and you don’t want to remake it from scratch, this plugin with duplicate the page or post for you and keep it as a draft so you can go in and edit it before publishing.
Manage WP – WordPress Plugin
Good for web developers, you can update all the plugins all in one go and do other stuff really easy
Empty Spam Bee
If you have a contact form or email address on your site – this should keep out most of the spam.
iThemes Security
Great security plugin. Turn off some of the notifications in the notifications center or you will get loads of emails. Check – secure the site and activate Network Group Brute Force Protection
Elementor Custom Skin
great for creating custom designs if you build WordPress sites using Elementor
This plugin works great with Custom Post Type UI
To Learn more about Elementor, subscribe to this guy’s Youtube channel –
Live Chat for WordPress
If you are looking for an ai chatbot for free, look at this plugin
Live chat can be an important tool for customer service. It can provide 24 hour instant customer support. Email and telephone contact details are great on a website, but a user is typically in a hurry and wants instant answers, and doesn’t want to wait 24 hours for a reply via email.
Click “Pages” (near the bottom-third of the page on the left)
Click on a high-performing post in terms of Impressions and Clicks in google
With the specific page/post selected, click on queries
Make a note of all relevant queries in the top 100
See if these queries can be added to the ranking post
Find any queries that are not directly related to your post
Create a new post specifically about this/these queries (if you rank for it without a specific post – you’ll rank better with a specific post for that query)
In the original post – put an internal link to the new post
The Chrome Inspect Element function is instrimental in making these changes to your WordPress theme.
Let’s say for example, that you want to change the main header on the homepage of your WordPress theme – then right click and choose “Inspect Element”.
Then click on the arrow icon on the top left of the window that opens, and your arrow should automatically select whatever you hover over.
Use a Text Document To Track Changes
Copy and paste code that you want to make changes to.
Make your changes in your notepad document and add a comment so that you can easily identify what you have changed.
Paste Changes into the Appearance>Customize>Additional CSS window
Once you have selected your code from the text/notepad document, you can go to the WordPress admin section /wp-admin and the Appearance menu and then “Customize”, then near the bottom, you should be able to paste in your new CSS.
To Preview CSS Changes
In inspect element, click the “+” icon on the top right.
You can then add styles to different elements.
Be aware that you may need to edit the parent element, to see any changes (rather than the specific element)
To Remove Elements on a Webpage
In CSS, if you change the “Display:” value to “none”, from inline-block etc.
display: none;
You’ll need to copy & paste the whole block of code from inspect element’s CSS window, into the Custom CSS menu’s window in WordPress’s (Appearance>Customize>Custom CSS)
The video below has more details on how to do this:
To Change the Colour of Elements
Use the same method as above – i.e. select the element with the inspect element tool.
Select the item that you want to choose using the arrow in the Inspect Element window (arrow is on top left)
Then change the colour using the panel on the right:
Finally, paste the new code for that element, into the Custom CSS window in WordPress (go to Appearance>Customize – wait for the Customize menu to load and then click either “Customize CSS” or “Additional CSS” which is normally located near the bottom left
Change the Colour of Font-Awesome Icons
This is easily done, the same way as shown above.
Select the icon, then change the colour in the CSS panel of inspect element on the right.
Select all the CSS in that window and then paste it into the Custom CSS/Additional CSS window on the left:
Changing the Fonts on Your WordPress Theme
Go to fonts.Google.com to see all the available fonts (well, most of them)
Open Inspect-Element – click the arrow on the top left of the window
Then, again just select the text that you want to change and this time change the font-family value to the one you want
Remember to add all the code/CSS from the window precise window that you edit on the right, to the Customize/Additional CSS panel on the left.
Using this method you can also change:
Padding & Margins Containers Background Image, Position etc. Sidebar
!Important
By adding !important to your CSS, you can ovveride all other rules relating to that element. Use this sparingly though as it will get confusing.
To follow along with this tutorial, please install and open Google Chrome, and then add the following extension (at your own risk etc. but I’m sure they’re fine):
Firebug for Chrome (or you can just use Developer tools by right-clicking on parts of your webpage and selecting “Inspect” or “Inspect Element” from the menu that appears – Firebug works well on Chrome on my desktop – but not on my Macbook)
To get used to using Firebug – open your website – or just go to a website of your choice.
Click the Firebug extension on the top right of your Google Chrome browser
Update – Using Dev Tools Inspect Element in Chrome is just as good. Just remember to click the arrow icon on the top left of the window that appears, so that you can easily select individual elements.
Adding CSS to WordPress – Additional CSS
Most WordPress themes, have a “Customize” option, that contains a menu item called “Additional CSS”
Login – on the ‘header menu’ click Customize – then Click “additional CSS”
You can then paste your CSS directly into the box provided:
Note that if you add CSS to the box on one page – but it refers to an element that is on other pages – e.g. the main-menu – then this will be applied to all pages.
If you wanted to make a change to one page only – to a ‘global-element’ such as the main-menu – you would need to add a new class or id – by editing the HTML in the Theme Editor in the dashboard/wordpress.
Try Out Your New CSS in Inspect Element or Firebug
Once you right click and “Inspect” the CSS – you can edit it.
When you have made a change to the CSS in the Inspect-Window, copy it by highlighting it and holding CTRL + V
Open the “Additional CSS” menu item, then paste in the edited snippet of code
Paste CSS into the Additional CSS Box
Now that the above code has been added, and published, the Menu Items turn red when the mouse-cursor hovers over them:
Basics of CSS
The basic concept and idea of CSS is that you can style multiple items, with one piece of code.
So for example, rather than adding a colour to every header on your website – you could ‘tell your CSS stylesheet – to make every H1 a specific colour.
Although you can use “inline CSS” by adding it directly to the HTML – best practice is to add all of your CSS to a stylesheet, which is then linked to the HTML. This is done for you already in WordPress, via the “Additional CSS” box in the Customize menu and the Appearance menu in WP-admin, under Theme Editor.
CSS Selectors
Understanding how CSS works is directly linked to understanding the concept of ‘selectors’.
CSS selects a certain HTML tag, a class or an ID and then ‘tells the browser/HTML’ what style to apply.
HTML Tags are already predifined, examples include – p (paragraphs) – H1 (main headers) – a (anchor text)
Classes and IDs are not predefined by any internet-standards such as W3. You can give a HTML tag a class or an ID – so that specific paragraphs or headers etc. can be styled and not others.
A stylesheet must ‘select’ an element, ID or class, to change the style.
To select an ID
e.g.
<div id = “main-nav“>
The ID selector is preceded by a hash character (“#”) in the stylesheet:
#main-nav {
background-color: #ccc;
padding: 20px
}
Selecting Classes
In the CSS, a class selector is a name preceded by a full stop
.intro {
color: red;
font-weight: bold;
}
Universal Selectors
The asterix * is the “universal selector”
The below CSS would select all items and make their background colour yellow:
* {
background-color: yellow;
}
A Few Examples of CSS
Make the text within the main headers (h1s) – coral:
h1 {
color: coral;
}
Make the text within the class called “main” centred
.main {
text-align:center;
}
CSS Animation
Animation in CSS, usually incorporates Keyframes.
The keyframes must then select an element, for example, this keyframe selector would determine the styles and/or rules for the element called “slidein”:
Step 1 – Configure the Animation
Style the element – a paragraph (p) in the example above. You would style the paragraph, or H1 or whatever element you want to animate, with the animation properties.
The animation properties are:
animation-name This must sync-up with the name with the@keyframes at-rule
animation-duration
animation-timing-function Configures the timing of the animation, relating to how the animation transitions through keyframes.
animation-delay How long between the element loading and the animation starting?
animation-iteration-count Defines the number of times the animation should loop
To see a good example of CSS animation, please see this one on impressivewebs.com (this free version of wordpress won’t allow me to embed code etc.)
To be fair, it’s probably a bit easier to animate with JQuery – but still very handy to know CSS animations, especially when you’re trying to work out what’s going on a give webpage in terms of SEO etc.
CSS Transitions
Properties are animated from “initial to “final states” using CSS Transitions.
In the example above:
a div class is created in HTML and named “box”
The box is then styled in CSS to be red and specific dimensions
Transition is added to animate the box
Transition used on itself is shorthand, instead of declaring what to transition, for how long etc.
In the example above, we transition the background colour, over 2 seconds and tell it to “ease out”
The background colour to change to on-hover is declared as green
moz-transition, webkit transition etc are included for other browsers – usually older ones
By using keyframes and changing the opacity of the ‘nth-child’ and altering the animation delay, you get the rotating word effect:
What is SaSS?
SaSS stands for “Syntactically Awesome Style Sheets”
SaSS look a bit different to standard CSS, as you don’t need the semi-colons or curly braces.
Variables
With SaSS, you can use the dollar symbol – $ to store variables.
You can, for example, create your own text variable, giving the text several styles such as size, font family, font style and a font weight – and store this information in a font variable called $my-font.
You can then call this variable to style various parts of a webpage
body {
font: 100% $my-font;
}
or you could, create a colour variable, to save having to write out the hex code each time, e.g.
Security threats are not just about tangible properties like your house or car, as there are also security threats online. In fact, there are several of them and they can attack your WordPress blogsite if you do not have the proper protection.
Your blogsite is considered as your home in the digital world. It contains everything that allows you to run a successful blog, which is needed to ensure that you keep your followers interested and entice more to read your posts. A security breach on your site could ruin its content and this could lead the entire blogsite to its downfall.
This is something that you do not want to happen, especially if you are using it for your business. You must secure your WordPress blog from these potential threats, just as you would keep your most valuable properties secured. You can do this by gaining awareness on the security risks that could put your blogsite in jeopardy. If you know the risks that you might be facing, you can plan ahead so they can be prevented and you wouldn’t have to deal with them.
We prepared an infographic that lists some of the most usual security attacks on WordPress sites that bloggers like you might face.
Get the list from our illustration below:
Surprised with the threats that might put your WordPress at risk? Learn more about how to secure your blogsite and other blogging tips at http://www.startbloggingonline.com/.