Advertisement
-
Posts
22 -
Joined
-
Last visited
Content Type
Profiles
Forums
Downloads
Everything posted by markisac
-
going to apply this now on IPB 4 and will report back thanks
-
They are premium fonts here AskFonts select your font and directly link them in CSS simple . thanks
-
thanks for detailed tutorial will try this thanks
-
Very useful i will try once hope this works thanks again
-
https://www.anonymiz.com/ much better and easy to integrate on any platform thanks
-
CSS is broken on some templates but thanks i am using it by changing its colors
-
very useful thanks i bookmarked this page ..
-
This will effect google SEO very badly i dont recommend . Use Custom CloudFlare Landing Page which is very safe and also increase your SEO
-
just register with cloud flare and activate DDOS protection all going good till now
-
How to add file uploading buttons to your ckeditor[IPB3 ONLY]
markisac replied to Technologx's topic in IPB 3.4 Legacy
could you please make tut for ipb 4 ? thanks -
i want more fields like Register year, Thanks given, Browser, Location any one please ?
-
Tested and working in latest IPB version thanks
-
I am using TypIcons they are best for icons styles and some i am taking from AskFont thanks
-
i tried but blocks are not showing in homepage could you please help ?
-
how can we get different hover effects for each user profile ? thanks
-
how to customize user post profile can anyone help me ? thanks
-
Thanks its working and tested !
-
Thanks for great share it was working .. just little bit hard to make adjustments ...
-
Manual Category Tabs On BoardIndexTeamplate Code Issues?
markisac replied to markisac's topic in Webmaster Lounge
Oops my bad thought i can open this in genral programming area to get some help .. .. Thanks again -
Manual Category Tabs On BoardIndexTeamplate Code Issues?
markisac posted a topic in Webmaster Lounge
Hello WebFlake, If this is a wrong section sorry for that .. My question and request is .. I have been using Categories Tabs hook but unfortunately it doesn't shows the categories how i want after a searching while on net i found a piece of code and really it was interesting .. But sadly i couldn't implement on IP.Board 3.4.x I am requesting could anyone please help me to run this code on my website .. Thanks in advance .. <script> var TabPages = { Regards: function () {}, Adam: function () {}, test: function() {}, Initialize: function () { TabPages.ParseHash(true); jQuery('#menutabs li a').click(function (e) { var elem = jQuery(e.target); var text = elem.text().replace('&', '+').replace(' ', '+').replace('/', '-and-'); document.location.hash = '#!' + text; jQuery('#menutabs > li .selected').removeClass('selected'); elem.addClass('selected'); localStorage.setItem("nulledNavHash", document.location.hash); TabPages.ParseHash(false); e.preventDefault(); }); }, ParseHash: function (launch) { var hash = localStorage.getItem("nulledNavHash") || document.location.hash; hash = hash.replace('#!', ''); if(launch) { var lsHash = document.location.hash || localStorage.getItem("nulledNavHash"); if(typeof(lsHash) === 'string') { document.location.hash = '#!' + lsHash.replace('#!', ''); lsHash = lsHash.replace('#!', ''); } var e = jQuery('#menutabs a').filter(function (index) { return jQuery(this).text().replace('&', '+').replace(' ', '+').replace('/', '-and-') == lsHash; }); if(e.length > 0) { jQuery('#menutabs > li .selected').removeClass('selected'); jQuery(e[0]).addClass('selected'); } else { return; } } var hashTable = []; hashTable['Tab Name'] = [ 1, 4 ]; hashTable['Tab Name'] = [6, 116]; hashTable['Tab Name'] = [67]; hashTable['Tab Name'] = [ 34 ]; hashTable['Tab Name'] = [ 62, 75 ]; hashTable['Tab Name'] = [ 89, 56 ]; hashTable['Tab Name'] = [ 50, 10 ]; hashTable['Tab Name'] = [45]; hashTable['Tab Name'] = [40, 105]; hashTable['Tab Name'] = [ 22, 16 ]; jQuery ('.forum_main_block').hide(); if(typeof(hashTable[hash]) !== 'undefined') { hashTable[hash].forEach(function (c) { jQuery ('#category_' + c).show(); }); } }, ScrollToBody: function () { jQuery('html, body').animate({ scrollTop: jQuery('#forumCategories').offset().top }, 100); } }; jQuery(document).ready(function () { TabPages.Initialize(); }); </script> <ul id="menutabs"> <li><a href="#" class="selected">Tab Name</a></li> <li><a href="#">Tab Name</a></li> <li><a href="#">Tab Name</a></li> <li><a href="#">Tab Name</a></li> <li><a href="#">Tab Name</a></li> <li><a href="#">Tab Name</a></li> <li><a href="#">Tab Name</a></li> <li><a href="#">Tab Name</a></li> <li><a href="#">Tab Name</a></li> </ul> When i implemented above code on my blog i simple got names they were not working .. could any one please help me to sort this issue thanks ..