AppSumo Black Friday Deal
My Top Recommendation - Black Friday Deals
Here are the top deals on WordPress plugins.
Black Friday Deal - Wordpress Plugins
Best WordPress Black Friday Deals → Plugins
Here are the top deals on WordPress plugins.
Black Friday Deal - Wordpress Themes
WP Rocket
WP Rocket is considered the world’s most powerful caching plugin (trusted by +1,920,000 Websites) that makes your website extremely fast.
Black Friday Offer: 30% OFF
Coupon Code: Visit this link
Deal Valid Till: 23rd November – 1st December
[
GRAB NOW!
](https://bloggerspassion.com/recommended/wp-rocket/)
Gravity Forms
Gravity Forms is a powerful plugin for WordPress – capture leads, create surveys, accept payments, or create complex form solutions.
Black Friday Offer: 50% off all new licenses
Coupon Code: Visit this link
Deal Valid Till: 21st November – 30th November
[
50% Off All New Licenses
](https://bloggerspassion.com/recommended/gravity-forms-pricing/)
Link Whisper
A comprehensive WordPress plugin that helps you rank higher with intelligent internal link suggestions.
Black Friday Offer: FLAT $30 OFF All Plans
Coupon Code: Visit this link
Deal Valid Till: November 24th – November 30th
[
GRAB NOW!
](https://bloggerspassion.com/recommended/link-whisper/)
WPForms
The world’s best drag & drop WordPress form builder (joined by 5,000,000+ professionals) to design smarter Forms and surveys.
Black Friday Offer: Save up to 65%
Coupon Code: Visit this link
Deal Valid Till: 22nd November – 26th December
[
GRAB NOW!
](https://bloggerspassion.com/recommended/wpforms-bf/)
OptinMonster
The most powerful conversion optimization plugin in the world opted by 1,213,437+ websites.
Black Friday Offer: Save up to 65%
Coupon Code: Visit this link
Deal Valid Till: 22nd November – 26th December
[
GRAB NOW!
](https://bloggerspassion.com/recommended/optinmonster-bf/)
MonsterInsights
The best WordPress analytics plugin (joined by 3,000,000+ Professionals) to grow your business.
Black Friday Offer: Save up to 65%
Coupon Code: Visit this link
Deal Valid Till: 22nd November – 26th December
[
GRAB NOW!
](https://bloggerspassion.com/recommended/monsterinsights-bf/)
RankMath
The best SEO plugin for WordPress sites (**1 Million+**Happy User) that helps you to optimize your content with built-in suggestions.
Black Friday Offer: Upto 50% off
Coupon Code: Visit this link
Deal Valid Till: 22nd November – 26th December
[
GRAB NOW!
](https://bloggerspassion.com/recommended/rankmath/)
RafflePress
The most powerful WordPress giveaway plugin to grow your business with viral marketing.
Black Friday Offer: 30% OFF
Coupon Code: Visit this link
Deal Valid Till: 22nd November – 27th November
[
GRAB NOW!
](https://bloggerspassion.com/recommended/rafflepress/)
Social Snap
The ultimate WordPress social media plugin (291113+ downloads) to drive more traffic and increase engagement.
Black Friday Offer: 50% OFF
Coupon Code: Visit this link
Deal Valid Till: 23rd November – 29th November
[
GRAB NOW!
](https://bloggerspassion.com/recommended/social-snap/)
UpdraftPlus
The world’s most trusted backup plugin to keep your WordPress sites secure from all vulnerabilities.
Black Friday Offer: 40% OFF
Coupon Code: Visit this link
Deal Valid Till: 22nd November – 1st December
[
GRAB NOW!
](https://bloggerspassion.com/recommended/updraftplus/)
Browse this FAQ page to find answers to frequently asked questions that have not been covered elsewhere in the documentation.
==> Click Here to Get the Extendify Pro WordPress Plugin + Your Exclusive Launch Bonus <==
==> Click Here to Get the Extendify Pro WordPress Plugin + Your Exclusive Launch Bonus <==
The answers have been categorized into two groups:
- Answers to general questions without any lines of code.
- Answers to technical questions with code snippets, step-by-step instructions, etc.
General questions
Do I need to have prior experience before proceeding with the Mainroad theme?
Yes. You’ll need to be familiar with Hugo before proceeding. Our docs section is intended for intermediate to advanced users and developers. Our documentation may still be helpful to users with minimal experience, but are not comprehensive.
Do I need to use the extended version of Hugo?
No. Mainroad theme intentionally does not use any features of the extended version. As such, the extended version of Hugo is not required (but applicable).
Is there a list of all possible configuration options?
Configuration:
- See All Configuration Settings for the full list of Hugo-defined variables with their default values.
- See Mainroad config.toml example for the full list of Mainroad-specific variables.
Front Matter:
- See Front Matter Variables for the list of Hugo-defined Front Matter variables.
- See Mainroad Front Matter example for the list of Mainroad-specific Front Matter variables.
What if I have more questions? Should I create an issue?
We don’t provide personal technical support. As stated in our contributing guidelines, please do not use the issue tracker for personal support. This includes reports like: “How do I do this", “Everything is broken; help me”, “I changed something, and it doesn’t work anymore”, “It’s not a personal issue, but I just want to ask how X or Y works”, “I forked your theme, then something broke; fix this immediately”, and so on.
The issue tracker should only be used for bug reports, feature requests, and discussions that comply with our contributing rules. All other issues will be closed and marked as invalid.
Technical questions
I want to get the favicon.ico
and apple-touch-icon.png
to match my hightlightColor
. What should I do?
There is no way to do this on the fly with Hugo, but you can use the one-liners below with some preparations:
- Copy:
./themes/mainroad/static/favicon.ico
to./static/favicon.ico
./themes/mainroad/static/apple-touch-icon.png
to./static/apple-touch-icon.png
- At the beginning of each script, replace the color in the variable with your preferred color. You must use
six-digit hex triplet notation (e.g.,
#E22D30
) to make it work properly.
Go to the root of your project directory in the terminal and execute these two commands accordingly.
a=#E22D30;a=\\x${a:5:2}\\x${a:3:2}\\x${a:1:2};for i in 98 274 578;do printf $a|dd of=static/favicon.ico bs=1 seek=$i conv=notrunc;done
a=#E22D30;a=$(echo 504C54452A2A2A${a:1:6}|sed -e 's/../\\x&/g');printf $a|gzip|tail -c8|od -tx4 -N4 -An|xargs|sed -e 's/../\\x&/g'|printf $a$(cat -)|dd of=static/apple-touch-icon.png bs=1 seek=37 conv=notrunc
I want to use Google Programmable Search Engine as a site search engine. Is it possible?
Yes, it is possible to use Google PSE (CSE) as a site search engine.
-
Create a new search engine with Google PSE. Google account required.
-
Add a new layout.
Create file
./layouts/search/index.html
with the following content:{{ define "main" }} <script async src="https://cse.google.com/cse.js?cx=YOUR_PSE_ENGINE_ID"></script> <div class="gcse-search"></div> {{ end }}
Don’t forget to paste your Google PSE ID.
-
Add search page by creating file
./content/search.md
with the following content:--- title: Search authorbox: false sidebar: false pager: false ---
-
Optional. If you use the search widget, don’t forget to change the search box parameters:
[Params.widgets.search] url = "/search/" input.name = false input.pre = ""
Google PSE (CSE) should work when it’s done. Look and feel will be far from perfect, but you have to solve this problem with Google PSE Control Panel and additional CSS.