Search Result: co
converts comma separated values ​​to random
hmei7 · Published on 2022-03-17 11:16:33 (4 years ago )
value tags: pop, rock, metal, edm

:URL_ENCODE(["%var(tags)%"]).REPLACE(["%2C%20", "%22%2C%20%22"]).URL_DECODE.RANDOM.SET(related).NULL;

result var(related) : edm (one of the random var tags above)
comment
Do not upload copyrighted content to Wapka!
francisco · Published on 2022-03-14 17:12:43 (4 years ago )
I'm not the Wapka Admin and I don't know how they handle sites that host copyrighted content, but I recommend that you don't upload such files as it can cause serious problems for Wapka.
For example, the 4Webku platform had its domain suspended after the Admin received a DMCA on account of two websites that were sharing copyrighted content.
As far as I know, more than half of the websites on Wapka also share this type of content (such as music, images, audios, videos, etc).
I believe the Fair Use policy does not apply in this case, even if the sites explicitly say they are for educational purposes.
If we want to keep Wapka running for a long time, we must abide by the law, even if Wapka doesn't explicitly request it.

Long live Wapka!
comment
New wapka code called (link target v1.0)
mario · Published on 2022-02-16 12:40:53 (4 years ago )
Lot of developers in wapka like to show content of div when link is click something like /index/?page=login but the page load true browser to make sure their :GET; function collect the page data called login. There is a shortcut to display div content like app without page loading... and you will enjoy it.


Set your css 
.login,.register,.terms {display:none;} 
#login:target,#register:target,#terms:target {display:block;}



link <a href="#login">Login Page</a> <a href="#register">Register Page</a> <a href="#terms">Terms Page</a>




<div class="login" id="login">Login to your account here</div>
<div class="register" id="register">Register your account here</div>
<div class="terms" ="terms">You full terms and others content here</div>
comment
How to remove this error on console
prabhu · Published on 2022-01-10 16:23:24 (4 years ago )
  

How to remove this error on console on wapka advert 
comment
convert [br] to // in user input paragraph click.
mario · Published on 2022-01-08 18:52:17 (4 years ago )
in msg snder you dont need to announce that paragraph is [*br] just enter config. and put something like these <*message>:POST(msg).REPLACE(["//","[*br]"]);<*/message>
comment
File uploader code style
Admin · Published on 2021-12-31 19:43:49 (4 years ago )
<br><br><br><center><div style="color:#fff; background-color:#0099ff; width:96%; border-radius:4px;">%notify% <font size="6" color="#fff"><b>Image Uploader</b></font><br><br>



<br/>%file%<br/><br>



<font size="4" color="#fff"><b>Description</b></font><br/>



%description%<br/><br>



<center>



<table w><tr>



<td><center><font size="4" color="#fff"><b>File Name</b></font><br/>



%var-name%</center></td>



<td><center><font size="4" color="#fff"><b>WA Number</b></font><br/>



%var-number%</center></td>



</tr></table></center>







<br/><br><br>



%submit% <br><br><br></div></center>







<style> input {



background:#e1e1e1;



height:;



width:94%;



color:#;



border:1px solid #bbb;



border-radius:4px;



padding:8px 0px 8px 0px;



margin:0px;}







textarea {



background:#e1e1e1;



height:;



width:94%;



color:#;



border:1px solid #bbb;



border-radius:4px;



padding:8px 0px 8px 0px;



margin:0px;}



</style>
comment
wapka clock/time/date codes
mario · Published on 2021-11-20 10:56:59 (4 years ago )
<br><div class="list1" style="margin-left:10px;margin-right:10px;background:aliceblue;border-radius:15px;padding:10px;box-shadow:3px 3px 9px grey;">:DATE(D); - to show todays day in name<br>:DATE(d); - to show todays day in number<br>:DATE(m); - to show todays month in number<br>:DATE(M); - to show todays month in name<br>:DATE(s); - seconds<br>:DATE(S); - to show todays day in 2digit name<br>:DATE(H); - hours<br>:DATE(mm); - minutes<br>:DATE(utc); - UTC</div><br>
comment
Wapka newsfeed personal like & unlike button code
mario · Published on 2021-11-20 10:15:29 (4 years ago )
we know that api data is not only made for comment but can do more than what you think....

wapka api data can save people who like your post or unlikes. by using key1 to seperate comment from likes & unlikes go to your post comment page edit api data lister add <*key1>comment<*/key1> for comment lister. create another api data lister then add these
<*key1>like<*/key1> for like lister. and create another api lister then <*key1>unlike<*/key1>
we have succed seperating comment from likes an unlikes lister then read previous wapka on how to add the counts in newsfeed in index
comment
How do I allow a user to recover/change a forgotten password?
fchagas97 · Published on 2021-11-19 12:58:49 (4 years ago )
I realized that Wapka does not have a password recovery system for my users. Is it possible to create a workaround to allow this?
comment
how to replace your name with any content in message lister
mario · Published on 2021-11-18 17:53:28 (4 years ago )
:VALUE(%sender_id%).IFEQ.VAR(USER_ID).THEN(your content here).ELSE(%sender_id%);
comment