As an Astrology Enthusiast I have collected these conversation from the comments section of my Guru Deepanshu Giri Ji’s facebook page LunarAstro. The Post is written by Shivangi Sharma and answer is given by Mr Sanjay A.
Continue reading “Question Regarding 9th Lord in 6th, 6th lord in 9th and 6th lord in 11th”Mercury Ketu : My observation if you are in Anxiety
At first I want to thanks my beloved Guru Deepanshu Giri of Lunar Astro. I bow down my head to my Guru’s feet.
Here I am sharing you my observation of Ketu Sukshmadasha and Mercury Prana Antardasha. Result may very based on position of planets. So please use these for research and learning purpose.
Continue reading “Mercury Ketu : My observation if you are in Anxiety”WordPress free theme for cooking or gardening or healthy living : Modification and Make your site live
Sapor is a free wordpress theme which you can use for your cooking or gardening or healthy living blog site. Here I am sharing you css customization which you can use to customize or style it if you want to use the theme.
Sapor Theme Demo to get idea how it looks
Continue reading “WordPress free theme for cooking or gardening or healthy living : Modification and Make your site live”Mars in 4th house Precautions
These precautions of Mars in 4th house of your D1 chart, are collected from my beloved Guru Deepanshu Giri Ji’s video ( i have embedded the video too )
If in your Natal Chart (D1 chart) if Mars is situated in 4th house, please try to keep these precautions in mind:
Continue reading “Mars in 4th house Precautions”Add additional font size in WordPress Visual Editor ( Tiny MCE Editor)

The Default font which shows in Visual Editor font size dropdown is 8px 10px 12px 14px 16px 20px 24px 28px 32px 36px 48px 60px 72px 96px.
Continue reading “Add additional font size in WordPress Visual Editor ( Tiny MCE Editor)”Mercury in 8th house Precautions
** This contents are collected from my Guru’s (Deepanshu Giri) facebook page Lunarastro . The post is written by Nitin Bhatt . So these contents are for learning and research purpose only. I will gradually Update it.
As we know in astrology Mercury is communication and 8th house is Death. So Mercury in 8th is the bearer of the bad news. Native may have committed sin of giving someone bad news just for joke, as 8th house is death, breaks and mercury represents communication, humour, so in this life also native will get habit of uncontrollable laugh, miscommunication at wrong time and even speaking Ill of the dead.
That is why writing obituary for ancestors and write and communicate good things about them will ward off negative energy of the Mercury in the 8th house.
Also Mercury in 8th house shows incomplete rituals of death in family.
Planets in 8th House
Whichever planet is in 8H it is highly advisable to take advice regarding the signification of that planet. Example: Venus in 8H must get a proper muhurt or chart matching before marriage. Mercury in 8H must take advice regarding financial matter.
Note: Above note i have collected from Lunarastro facebook post comments section and commentor mentioned he collected it from Sree Visti larsen.
Moon in 2nd House
** This contents are collected from my Guru’s (Deepanshu Giri) facebook page Lunarastro and also from Saptarshi Astrology of Respected Sunil John Sir. So these contents are for learning and research purpose only. I will gradually Update it.
- People with the moon in the 2nd house, or cancer in the 2nd house, shows that family members, close relatives like brothers, sisters, grandparents, uncles, and aunts all these people used to take advantage of these natives throughout life. People used to play with their emotions and innocent nature. Please do not allow anyone to play with your emotions because it disturbs your peace of mind.
New User Registration with image upload Facility : WordPress
Here I am sharing you template file and the related functions.php file code to register a wordpress user ( user role is Editor)
The template is doing the following to register a new wordpress user
- Upload image
- Send mail to Admin and Registered user both after successful registration
- Saving the profile or uploaded image in /wp-content/uploads/USER_ID
- Redirect to a url ( slug is used in the code) after successful registration
Author ( user role ) can only see his own uploaded images without making advance custom fields hidden
Generally , due to this code $wp_query->set(‘author’, $current_user->ID); the custom fields of Advanced Custom Fields ( acf ) got hidden. So i have used this following code to solve the issue. So if you use this code in function.php or using code snippet plugins, Author can see only his uploaded images instead of all users image.
function restrict_author_media_library($wp_query) {
if ( $wp_query->get('post_type') == 'attachment' && current_user_can('author')) {
$current_user = wp_get_current_user();
$wp_query->set('author', $current_user->ID);
}
}
add_action('pre_get_posts', 'restrict_author_media_library');