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”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:
- 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

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”Venus Retrograde in Pisces 8th house : Leo Lagna
Another Lady who has Venus retrograde in 8th house, I asked the following question
Continue reading “Venus Retrograde in Pisces 8th house : Leo Lagna”How Mars in 3rd house in Cancer sign will behave?
Someone asked this question that, how Mars posited in 3rd house in Cancer sign will behave? So by taking One Planet in One sign ( I have not taken any other aspects), Mars in 3rd in Cancer Sign may behave like following:
Continue reading “How Mars in 3rd house in Cancer sign will behave?”Result of Sun Mercury Saturn in 8th house Aquarius : Cancer Ascendant or Lagna
In my Guruji’s group I tried to predict a lady based on the planetary combination of Sun Saturn Mercury in 8th house Aquarius. She is Cancer Ascendant.
Continue reading “Result of Sun Mercury Saturn in 8th house Aquarius : Cancer Ascendant or Lagna”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
Continue reading “Blank Chart Observation for Virgo Ascendant”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.
Anger Control, Ego Control a little technique
I am not that much educated regarding Anger Management or Anger Control, but seems Lord Rahu Deb or Mother Nature helped me to imprint a little saying in my mind.
“Just wait a little, little wait… your response can be different, just wait, little wait ”
My heartily Gratitude to Lord Rahu Deb & Mother Nature. Not sure I will be able to keep following it or not.
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
}}
?>


