Jump to content

Who Was Online

This topic contains 209 posts. A summary containing the most significant posts is available

Featured Replies

  • Author

No update needed for 4.4.x

  • Replies 208
  • Views 28k
  • Created
  • Last Reply

Top Posters In This Topic

Most Popular Posts

  • markymids
    markymids

    I was able to achieve this by changing the whowasonline css foreach block to something like this: {{foreach $members as $row}} <ul class='ipsList_inline ipsList_noSpacing cCustomField'&

  • I have added the following line to custom.css and it helped. Thanks to @ehren. for the info .ipsWidget[data-blockid*="whowasonline"] .ipsWidget_inner{ padding: 10px; }  

  • Soon i be looking few people to beta test new version of Who Was Online this will be little different to standard format currently being used it will count guest, members and any one sign in anonymous

Posted Images

  • Author

4.4.x Users please read

To make this plugin work to display colors please make sure have the following turn on,

ACP - Members - Profiles - Profile Settings Tab, scroll to the bottom of the page:

groupcolorsettings.thumb.png.b1a64df61f71b4d687b0e239aac3295b.png

new settings for 4.4.x only

  • 3 weeks later...

Thanks @Pete T for this lovely free plugin, just updated and love the images icon - good feature added.

Just wondering how to show the "& more" option again like before as that was very useful for people to reach domain/online to see the full list of members.

image.png.f45a0d51c09ac99b1f88bfc9b46246cc.png

  • Author
 

Thanks @Pete T for this lovely free plugin, just updated and love the images icon - good feature added.

Just wondering how to show the "& more" option again like before as that was very useful for people to reach domain/online to see the full list of members.

image.png.f45a0d51c09ac99b1f88bfc9b46246cc.png

Please explain what mean by more options ?

 

After the last member id I rem used to see "& more" option on which if click it used to take here: https://carnity.com/online 

 

Apologies if I am mixing up this plugin with some other feature.....!

Like this:

Pajero_Mo Automax Group Sidshk Ruchit Srivastava Jocreative Jennykiat24, & 17 more

  • Author
 

 

After the last member id I rem used to see "& more" option on which if click it used to take here: https://carnity.com/online 

 

Apologies if I am mixing up this plugin with some other feature.....!

Like this:

Pajero_Mo Automax Group Sidshk Ruchit Srivastava Jocreative Jennykiat24, & 17 more

I think still getting confused never been more option.

Hello,

 

I Installed your plugin and I followed your tutorial:

  Quote

4.4.x Users please read

To make this plugin work to display colors please make sure have the following turn on,

ACP - Members - Profiles - Profile Settings Tab, scroll to the bottom of the page and CHECK GLOBAL.

 

My problem is:  I dont want to see colored names in the last topic ( check the photo )

1234567.thumb.png.3377de7461655d947c8d787d8599dad8.png

 

  • Author
 

Hello,

 

I Installed your plugin and I followed your tutorial:

 

My problem is:  I dont want to see colored names in the last topic ( check the photo )

1234567.thumb.png.3377de7461655d947c8d787d8599dad8.png

 

It's only way get show correctly on my app as ips did update.

  • 3 months later...

I've got a potential issue - when using this as a Widget, the part that says "Most members ever online was [x], last accomplished on [x]" keeps resetting - I have the widget set for the last 24 hours, but that text leads me to think it should be keeping track of the all-time most users vs the most in the past 24 hours.

Does that make sense?

in the first place, thank you for sharing your excellent widget

do you know how to use your widget multiple times in one page?

  • Author
 

I've got a potential issue - when using this as a Widget, the part that says "Most members ever online was [x], last accomplished on [x]" keeps resetting - I have the widget set for the last 24 hours, but that text leads me to think it should be keeping track of the all-time most users vs the most in the past 24 hours.

Does that make sense?

sorry forgot to reply i your message i personal never noticed this mainly because don't use the stats option, but i will turn it on next few days see if resets if so i will fix it.

 

 

in the first place, thank you for sharing your excellent widget

do you know how to use your widget multiple times in one page?

It can't i believe might allow only one page could have one showing but i will check.

  • Author

@annadaa current widget settings are 1 widget per page i can sort update to allow more then 1 to be allowed per page before weekend.

 

oh, super! this will allow me to make available for each group its own widget so that it can only see the members of its group

  • 4 months later...

im using the hours version but it says mins ...

 

653548361_ScreenShot2019-12-07at2_53_43PM.thumb.png.eaf79ff658c27a1e3be2506a4c73c3f0.png

  • Author
 

im using the hours version but it says mins ...

 

653548361_ScreenShot2019-12-07at2_53_43PM.thumb.png.eaf79ff658c27a1e3be2506a4c73c3f0.png

You sure don't have mins installed at somepoint as should only say hours if using hour version.

i used translations to fix

  • 2 weeks later...

Hi @Pete T

Thanks again for this great plug-in!

Spotted a small bug that's causing W3C Validation errors for each member photo listed. The opening and closing HTML li list tags are missing from the template in two places, but it's because of the ul tag line preceding them. I moved that line down to above the comma separated list (no photos, text only) and it seems fine. 
 

<ul class='ipsList_inline ipsList_csv ipsList_noSpacing'>


to:

{{else}}
            <ul class='ipsList_inline ipsList_csv ipsList_noSpacing'>
			{{foreach $members as $row}}
				<li>{template="userLinkFromData" group="global" app="core" params="$row['member_id'], $row['name'], $row['members_seo_name'], $row['member_group_id']"}</li>
			{{endforeach}}
            </ul>
		  {{endif}}

and moved up the closing ul tag above the endif.
 

Regards

Edited by The Old Man
Amended

  • Author
 

Hi @Pete T

Thanks again for this great plug-in!

Spotted a small bug that's causing W3C Validation errors for each member photo listed. The opening and closing HTML li list tags are missing from the template in two places, but it's because of the ul tag line preceding them. I moved that line down to above the comma separated list (no photos, text only) and it seems fine. 
 


<ul class='ipsList_inline ipsList_csv ipsList_noSpacing'>


to:


{{else}}
            <ul class='ipsList_inline ipsList_csv ipsList_noSpacing'>
			{{foreach $members as $row}}
				<li>{template="userLinkFromData" group="global" app="core" params="$row['member_id'], $row['name'], $row['members_seo_name'], $row['member_group_id']"}</li>
			{{endforeach}}
            </ul>
		  {{endif}}

and moved up the closing ul tag above the endif.
 

Regards

Ok I take look making changes to this.

  • 2 months later...

Hello @Pete T,

 

I think the plugin has some problems. Sometime even I am online in my forum, I cannt see my name in the list.

I use last version of IPB ( Invision Community v4.4.10 )

  • 1 month later...

Hi Pete,

Is there a fix to update the language files? I try to translate them into Dutch but as soon as I refresh the page after saving, the translations are gone.

 

 

Schermafbeelding 2020-04-28 om 11.04.00.png

  • Author
 

Hi Pete,

Is there a fix to update the language files? I try to translate them into Dutch but as soon as I refresh the page after saving, the translations are gone.

 

 

Schermafbeelding 2020-04-28 om 11.04.00.png

Can't see why unable to translate is this still the same ?

  • 3 months later...

Hi @Pete T, do you know when its likely we'll know when this plugin is ready for 4.5 at all please? Many thanks

  • Author
 

Hi @Pete T, do you know when its likely we'll know when this plugin is ready for 4.5 at all please? Many thanks

It works for 4.5 I do need to update the version tag I sort this over weekend so be ready for downloading in the new admin cp.

  • Author

Its now been approved for 4.5 so can use the install option for 4.5.x and above.

Recently Browsing 0

  • No registered users viewing this page.