Vedic Astrology Insights

Blank Chart Predictions on Cancer Ascendant or Lagna

Cancer Ascendant blank chart

Basically while learning astrology one day my Guru asked me to give him a list of blank chart predictions on Cancer Lagna or Ascendant. He was trying to check my thought process. So here are those which I shared to him. Though it is just blank chart predictions which came in my mind based on my little knowledge. Please share your thoughts in the comments section too.

Continue reading “Blank Chart Predictions on Cancer Ascendant or Lagna”
Web Development & WordPress

How to add own custom font without the help of plugins in wordpress or any sites.

Here I am sharing the small procedure about how to use own custom font without the help of plugins in wordpress site. This procedure can be used for any type of sites or platform.

Here are the steps:

  1. At first upload your choiceable font ( which you want to use in the site ) in the root directory using ftp or through cpanel. I have attached screenshot for better understanding
Continue reading “How to add own custom font without the help of plugins in wordpress or any sites.”
Web Development & WordPress

How to add a spinner just above the submit button of form without modifying php code using JQuery

Actually this is little bit advanced technique, you need to have a good idea regarding jQuery. Basically I had to add a spinner just before the submit button of the form, so that viewers get idea that the form submission is working and they don’t get confused.

Here is the JQuery Code I used:

Continue reading “How to add a spinner just above the submit button of form without modifying php code using JQuery”
Vedic Astrology Insights

Blank Chart Observation for Virgo Ascendant

These are just few blank chart predictions regarding Virgo Ascendants. Though the results will very based on the planetary combinations , strengths and yogas. As an enthusiast of astrology i am sharing my knowledge to you. If you are a Virgo Ascendants please share your view too

Blank Chart for Virgo Ascendants
Continue reading “Blank Chart Observation for Virgo Ascendant”
Web Development & WordPress

How to create Terms and Condition checkbox with a link in Contact Form 7

If you want to create a Terms and Condition Checkbox with the link pointing to the page, you can create it easily. Here is the code which you need to use

 [checkbox* terms-condition "I have read and agree to the terms and conditions. *"] <a href="http://www.yoursite.com/terms-and-condition"> Terms & conditions </a> 

The code will go in the Contact Form 7 ( like below)

Thats it. If you have any Question feel free to do comments below.

Web Development & WordPress

Redirect Logged out users to different page based on Body Class : WordPress redirection using php and jQuery

Suppose you want your visitor not to see any specific pages and want them to redirect to login or register page, then you can do this using this following code. Here i used the body class of wordpress page. Using the Body class and using php and jquery you can redirect it .

<?php
   $classes = get_body_class();
if (in_array('my-profile',$classes)   || in_array('page-id-2324',$classes)    ) {

if( ! is_user_logged_in() ) {
     ?>
  <script>
 window.location.href = "https://yoursiteurl.com/register/";
  </script>	      
     
<?php
}} 
?>