Page 1 of 2
View [persons] webtease?
Posted: Fri Sep 04, 2015 1:34 pm
by CumScream
What happened to [view-this-persons-webteases] link? It use to be in the bottom of everyone's profile, and was a great way to find similar tease types and good content from regular authors!
Now it's such that you have to first find, and then go into a random tease, to get the a link to their other teases? :'(
Re: View [persons] webtease?
Posted: Fri Sep 04, 2015 10:36 pm
by rabbithole
I'm not sure why the "View user's teases" link was removed from user profiles... It used to be located just below "View user's posts," and you're right, it was quite handy indeed. I can't say whether it was intentional or a mistake... What I can tell you is how to access the page you're looking for through other means:
Option 1:
Webteases >
Advanced Search > type
username in "
Author" textbox >
Filter
Option 2 (by URL): Go to
milovana.com/webteases/?author=username
I hope this helps!

(Obviously, replace
username with the desired name of the user you're interested in.)
Re: View [persons] webtease?
Posted: Sun Sep 06, 2015 10:08 pm
by Trusfrated
This very useful feature was lost when the forum software was updated this summer. I'm sure it's just a matter of seraph0x knowing that it's missing, and then having the time to re-apply the customization. He's quite busy, however, so it may be quite a while until he does any additional work on the site.
I really miss it, too.

Re: View [persons] webtease?
Posted: Sat Sep 19, 2015 6:48 am
by Ph0enixAsh
I made a bookmarklet as a temporary workaround. Click it while on the author's profile page to open their tease list.
Save the following snippet as a bookmark. The forum won't let me post it as a draggable link.
"More by Author"
Code: Select all
javascript:var%20u=document.location.href.match(/u=(.*?)(?=&|$)/i);if(!u)alert('Author not found');else{u=u[1];window.open('https://milovana.com/webteases/#author='+u,'_self');}
Re: View [persons] webtease?
Posted: Sat Sep 19, 2015 4:21 pm
by d_slave22
One other workaround I've found is to open a tease by your desired author, and then click on the author's username at the top of the page once the tease is displayed.
Re: View [persons] webtease?
Posted: Sat Sep 19, 2015 11:52 pm
by Trusfrated
Ph0enixAsh wrote:I made a bookmarklet as a temporary workaround. Click it while on the author's profile page to open their tease list.
I figured this was possible, but didn't quite know how to make it. You're awesome!

Re: View [persons] webtease?
Posted: Wed Sep 23, 2015 4:28 am
by Ph0enixAsh
Happy to be of service.

Re: View [persons] webtease?
Posted: Fri Oct 09, 2015 8:57 pm
by CumScream
Also; Didn't the members section use to have more search filters...
Like, you could tell which country someone was from (if they volunteered that information).
Shame to loose little things like that, knowing that someone might be just next doors was always kinda a turn-on for me. Even if in reality, the odds are you'd never ever meet them in daily life...
Re: View [persons] webtease?
Posted: Mon Oct 19, 2015 2:32 pm
by leetitoldu
good to know that im not only one who liked this option. Bring it back!

Re: View [persons] webtease?
Posted: Thu Aug 11, 2016 6:31 am
by Ghingis
As I wrote in the other thread, I just put a scrtipt together, which adds the missing link.
You will need Tampermonkey(tested) or greasemonkey to use it (just google it):
https://www.dropbox.com/s/hdta55aw02cl4 ... er.js?dl=1
Any way here is the source code, if you not trust in the upper link:
- Spoiler: show
Code: Select all
// ==UserScript==
// @name User teas link adder
// @namespace milovana
// @version 1.0
// @description Adds user tease link to profile
// @author Ghingis
// @include https://milovana.com/forum/memberlist.php*
// @grant unsafeWindow
// ==/UserScript==
(function(){
// We will store URL search values here
var params = {};
// Check if the URL has a mode=viewprofile param, that is when we see an individual profile not the user list
if(location.search.indexOf('mode=viewprofile')>-1){
// Builds the params object by splitting the URL search values
location.search.substring(1).split('&').map(function(val){params[val.split('=')[0]] = val.split('=')[1];});
// Checks if jQuery is loaded, and loads it if not
if(typeof unsafeWindow.jQuery == 'undefined') {
var GM_JQ = document.createElement('script');
GM_JQ.src = 'https://code.jquery.com/jquery-2.2.4.min.js';
GM_JQ.type = 'text/javascript';
document.getElementsByTagName('head')[0].appendChild(GM_JQ);
}
GM_wait();
}
// Waits to jQuery, if it is loaded than cals letsJQuery
function GM_wait() {
if(typeof unsafeWindow.jQuery == 'undefined') { window.setTimeout(GM_wait,100); }
else { $ = unsafeWindow.jQuery; letsJQuery(); }
}
function letsJQuery() {
// Finds the User statistics container (sadly there is no better selector)
var container = $('#page-body .panel>.inner>.column2>.details');
// Adds the missing line
container.append('<dt>User Teases:</dt><dd><strong><a href="/webteases/#author='+params.u+'&pp=20">Show me</a></strong></dd>');
}
})();
Re: View [persons] webtease?
Posted: Tue Feb 14, 2017 5:57 am
by Trusfrated
As some site maintenance is being done lately, wondering if Seraph0x could re-enable this oft-requested feature?
Thank you in advance!

Re: View [persons] webtease?
Posted: Wed Feb 15, 2017 3:42 am
by seraph0x
Re-added this feature!

Re: View [persons] webtease?
Posted: Wed Feb 15, 2017 6:56 am
by Trusfrated
Thank you, kind sir!

Re: View [persons] webtease?
Posted: Wed Feb 15, 2017 5:18 pm
by 1885
seraph0x wrote: Wed Feb 15, 2017 3:42 am
Re-added this feature!
Thanks for adding this back in, I definitely missed this feature!
There is a small bug where if you click the "view user's teases" link for anyone whose username is a number (such as myself or 666), it shows the teases of the user with that ID number instead.
So if you try to view my teases, it shows the tease page for user Shirleyqueen who is user 1885, instead of mine which is user 17204. The same bug occurs if you try to search authors in the advanced webtease search. Not the biggest bug in the world, but it may give some people the impression I took all my teases down if they don't catch the "Shirleyqueen's teases" part
Re: View [persons] webtease?
Posted: Thu Feb 16, 2017 2:29 am
by seraph0x
1885 wrote: Wed Feb 15, 2017 5:18 pmThere is a small bug where if you click the "view user's teases" link for anyone whose username is a number (such as myself or 666), it shows the teases of the user with that ID number instead.
Good catch! I fixed it for the "View user's teases" link. Fixing it for the author search is a bit trickier unfortunately. I'll have to come back to it in the future.