iamchene
Sir weezy how can i create wapmaster tools generator like this weezywap.xtgem.com/Wapmaster please drop all codes
Weezy
iamchene It doesn't work like that!
Weezy
iamchene All the pages are not linked correctly ..Pages/Url/Links in wapka are noted by thier ID ..thats why you see url like
/site_3.xhtml ..
3 is the ID ..wapka dont have folders like other html building platform where you can create folder and create files inside them ..pages created in wapka are serially arranged if u are using the new page link ..i.e assuming you created a page with site ID 1 ..the next page you create will have 2 as its ID ..u can also quote site ID with bigger values using wapka link code
:url-site-ID ..u can create a page with site ID 2000 by just adding the ID in the above link code ..i.e
<a href=":url-site-2000:">Your Text</a>
iamchene
Weezy Oga weezy please how can i auto redirect wapka site to a particular page when user loqin with pc ? Like 9jabase
Weezy
iamchene Copy below ..paste in your homepage ..users wt pc get redirected to the pc page url in the below code! replace
http: //yoursite.wapka.mobi/site_pc.xhtml with the pc page url
<script type="text/javascript">
var weezy=navigator.appVersion;
if(weezy.match(/blackberry|configuration\/cldc|hp |hp-|htc |htc_|htc-|iemobile|kindle|midp|mmp|motorola|mobile|nokia|opera mini|opera mobi|palm|palmos|pocket|portalmmm|ppc;|smartphone|sonyericsson|sqh|spv|symbian|treo|up.browser|up.link|vodafone|windows ce|xda |xda|linux/gi))
{
document.write(' ')
}
else
{
document.location="http://yoursite.wapka.mobi/site_pc.xhtml";
}
</script>
Copy code