DailyPic Privacy Policy

Prasad Kirpekar built the DailyPic app as a Free app. This SERVICE is provided by Prasad Kirpekar at no cost and is intended for use as is.

This page is used to inform website visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service.

If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy.

The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at Status Downloader unless otherwise defined in this Privacy Policy.

Information Collection and Use

For a better experience, while using our Service, I may require you to provide us with certain personally identifiable information, including but not limited to None. The information that I request is retained on your device and is not collected by me in any way

The app does use third-party services that may collect information used to identify you.

Link to the privacy policy of third party service providers used by the app

Log Data

I want to inform you that whenever you use my Service, in a case of an error in the app Data is collected and information (through third party products) on your phone called Log Data. This Log Data may include information such as your device Internet Protocol (“IP”) address, device name, operating system version, the configuration of the app when utilizing my Service, the time and date of your use of the Service, and other statistics.

 

Changes to This Privacy Policy

I may update our Privacy Policy from time to time. Thus, you are advised to review this page periodically for any changes. I will notify you of any changes by posting the new Privacy Policy on this page. These changes are effective immediately after they are posted on this page.

Contact Us

If you have any questions or suggestions about my Privacy Policy, do not hesitate to contact me.

Privacy Policy

App Tank built the Wallpaper app as a Free app. This SERVICE is provided by App Tank at no cost and is intended for use as is.

This page is used to inform website visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service.

If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy.

The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at Status Downloader unless otherwise defined in this Privacy Policy.

Information Collection and Use

For a better experience, while using our Service, I may require you to provide us with certain personally identifiable information, including but not limited to None. The information that I request is retained on your device and is not collected by me in any way

The app does use third-party services that may collect information used to identify you.

Link to the privacy policy of third party service providers used by the app

Log Data

I want to inform you that whenever you use my Service, in a case of an error in the app Data is collected and information (through third party products) on your phone called Log Data. This Log Data may include information such as your device Internet Protocol (“IP”) address, device name, operating system version, the configuration of the app when utilizing my Service, the time and date of your use of the Service, and other statistics.

 

Changes to This Privacy Policy

I may update our Privacy Policy from time to time. Thus, you are advised to review this page periodically for any changes. I will notify you of any changes by posting the new Privacy Policy on this page. These changes are effective immediately after they are posted on this page.

Contact Us

If you have any questions or suggestions about my Privacy Policy, do not hesitate to contact me.

Status Downloader Privacy Policy

Prasad Kirpekar built the Status Downloader app as a Free app. This SERVICE is provided by Prasad Kirpekar at no cost and is intended for use as is.

This page is used to inform website visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service.

If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy.

The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at Status Downloader unless otherwise defined in this Privacy Policy.

Information Collection and Use

For a better experience, while using our Service, I may require you to provide us with certain personally identifiable information, including but not limited to None. The information that I request is retained on your device and is not collected by me in any way

The app does use third-party services that may collect information used to identify you.

Link to the privacy policy of third party service providers used by the app

Log Data

I want to inform you that whenever you use my Service, in a case of an error in the app Data is collected and information (through third party products) on your phone called Log Data. This Log Data may include information such as your device Internet Protocol (“IP”) address, device name, operating system version, the configuration of the app when utilizing my Service, the time and date of your use of the Service, and other statistics.

 

Changes to This Privacy Policy

I may update our Privacy Policy from time to time. Thus, you are advised to review this page periodically for any changes. I will notify you of any changes by posting the new Privacy Policy on this page. These changes are effective immediately after they are posted on this page.

Contact Us

If you have any questions or suggestions about my Privacy Policy, do not hesitate to contact me.

How to Remove Additional Meta Text From Posts or Pages

This post describes how you can remove additional text in meta date of post. In this post we will see simple steps to hide additional text created by theme.

Note: This post intended for plugin WP Meta And Date Remover but you can use even without it.

How to hide Additional text?

This can be done by simple CSS code. The code is depend on theme itself.

There is CSS property ‘display:none’ which hides everything on which it is applied.

How to use CSS this property?

WordPress themes generally have CSS class for meta data. We need to find that class name and need to write simple code add below.

.class-name{  display:none;  }

How to find your theme CSS class?

This is pretty easy all you need is Chrome/Mozilla browser. In this example we will use Chrome.

Follow these steps to find your Meta class.

Open webpage in browser and Press F12. It will open developer tools

dev_tools

If you are using WP Meta and Date Remover and it didn’t removed all the meta it might show

text like ‘by‘ or ‘posted by‘ etc

Now select inspector in chrome. See the red square in picture below.

dev_tools

Move the pointer to the meta description.

inspected_element

Now a tooltip will popup here ‘.adt‘ is class we wanted to search

Now add this code in settings page of WP Meta and Date remover Plugin

.adt{  display:none!important; }

replace .adt with your CSS class.

adding_css

After saving settings refresh the page.

after_patch

Meta is gone completely!