$this to refer to the current object. Use self to refer to the current class. In other words, use $this->member for non-static members, use self::$member for static members.
Comments closedCategory: Uncategorized
Magento 2 – Composer Installation failure for Page Builder
You can follow these links to install page builder Link
Comments closedScroll block on youtube video play
iframe </div> <style> .embed-responsive { position: relative; display: block; width: 100%; padding: 0; overflow: hidden; box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, .075); max-width: 940px;…
Leave a CommentPHP Version Update Command on Linux
sudo apt-get install -y php7.2 sudo apt-get install -y php7.2 libapache2-mod-php7.2 php7.2 php7.2-common php7.2-gd php7.2-mysql php7.2-mcrypt php7.2-curl php7.2-intl php7.2-xsl php7.2-mbstring php7.2-zip php7.2-bcmath php7.2-iconv sudo update-alternatives…
Leave a CommentGrunt not working in Server
Try to rename file in root path grunt-config.json.smaple TO grunt-config.json
Leave a CommentNPM update on Linux using CMD
npm cache clean -f npm install -g n n stable Refrence Site Use sudo if not have user permission.
1 CommentWordPress- disable plugin update manually
Disable plugin update Add this code in your plugin root file.
1 2 3 4 5 |
add_filter('site_transient_update_plugins', 'remove_update_notification'); function remove_update_notification($value) { unset($value->response[ plugin_basename(__FILE__) ]); return $value; } |
OR
1 2 3 4 5 6 7 8 9 |
function disable_plugin_updates( $value ) { if ( isset($value) && is_object($value) ) { if ( isset( $value->response['newsletter/plugin.php'] ) ) { unset( $value->response['newsletter/plugin.php'] ); } } return $value; } add_filter( 'site_transient_update_plugins', 'disable_plugin_updates' ); |
Frontend Developer Tools
Libraries & Plugins jQuery Modernizer HTML5 Boilerplate Normalize.css jQuery UI Alertify.js Datatables Alertify YUI3 AlloyUI JavascriptOO AngularJS Vue.js CSS & HTML5 Frameworks Foundation Bootstrap Framework…
Leave a CommentText Gradient Color | CSS3
Text Gradient
1 2 3 4 |
h1{background: -webkit-linear-gradient(70deg, #dc10a5, #8f5580 45%, #727bd1 60%, #403fb9 65%, #403fb9); -webkit-background-clip: text; -webkit-text-fill-color: transparent; color: #757bcd;} |
Smooth scroll to div id jQuery
jQuery(“#button”).click(function() { jQuery(‘html, body’).animate({ scrollTop: jQuery(“#myDiv”).offset().top }, 1000); });
Leave a Comment