View [persons] webtease?

Post all technical issues and questions here. We'll gladly help you wherever we can.
User avatar
CumScream
Explorer At Heart
Explorer At Heart
Posts: 227
Joined: Mon Nov 04, 2013 8:38 pm
Sexual Orientation: Open to new ideas!
I am a: Switch
Location: UK

View [persons] webtease?

Post 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? :'(
Men are but flesh and blood. They know their doom, but not the hour.

If true control, is to be had, you will know not when.
Blissfully offered; your
Oblivion.
User avatar
rabbithole
Explorer
Explorer
Posts: 52
Joined: Mon Dec 15, 2014 5:35 am
Gender: Male
Sexual Orientation: Open to new ideas!
I am a: Submissive

Re: View [persons] webtease?

Post 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! :-D (Obviously, replace username with the desired name of the user you're interested in.)
Four Floors, Four Doors (Normal)
Floor: 1 | Points: 0 | Pool Points: 62 (2600) | Doors Opened: 3 | Gambles: 4
Last Ruin: 11/16 | Last Cum: 11/13 | Edges So Far: 211
User avatar
Trusfrated
Explorer At Heart
Explorer At Heart
Posts: 450
Joined: Mon Nov 08, 2010 8:41 am
Gender: Male

Re: View [persons] webtease?

Post 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. :weep:
ImageImage
User avatar
Ph0enixAsh
Explorer At Heart
Explorer At Heart
Posts: 122
Joined: Tue Jul 27, 2010 2:07 am
Gender: Male
Sexual Orientation: Straight
I am a: Switch
Location: EST:USA

Re: View [persons] webtease?

Post 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');}
Longest Denial: 61 Days
Image
GAME OVER
FINAL RESULTS
d_slave22
Explorer
Explorer
Posts: 27
Joined: Sun Feb 22, 2009 6:42 pm
Gender: Male
Sexual Orientation: Bisexual/Bi-Curious
I am a: Submissive

Re: View [persons] webtease?

Post 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.
User avatar
Trusfrated
Explorer At Heart
Explorer At Heart
Posts: 450
Joined: Mon Nov 08, 2010 8:41 am
Gender: Male

Re: View [persons] webtease?

Post 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.
:thankyou: :clap:

I figured this was possible, but didn't quite know how to make it. You're awesome! :thumbsup:
ImageImage
User avatar
Ph0enixAsh
Explorer At Heart
Explorer At Heart
Posts: 122
Joined: Tue Jul 27, 2010 2:07 am
Gender: Male
Sexual Orientation: Straight
I am a: Switch
Location: EST:USA

Re: View [persons] webtease?

Post by Ph0enixAsh »

Trusfrated wrote: :thankyou: :clap:

I figured this was possible, but didn't quite know how to make it. You're awesome! :thumbsup:
Happy to be of service. :-D
Longest Denial: 61 Days
Image
GAME OVER
FINAL RESULTS
User avatar
CumScream
Explorer At Heart
Explorer At Heart
Posts: 227
Joined: Mon Nov 04, 2013 8:38 pm
Sexual Orientation: Open to new ideas!
I am a: Switch
Location: UK

Re: View [persons] webtease?

Post 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...
Men are but flesh and blood. They know their doom, but not the hour.

If true control, is to be had, you will know not when.
Blissfully offered; your
Oblivion.
User avatar
leetitoldu
Explorer
Explorer
Posts: 31
Joined: Thu Sep 26, 2013 1:16 pm

Re: View [persons] webtease?

Post by leetitoldu »

good to know that im not only one who liked this option. Bring it back! :w00t:
Ghingis
Explorer At Heart
Explorer At Heart
Posts: 141
Joined: Mon Oct 24, 2011 4:55 pm

Re: View [persons] webtease?

Post 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>');
    }
})();
User avatar
Trusfrated
Explorer At Heart
Explorer At Heart
Posts: 450
Joined: Mon Nov 08, 2010 8:41 am
Gender: Male

Re: View [persons] webtease?

Post by Trusfrated »

As some site maintenance is being done lately, wondering if Seraph0x could re-enable this oft-requested feature?

Thank you in advance! :wave:
ImageImage
seraph0x
Administrator
Administrator
Posts: 2654
Joined: Sun Jul 23, 2006 8:58 am

Re: View [persons] webtease?

Post by seraph0x »

Re-added this feature! :-)
User avatar
Trusfrated
Explorer At Heart
Explorer At Heart
Posts: 450
Joined: Mon Nov 08, 2010 8:41 am
Gender: Male

Re: View [persons] webtease?

Post by Trusfrated »

Thank you, kind sir! :thumbsup: :wave:
ImageImage
User avatar
1885
Explorer At Heart
Explorer At Heart
Posts: 648
Joined: Fri Jul 08, 2011 4:27 am
Gender: Male
Sexual Orientation: Straight
I am a: Switch

Re: View [persons] webtease?

Post 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
Image
seraph0x
Administrator
Administrator
Posts: 2654
Joined: Sun Jul 23, 2006 8:58 am

Re: View [persons] webtease?

Post 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.
Post Reply

Who is online

Users browsing this forum: No registered users and 18 guests