Skip to main content

Blogger में Pop up Email Subscribe box कैसे लगाये

Pop up Email Subscribe box for Blogger
नमस्कार दोस्तों हामरे ब्लॉग में आपका स्वागत है आज हम आपको आपने ब्लॉग में Pop up Email Subscribe box अपने ब्लॉग में लगा सकते इ ये बताएँगे |

Email Subscribe box क्या है और क्यों जरुरी है आपके ब्लॉग में .

अगर  आप अपने ब्लॉग में email subscribe बॉक्स का उसे करते है और कोई यूजर उसे subscribe करता है तो उसको अप्पने हर पोस्ट जो आप उसे subscribe करने के बाद publish करेंगे उसका email जायेगा इस तरह आप अपने हर उस visitor से जुरे रह सकते है अगर आप एक blog चलते है तो आपको इसका यूज़ जरुर करना चाहिय इससे अप्पके visitor आपसे जुरे रहेंगे और आपकी earning भी बढ़ेगी |

किस तरह से Email Subscribe box अपने ब्लॉग में लगा सकते है ?

email susbscribe बॉक्स लगाने के लिय आपको अपने ब्लॉग के HTML में कुछ कोड add करने होंगे 

  • इसके लिय आपको अपने blogger के theme section में जाय |
  • फिर edit html पे क्लिक करें 
अब अप्पको इस कोड </style>  को search करें 
निचे दिय गये कोड को अप्पने ब्लॉग में add करें |

#sub-box {display:none;background:rgba(0,0,0,0.9);width:100%;height:100%;position:fixed;top:0;left:0;z-index:99999;}
#boxclose {width:100%;height:100%;-webkit-transform:translateZ(0);}
#boxview {background:#fff;border:8px solid #fff;width:600px;height:250px;position:absolute;top:33%;left:28%;}
#closebox {float:right;cursor:pointer;position:absolute;right:-1px;top:-2px;}
#closebox:before {content:&quot;Close&quot;;padding:5px 8px;background:#fff;color:#48cb7a;font-weight:normal;font-size:12px;font-family:Open sans;}
#boxlink,#boxlink a.visited,#boxlink a,#boxlink a:hover {color:#aaaaaa;font-size:9px;text-decoration:none;text-align:center;padding:5px;}
#subscribe-box {width:600px;height:250px;background-color:#02BA74;}
#subscribe-box p {font-family:&#39;Open Sans&#39;;font-size:18px;color:#fff;line-height:20px;padding:10px 20px 0 20px;margin:0;}
#subscribe-box .emailfield {padding:0px 20px 10px;}
#subscribe-box .emailfield input {background:#f9f9f9;color:#bbb;padding:10px;margin-top:10px;font-size:13px;font-family:&#39;Open Sans&#39;;width:96.3%;border:0;transition:all 0.4s ease-in-out;}
#subscribe-box .emailfield input:focus {background:#fff;outline:none;color:#888;}
#subscribe-box .emailfield .submitbutton {background:#444;color:#fff;text-transform:uppercase;font-weight:normal;font-size: 16px;border:none;outline:none;width:100%;cursor:pointer;border-radius:3px;transition:all 0.4s ease-in-out;}
#subscribe-box .emailfield .submitbutton:active {outline:none;border:none;background:#fff;color:#e25734;}
#subscribe-box .emailfield .submitbutton:hover{background:#fff;color:#444;}
अब आपको save template पे क्लिक करें 
अब आपको Layout > Add a gadget > HTML/Javascript में जाकर निचे दिय गये कोड को पेस्ट करे 
<script type='text/javascript'>
//<![CDATA[
jQuery.cookie = function (key, value, options) {
// Pengaturan cookie
if (arguments.length > 1 && String(value) !== "[object Object]") {
options = jQuery.extend({}, options);
if (value === null || value === undefined) {
options.expires = -1;
}
if (typeof options.expires === 'number') {
var days = options.expires, t = options.expires = new Date();
t.setDate(t.getDate() + days);
}
value = String(value);
return (document.cookie = [
encodeURIComponent(key), '=',
options.raw ? value : encodeURIComponent(value),
options.expires ? '; expires=' + options.expires.toUTCString() : '', // use expires attribute, max-age is not supported by IE
options.path ? '; path=' + options.path : '',
options.domain ? '; domain=' + options.domain : '',
options.secure ? '; secure' : ''
].join(''));
}
// cookie
options = value || {};
var result, decode = options.raw ? function (s) { return s; } : decodeURIComponent;
return (result = new RegExp('(?:^|; )' + encodeURIComponent(key) + '=([^;]*)').exec(document.cookie)) ? decode(result[1]) : null;
};
//]]>
</script>
<script type='text/javascript'>
jQuery(document).ready(function($){
if($.cookie('popup_facebook_box') != 'yes'){
$('#sub-box').delay(3000).fadeIn('fast');
$('#closebox, #boxclose').click(function(){
$('#sub-box').stop().fadeOut('fast');
});
}

});
</script>
<div id='sub-box'>
<div id='boxclose'>
</div>
<div id='boxview'>
<div id='closebox'>
</div>
<div id='subscribe-box'>
                 <center><p>Subscribe for Latest Update</p></center>
             <div class='emailfield'>
              <form action='http://feedburner.google.com/fb/a/mailverify?uri=YOUR-USER-NAME' method='post' onsubmit='window.open(&apos;http://feedburner.google.com/fb/a/mailverify?uri=YOUR-USER-NAME, &apos;popupwindow&apos;, &apos;scrollbars=yes,width=550,height=520&apos;);return true' target='popupwindow'>
               <input type='text' name='name' onblur='if (this.value == &quot;&quot;) {this.value = &quot;Your Name&quot;;}' onfocus='if (this.value == &quot;Your Name&quot;) {this.value = &quot;&quot;;}' value='Your Name'/>
               <input type='text' name='email' onblur='if (this.value == &quot;&quot;) {this.value = &quot;Your Email&quot;;}' onfocus='if (this.value == &quot;Your Email&quot;) {this.value = &quot;&quot;;}' value='Your Email'/>
<input name='uri' type='hidden' value='YOUR-USER-NAME'/>
<input name='loc' type='hidden' value='en_US'/>
                <input class='submitbutton' type='submit' value='Subscribe Now!'/>

              </form>
             </div></div> 
</div>
</div>

अब आपको  YOUR-USER-NAME को अपने feedburner id से Replace करें .

कैसे पता करे अपना feedburner id /Generate करें 

feedburner id Generate करने के लीय आपको   Layout > Add a gadget > Follow by Email
को add करे यह आपको एक लिंक मिलेगा http://feeds.feedburner.com/blogspot/xxx के जगह पे जो लिंक है वही आपका feedburner id है |

Comments

Popular posts from this blog

2 Ways to Auto Like Instagram without Login Only Use a Free Application

Auto Like Apk  - The auto like Instagram application is available in various types in the playstore, but not all auto-like applications in the playstore are proven to work 100% and some are only scam applications. If you previously liked to download the auto like Instagram application in PlayStore, it would be nice to change the application that you use to  auto like Instagram with the application  that I will share this time.  Why do I suggest you use the application that I want to share?  Because these 2 applications will never be found in the PlayStore and which of course this application is available for free and proven 100% works to  auto like Instagram  . Next 2 Lists 100% Auto Like Instagram Applications. Hublaagram Apk  is the latest auto-like application for Android that you can download for free.  Hublaagram previously provided auto likes on the website, but because time passed hublaagram experienced server errors on i...

Premium Blogger AMP Template - Kompi Ajaib AMP HTML V3 free download

Free Version   Find a string HackerRank python Solution Mutations HackerRank python Solution What's Your Name? HackerRank python Solution String Split and Join HackerRank python Solution sWAP cASE HackerRank python Solution Tuples HackerRank python Solution Lists HackerRank python Solution Finding the percentage HackerRank python Solution Nested Lists HackerRank python Solution pypy2 + pypy3 Find the Runner-Up Score! Python Hackerrank solution List Comprehensions Python Hackerrank solution Print Function Python Hackerrank solution Write a function Python Hackerrank solution Loops Python Hackerrank solution Python: Division Hackerrank solution Arithmetic Operators Python Hackerrank solution Python If-Else Hackerrank solution Say "Hello, World!" With Python Hackerrank solution Remove Footer Credits One Time Payment No Encrypted Scripts Lifetime Premium Support For Unlimited Domains Lifetime Template Updates Premium Version Remove Footer Credits...

blogger में share button लगाने का सबसे आसान तरीका |

अगर आपका blog या blogger पे है आपको शेयर button लगाने में बहुत प्रॉब्लम होता होगा या जो template के साथ आतः है उसी का उसे कर पाते होंगे आज हम आपको blogger पे शेयर button लगाने का आसन तरीका बताएँगे |share button visitor बढाने में हमारी बहुत मदद करता बहुत से visitor आपके पोस्ट को शेयर करना चाहते है पर button ना होने कि वजह से शेयर नही कर पाते |आपके ब्लॉग में शेयर button होना बहुत ही जरुरी है | अगर आपके blog में  social media button है तो क्या facebook whatsapp google+ जैसे sites का option है कैसे लगाये social media button अपने ब्लॉग पे | आपको अपने ब्लॉग में social media button लगाने के लिय सबसे पहले   https://www.addtoany.com इस्पे जाने के बाद आपको Get the Share Buttons  choose करना होगा | फिर आपको blogger choose करना होगा | फिर आपको install blogger widget को select करना है | फिर आपको उस site को सलेक्ट करना है | जिसमे आपको शेयर button को add करना है | demo आप हमारे ब्लॉग पे देख सकते है |