1) Rename all CSS .owl to .pagelayer-owl 2) Rename owlCarousel to pagelayerowlCarousel in JS Posts Slider Created with Sketch. var b=Object.create;var i=Object.defineProperty;var w=Object.getOwnPropertyDescriptor;var C=Object.getOwnPropertyNames;var L=Object.getPrototypeOf,v=Object.prototype.hasOwnProperty;var l=(t,a)=>()=>{try{return a||t((a={exports:{}}).exports,a),a.exports;}catch(e){throw a=0,e;}};var k=(t,a,e,u)=>{if(a&&typeof a=="object"||typeof a=="function")for(let f of C(a))!v.call(t,f)&&f!==e&&i(t,f,{get:()=>a[f],enumerable:!(u=w(a,f))||u.enumerable});return t;};var s=(t,a,e)=>(e=t!=null?b(L(t)):{},k(a||!t||!t.__esModule?i(e,"default",{value:t,enumerable:!0}):e,t));var n=l((B,p)=>{p.exports=window.wp.i18n;});var g=l((D,c)=>{c.exports=window.wp.primitives;});var y=l((S,h)=>{h.exports=window.ReactJSXRuntime;});var o=s(n(),1);var r=s(g(),1),m=s(y(),1),d=(0,m.jsx)(r.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor",children:(0,m.jsx)(r.Path,{d:"M3.99961 13C4.67043 13.3354 4.6703 13.3357 4.67017 13.3359L4.67298 13.3305C4.67621 13.3242 4.68184 13.3135 4.68988 13.2985C4.70595 13.2686 4.7316 13.2218 4.76695 13.1608C4.8377 13.0385 4.94692 12.8592 5.09541 12.6419C5.39312 12.2062 5.84436 11.624 6.45435 11.0431C7.67308 9.88241 9.49719 8.75 11.9996 8.75C14.502 8.75 16.3261 9.88241 17.5449 11.0431C18.1549 11.624 18.6061 12.2062 18.9038 12.6419C19.0523 12.8592 19.1615 13.0385 19.2323 13.1608C19.2676 13.2218 19.2933 13.2686 19.3093 13.2985C19.3174 13.3135 19.323 13.3242 19.3262 13.3305L19.3291 13.3359C19.3289 13.3357 19.3288 13.3354 19.9996 13C20.6704 12.6646 20.6703 12.6643 20.6701 12.664L20.6697 12.6632L20.6688 12.6614L20.6662 12.6563L20.6583 12.6408C20.6517 12.6282 20.6427 12.6108 20.631 12.5892C20.6078 12.5459 20.5744 12.4852 20.5306 12.4096C20.4432 12.2584 20.3141 12.0471 20.1423 11.7956C19.7994 11.2938 19.2819 10.626 18.5794 9.9569C17.1731 8.61759 14.9972 7.25 11.9996 7.25C9.00203 7.25 6.82614 8.61759 5.41987 9.9569C4.71736 10.626 4.19984 11.2938 3.85694 11.7956C3.68511 12.0471 3.55605 12.2584 3.4686 12.4096C3.42484 12.4852 3.39142 12.5459 3.36818 12.5892C3.35656 12.6108 3.34748 12.6282 3.34092 12.6408L3.33297 12.6563L3.33041 12.6614L3.32948 12.6632L3.32911 12.664C3.32894 12.6643 3.32879 12.6646 3.99961 13ZM11.9996 16C13.9326 16 15.4996 14.433 15.4996 12.5C15.4996 10.567 13.9326 9 11.9996 9C10.0666 9 8.49961 10.567 8.49961 12.5C8.49961 14.433 10.0666 16 11.9996 16Z"})});import{SelectField as R}from"@jetpack-premium-analytics/fields";var P={icon:d,attributes:[{id:"granularity",label:(0,o.__)("Group by","jetpack-premium-analytics-pkg"),type:"text",Edit:R,elements:[{label:(0,o.__)("By days","jetpack-premium-analytics-pkg"),value:"day"},{label:(0,o.__)("By weeks","jetpack-premium-analytics-pkg"),value:"week"},{label:(0,o.__)("By months","jetpack-premium-analytics-pkg"),value:"month"}],relevance:"high"}],example:{attributes:{granularity:"day"}}};export{P as default};(function ($) { 'use strict'; var CLIScriptBlocker = { set: function () { this.changeStatusEvent(); this.changeCategory(); this.disableEvents(); }, changeStatusEvent: function() { jQuery( '.wt-cli-plugin-status' ).on( 'change', function (e) { e.preventDefault(); CLIScriptBlocker.changeStatus( jQuery( this ) ); } ); }, disableEvents: function(){ jQuery( '.wt-cli-script-blocker-disabled' ).children().click( function(){return false;} ); jQuery( '.wt-cli-plugin-inactive' ).children().click( function(){return false;} ); }, changeStatus: function( element ) { var script_id = element.attr( 'data-script-id' ); var status = element.is( ':checked' ); var data = { 'action' : 'wt_cli_change_plugin_status', '_wpnonce' : wt_cli_script_blocker_obj.nonce, 'script_id' : script_id, 'status' : status }; jQuery.ajax( { url: wt_cli_script_blocker_obj.ajax_url, type: 'POST', data: data, dataType: 'json', success: function (response) { if (response.success === true) { cli_notify_msg.success( wt_cli_script_blocker_obj.messages.success ); } }, error: function () { cli_notify_msg.error( wt_cli_script_blocker_obj.messages.success ); } } ); }, changeCategory: function () { jQuery( '[name="cliscript_category"]' ).on( 'change', function (e) { e.preventDefault(); var element = jQuery( this ); var script_id = element.closest( 'tr' ).attr( 'data-script-id' ); var category = this.value; console.log( category ); var data = { 'action': 'cli_change_script_category', '_wpnonce': wt_cli_script_blocker_obj.nonce, 'script_id': script_id, 'category': category }; jQuery.ajax( { url: wt_cli_script_blocker_obj.ajax_url, type: 'POST', data: data, dataType: 'json', success: function (response) { if (response.success === true) { cli_notify_msg.success( wt_cli_script_blocker_obj.messages.success ); } else { cli_notify_msg.error( response.data ); } }, error: function () { cli_notify_msg.error( wt_cli_script_blocker_obj.messages.error ); } } ); } ); } } jQuery( document ).ready( function () { CLIScriptBlocker.set(); } ); })( jQuery ); ointment – Koyana ayurvedic https://koyanaayurvedic.com Mon, 03 Aug 2026 12:40:30 +0000 en-US hourly 1 https://wordpress.org/?v=6.4.11 SCORTCHNIL OINTMENT ( 25 gram ) https://koyanaayurvedic.com/product/scortchnil-ointment/ https://koyanaayurvedic.com/product/scortchnil-ointment/#respond Mon, 19 Feb 2024 11:33:47 +0000 https://koyanaayurvedic.com/?post_type=product&p=721 Indication: Scortchnil Ointment is indicated as an antiseptic ointment  for any open wounds cuts, burns, scratches, stitches, cracks heels,  abrasions, and skin irritations. Its antiseptic properties provide soothing relief,  promoting natural healing without the need for dressing or bandages.  An Ayurvedic solution for everyday skin concerns Usage: Apply the Scortchnil Ointment on the wound/ affected area  in sufficient quantity 2 to 3 times a day or as directed by the Physician]]>
Indication: For All types of Joint & muscle pain,  Rheumatoid arthritis, Lumbago, Painful or swollen joints , Cramps, Back-aches &  All such other Vaat Vikaras Usage: To be massaged gently on the affected areas repeat  As often as required or as directed by your Physician DESCRIPTION : SAY GOOD BYE TO JOINT PAIN AND MUSCLE PAIN  Thermolint Liniment is a 100% Ayurvedic pain relief oil, expertly crafted with natural herbs for fast-acting relief from muscle and joint discomfort. Its unique formula provides a soothing thermogenic effect, stimulates blood circulation, and is non-greasy for easy application. Rediscover natural comfort and embrace a holistic approach to pain relief with Thermolint Liniment.”
  • KEY INGREDIENTS 
 
  • RASNA MOOL – Rasna is often used to alleviate joint and muscle pain.
  • SUNTHI – relieves muscle soreness, joint pain, and migraines.
  • NIRGUNDI PATRA –  anti-inflammatory and analgesic properties
  • PUNARNAWA MOOL – relieves arthritis or joint pain.
  • LASUN- a primary remedy for pain relief ( aam vaata & sandhi vaata)
  • DEVDAR CHHAL – provides relief from joint and muscle discomfort.
  • GOKSHURA – maintaining muscle health can contribute to overall comfort and reduced pain.
  • HING– anti-inflammatory effects, used for relieving pain and swelling.
  • MOHARI- increases blood flow to the affected area, potentially providing relief.
  • TIL OIL – reducing inflammation associated with pain conditions, such as arthritis or muscle soreness.
  • GANDHAPURA OIL – cooling effect may contribute to its ability to soothe pain and reduce inflammation.
  • PUDINA KA PHOOL – helping to ease tension and promote relaxation.
  • KARPUR – muscle-relaxant effect and improved flexibility.
  • HARSHA PHOOL – antimicrobial properties, ability to numb or desensitize nerve endings in the skin.
 
  • KEY BENEFITS
  • Fast-Acting Pain Relief oil
  • Beneficial for conditions such as muscle pain, joint pain, or Rheumatoid arthritis.
  • helping to reduce swelling and inflammation associated with pain.
  • muscle-relaxant properties, helping to alleviate muscle tension.
  • Non-greasy formulation, absorption into the skin without leaving a sticky residue
  • Get instant Relief from swollen and cramps
  • Helps in aam vaata and sandhi vaata 
   USAGE:   Dispense an appropriate amount of liniment on to your hands and gently apply on affected area , No need to massage, You may feel a       warming or cooling sensation     warning: FOR EXTERNAL USE ONLY, After application, wash your hands thoroughly to avoid accidentally transferring the liniment                          to sensitive areas, such as the eyes or mouth.  

FAQs on Thermolint Liniment ( pain relief oil)

SCORTCHNIL OINTMENT is an Ayurvedic cream made from Natural Ingredients

Apply a thin layer of an Scortchnil ointment( for external use only)  to keep the surface moist and help prevent scarring. Cover the wound if Needed , No Need To Dressing 

You can start noticing results from immediate after application ,it stop bleeding immidiate however duration depends on , types of wound ,age ,, diabetic wound ,or lifestyle, for best results we recommend using it 2 to 3 times a day regularly till heal the wound or  as directed by your physician

Wound Scar marks cannot be removed,bt it can minimize by continuously apply cream from the first day of injury . Scortchnil ointment helps to heal skin and reduce scar marks ,

A scar is a mark left on the skin after a wound or injury has healed. Scars are a natural part of the healing process. Most will fade although they never completely disappear

Yes it is Safe , Scortchnil Ointment is very skin friendly.  it is suitable for babies, children and sensitive skin.,children can use Scortchnil Ointment Cream  after consulting a physician

Scortchnil Ointment is used for any types of open  wound like Cuts ,stiches, scratches , or burns, surgical dressing , rashes.  as per directed by physician for best result use it  3 to 4 times a day , NO NEED TO DRESSING 

Yes It Is very effective and Safe For diabetic Wound .

How long it takes: Usually between 4-24 days. You can help the healing process stay on track by keeping the new tissue on wounds clean and hydrated. Signs it’s working: During this stage, the granulation tissue over your wound is typically pink or red and uneven in texture – and it usually doesn’t bleed

continuouse using of Scortchnil ointment can increase the chances of Minimize scars , it depends on person to person or the depth of burn injury.

]]>
https://koyanaayurvedic.com/product/scortchnil-ointment/feed/ 0