Your website is the heart of your online presence so its quality determines how others perceive your business. To enhance your online presence you need a wellmade website, in other words a quality website. Before we get to quality website development, we must know what a quality website is. A quality website is a website …
Author Archives: Amanur Rahman
Remote Access in Premium Plugins & Themes thewordpressclub[dot]org
One widespread belief among webmasters is that attackers typically only compromise websites in a couple of ways: by exploiting vulnerabilities or stealing login credentials. Although these are certainly two of the more common attack vectors, another method is often overlooked — but the result is just as hazardous. Whenever an attacker can successfully trick a …
Continue reading “Remote Access in Premium Plugins & Themes thewordpressclub[dot]org”
Change the color of SVG icon using CSS
I was trying to change the color of a SVG icon using css. But was not able to do it of my own. Then I googled it and got a nice solution. It’s so simple. You just need to take the class or id or simply take the svg selector if you want to mention …
How To Reset Magento Password
Today I am going to show you that if you forgot your magento admin password then how to reset it. To reset it there are 2 ways. One you can do it via phpmyadmin. I am not going to discuss it here cause I had a problem with that. I am going to discuss using …
Rename Woocommerce Tabs
Renaming the tabs in single product view of woocommerce products is not that hard to do. Just adding a filter will do the trick. You can rename any tabs there. I am just showing you here one example so that you understand what I meant. Just check the below code . Just customize the code …
Remove Description Tab in Woocommerce
If you want to remove any tabs in woocommerce single product view under the image then there is a simple way to do so. Just you need to add a filter hook in your theme function.php file and you are done. Using this filter you can remove all of these 3 tabs or whatever you …
Creating a parent WordPress menu theme option
We can create a theme option easily using option tree plugin. You can use this plugin as plugin mode and also you can use this plugin inside your theme folder. To use it as plugin is very simple. Just install the plugin and you will have the option to use it in the WordPress dashboard …
Continue reading “Creating a parent WordPress menu theme option”
How to get the tag name without link
You can get the tag name without permalink to it by using below code which is simple.. It is a simple foreach loop that returns the name of the specific category
How to get the category name without link
Today I am going to discuss about a simple but handy technique that might save your time. I was thinking to get rid of the permalink from the category name in WordPress. I got the way finally.. You can do it by using below code . This code will return only the category name which …
Continue reading “How to get the category name without link”
Advanced Custom Field Post object Field Inside Repeater
Today I am going to show you how you can show a post object inside two nested repeater field. Please check the below code .