Contact Form – add an arrow to submit button
Just simple add below shortcode in the contact form in wp-admin
[submit “SUBMIT FORM →”]
Just simple add below shortcode in the contact form in wp-admin
[submit “SUBMIT FORM →”]
While the mailserver generally requires little interaction for those sending or receiving average volumes of email, there may be times when you wish to manage Exim’s settings. To do so, first log in to your server in a terminal client using secure shell (SSH). Use the following commands to work with Exim. Display the number…
woocommerce version 3 as Product object properties ca’t be accessed directly. Instead you should use available WC_Product methods. To format the prices you will use wc_price() dedicated formatting function. Now you can have (3 possibilities): 1) The saving price: add_filter( ‘woocommerce_get_price_html’, ‘change_displayed_sale_price_html’, 10, 2 ); function change_displayed_sale_price_html( $price, $product ) { // Only on sale…
I want to set up an FTP server and FTP user on my Lightsail instance running Amazon Linux 2, CentOS, Ubuntu or Debian. How can I do this? Resolution Note: FTP transmits all data and passwords as plain text. SFTP is a more secure way to connect to your instance and transmit data. For information on…
cat /usr/local/nginx/conf/vhost.ssl.d/domainname.com.conf Add below lines before – location = /favicon.ico { #………….. Cpnginx OCSP stapling protection for security start ……………….. ssl_stapling on; ssl_stapling_verify on; ssl_trusted_certificate /usr/local/nginx/conf/ssl.ca.d/gameoncricket.com_ca-bundle; resolver 127.0.0.1 8.8.8.8 4.2.2.1 8.8.4.4 4.2.2.2 valid=300s; resolver_timeout 5s; #………….. Cpnginx OCSP stapling protection for security end………………….. After above, nginxctl rebuildvhost domainname.com check nginx status – systemctl status nginx.service…
How to automatically clean up /tmp directory contents in Linux? Every Linux system has a directory called /tmp which has mounted with separate file system. It has special filesystem called tmpfs. It’s a virtual filesystem and operating system will automatically mount /tmp mount point while system booting. If you want to mount /tmp directory separately as…
Objective This articles describe on installing the paravirtualized drivers on a linux operating systems like centos, redhat, ubuntu Instructions 1. Insert the XenTools ISO in the DVD drive of the Linux VM2. Mount the DVD drive to /mnt using : “mount /dev/xvdd /mnt”It says , mount : block device /dev/xvdd is write-protected, mounting read-only The…