Skip to content

Instantly share code, notes, and snippets.

@FahmiRaazali
FahmiRaazali / GeneratePress Mobile Query
Created December 17, 2017 04:34
[GeneratePress Mobile Query] #generatepress #mobile
@media (max-width: 768px) {
/* CSS in here for mobile only */
}
@media (min-width: 769px) and (max-width: 1024px) {
/* CSS in here for tablet only */
}
@media (min-width: 1025px) {
/* CSS in here for desktop only */
}
@FahmiRaazali
FahmiRaazali / Linux Swapfile Partition
Last active July 25, 2018 12:33
[Linux Swapfile Partition] #cloudhosting
sudo fallocate -l 4G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
sudo nano /etc/fstab
@FahmiRaazali
FahmiRaazali / regex malaysia mobile number
Created November 14, 2017 08:14
[Regex Malaysia Mobile Phone Number] #regex
/^(\+?6?01)[0|1|2|3|4|6|7|8|9]\-*[0-9]{7,8}$/
@FahmiRaazali
FahmiRaazali / gravity form hide field label
Created October 15, 2017 13:08
[Hide Gravity Form Field Label] Code snippet to add option to hide Gravity Form field label #gravityform
add_filter( 'gform_enable_field_label_visibility_settings', '__return_true' );