Show user's teases

Do you think Milovana.com is perfect in every way? Hopefully not, so what can we do to improve? Every idea, suggestion or criticism is highly appreciated.
Post Reply
User avatar
Caius1
Explorer At Heart
Explorer At Heart
Posts: 472
Joined: Thu Sep 05, 2013 5:59 am
Gender: Male
Sexual Orientation: Bisexual/Bi-Curious
I am a: Switch
Location: The coldest north

Show user's teases

Post by Caius1 »

It's been gone for ages but why was it removed? Back in the day when you looked at a user's profile you had the option to search for all the teases from that particular user. Like there are the options "most active topic" or "user's posts". It was a great tool. I dream to see it back :-(
"Two possibilities exist:
Either we are alone in the universe, or we are not.
Both are equally terrifying." -Arthur C. Clarke
servus
Explorer At Heart
Explorer At Heart
Posts: 179
Joined: Thu Jun 26, 2014 9:55 pm
Gender: Male
Sexual Orientation: Straight
I am a: Switch
Location: timezone: utc+1

Re: Show user's teases

Post by servus »

You can now look for the teases of a special user by clicking on advanced search. I don´t like it better either, but it is a possibility.
User avatar
ballsfull
Explorer At Heart
Explorer At Heart
Posts: 948
Joined: Fri Mar 28, 2008 11:39 pm
Gender: Male
Sexual Orientation: Straight
I am a: Switch
Contact:

Re: Show user's teases

Post by ballsfull »

Caius1 wrote:It's been gone for ages but why was it removed? Back in the day when you looked at a user's profile you had the option to search for all the teases from that particular user. Like there are the options "most active topic" or "user's posts". It was a great tool. I dream to see it back :-(
:-/

Couldn't agree more... Most changes in life are made to make things better/faster/easier/more efficient...
Or at least that's the goal...

What they've done is......the opposite of that....with no interest in fixing it.... :\'-( :\'-(

I don't "get it" either...
Working on exploring "Bondage_Barbi_Doll"'s limits......as well as pushing that little horny slut Stephi's boundries... Plus denying a few other little show-off cock-teasers too...
kinkypoolguy
Explorer
Explorer
Posts: 5
Joined: Thu Aug 16, 2007 1:06 am
Contact:

Re: Show user's teases

Post by kinkypoolguy »

If you are in a tease and click on the users name at the top it brings up their teases too.
User avatar
Trusfrated
Explorer At Heart
Explorer At Heart
Posts: 450
Joined: Mon Nov 08, 2010 8:41 am
Gender: Male

Re: Show user's teases

Post by Trusfrated »

Basically, the "show user's teases" link was a customization of the forum software. When they upgraded the forum, it overwrote the customization. Seraphox never returned to re-add the customization.

If you liked the feature as much as I did, you can use a bookmarklet as a good substitute:

viewtopic.php?t=16231
ImageImage
Ghingis
Explorer At Heart
Explorer At Heart
Posts: 141
Joined: Mon Oct 24, 2011 4:55 pm

Re: Show user's teases

Post by Ghingis »

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>');
    }
})();
Chico
Explorer At Heart
Explorer At Heart
Posts: 311
Joined: Tue May 08, 2007 11:25 am
Location: UK Manchester

Re: Show user's teases

Post by Chico »

After you've opened a tease, you can click on the author's name and all the rest of their teases will be listed.
rob204
Explorer
Explorer
Posts: 87
Joined: Mon Dec 09, 2013 3:26 am
Gender: Male
Sexual Orientation: Straight
I am a: Submissive

Re: Show user's teases

Post by rob204 »

Caius1 wrote:Back in the day when you looked at a user's profile you had the option to search for all the teases from that particular user.
I think I had to click on the users link from within the tease since I can remember. That's pretty non-intuitive. I think I gave up trying sometimes.
Ghingis wrote:I just put a scrtipt together, which adds the missing link.
Oh, that works quite well. And there I was doing something like

Code: Select all

[].forEach.call(document.querySelectorAll('a[href^="./search.php?author_id="]'), function(a) {
	a.parentNode.innerHTML += ' / <a href="/webteases/#author=' + a.href.match(/\d+/) + '">teases</a>';
});
Not that jQuery-like though. Unfortunately my version doesn't work on the member list either because users without posts don't have a search-posts link.

Anyways I would rather have the link right there in the teases list as I'm looking for related teases.
User avatar
Trusfrated
Explorer At Heart
Explorer At Heart
Posts: 450
Joined: Mon Nov 08, 2010 8:41 am
Gender: Male

Re: Show user's teases

Post by Trusfrated »

Ghingis wrote:I just put a scrtipt together, which adds the missing link.
Very nice, sir! Best solution yet!!! :w00t: :wave:

:thankyou:
ImageImage
Ghingis
Explorer At Heart
Explorer At Heart
Posts: 141
Joined: Mon Oct 24, 2011 4:55 pm

Re: Show user's teases

Post by Ghingis »

rob204 wrote:
Ghingis wrote:I just put a scrtipt together, which adds the missing link.
Oh, that works quite well. And there I was doing something like

Code: Select all

[].forEach.call(document.querySelectorAll('a[href^="./search.php?author_id="]'), function(a) {
	a.parentNode.innerHTML += ' / <a href="/webteases/#author=' + a.href.match(/\d+/) + '">teases</a>';
});
Not that jQuery-like though. Unfortunately my version doesn't work on the member list either because users without posts don't have a search-posts link.

Anyways I would rather have the link right there in the teases list as I'm looking for related teases.
That's a pretty nice solution, i love it. And I also like the idea of the link in the teases list.
I think fix it in my script :-)
Trusfrated wrote:
Ghingis wrote:I just put a scrtipt together, which adds the missing link.
Very nice, sir! Best solution yet!!! :w00t: :wave:

:thankyou:
Your welcome :-)
rob204
Explorer
Explorer
Posts: 87
Joined: Mon Dec 09, 2013 3:26 am
Gender: Male
Sexual Orientation: Straight
I am a: Submissive

Re: Show user's teases

Post by rob204 »

Ghingis wrote:That's a pretty nice solution, i love it.
Oh, thanks. Actually it's just short though. Neither robust, readable nor efficient. But I thought 1) if a site change breaks the script you would have to replace the script anyways and 2) it's not necessary to load jQuery to add a simple link. When I think of it though, loading jQuery shouldn't have about any drawbacks.
User avatar
Banquo
Experimentor
Experimentor
Posts: 7926
Joined: Sat Sep 17, 2011 3:34 pm
Gender: Male
Sexual Orientation: Straight
I am a: Switch
Location: Mutter’s Spiral

Re: Show user's teases

Post by Banquo »

I for one would love to see the feature back. It seems to have vanished when we made the crossover to the updated forum software.
We are all in the gutter, but some of us are looking at the stars - Oscar Wilde

My Webteases
Chastity Captions
User avatar
Trusfrated
Explorer At Heart
Explorer At Heart
Posts: 450
Joined: Mon Nov 08, 2010 8:41 am
Gender: Male

Re: Show user's teases

Post by Trusfrated »

This feature has been re-added to the forum!

Thanks to seraph0x! :-D

viewtopic.php?f=4&t=16231
ImageImage
User avatar
Sexless Dummy
Explorer At Heart
Explorer At Heart
Posts: 152
Joined: Mon Aug 10, 2015 8:09 pm
Gender: Male
Sexual Orientation: Straight
I am a: Submissive
Location: Germany

Re: Show user's teases

Post by Sexless Dummy »

Image

really happy t see it back :love:
User avatar
Schlampe33h
Curious Newbie
Curious Newbie
Posts: 1
Joined: Fri Dec 22, 2017 2:48 pm
Gender: Transsexual/Transgender
Sexual Orientation: Bisexual/Bi-Curious
Location: Hannover / Germany

Re: Show user's teases

Post by Schlampe33h »

Hm, topic is still in place, isn't it?
Does anyone care for this web page right now?
The users-link-search stuff is not working and I would like to have it

cheers
Possibilty to get caught ist amazing, getting caught is *argh
Post Reply

Who is online

Users browsing this forum: Ahrefs [Bot] and 12 guests