vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Graveyard (https://vborg.vbsupport.ru/forumdisplay.php?f=224)
-   -   vBulletin CMS Widgets - Widget: Last x New Members (https://vborg.vbsupport.ru/showthread.php?t=230851)

MaryTheG(r)eek 12-21-2009 10:00 PM

Widget: Last x New Members
 
.................................................. ..

bart6767 12-22-2009 04:11 PM

Thanks

bullet07 12-22-2009 05:18 PM

Another neat widget for my cms keep them coming :D.
Installed

fourat 12-22-2009 09:53 PM

Thank you installed

bart6767 12-23-2009 11:14 AM

Can this be made so it will open in same window other than a new window ?

Derekclarke 12-23-2009 11:39 AM

Thanks, This could be useful.

I have problems getting any Data to Save when i configure Wigits, No error is returned, Just the data does not save.

Yet if i clear the existing data and click Save, it saves.

MaryTheG(r)eek 12-23-2009 01:44 PM

Quote:

Originally Posted by bart6767 (Post 1936256)
Can this be made so it will open in same window other than a new window ?

Yes, it can be done be modify the code. Just remove:
Code:

target="_blank"
from any link (those starting with "<a")

Maria

bart6767 12-23-2009 05:54 PM

Quote:

Originally Posted by MicroHellas (Post 1936373)
Yes, it can be done be modify the code. Just remove:
Code:

target="_blank"
from any link (those starting with "<a")

Maria

Thanks Maria

XBL EXTREME NYC 12-24-2009 08:58 PM

For some reason on all of the mods similar to this (like the Top forum posters for the week or month) everytime the date or post count is left one down of where it is supposed to be. It is hard to explain but if you go to www.egworld.net and look on the left of the home page i have this installed and all of the things are left one space below where they are supposed to be

kendo 12-25-2009 01:40 AM

It looks OK on your site now, but I am getting the same issue. BTW, how did you set up the recent articles widget on your site?

XBL EXTREME NYC 12-25-2009 03:00 AM

it was one of the widgets that came with vb. Also i attached a pic of the problem i am having. It is still there.

PS i know the title is wrong for the widget but that shouldnt matter

kendo 12-25-2009 04:02 AM

Exactly the same as mine is showing.

Bigstack 12-25-2009 04:13 AM

Works Great. Thanks

MaryTheG(r)eek 12-25-2009 05:29 AM

Quote:

Originally Posted by XBL EXTREME NYC (Post 1937758)
it was one of the widgets that came with vb. Also i attached a pic of the problem i am having. It is still there.

PS i know the title is wrong for the widget but that shouldnt matter

For some reason "div" don't works as it must be. Try a trick by replacing all instances of "div" with "span".

Maria

denman75 12-25-2009 05:50 AM

thank you for widget

Dr.osamA 12-25-2009 08:33 AM

Thanxx

installed

XBL EXTREME NYC 12-25-2009 02:21 PM

Quote:

Originally Posted by MicroHellas (Post 1937812)
For some reason "div" don't works as it must be. Try a trick by replacing all instances of "div" with "span".

Maria

Tried the span thing and same is showing

kf4eok 12-26-2009 02:14 AM

thanks, installed

wolfe 01-07-2010 11:51 AM

to use usergroup colours then Configure Widget and replace the html with

PHP Code:

$dateformat "d/m/Y"//Other formats "m/d/Y", "d/m", "d/m/Y"
  
ob_start();
  require_once(
'./includes/functions_user.php');
  require_once(
'./includes/functions_bigthree.php');
  
// Get New Members
  
$newusers_get vB::$db->query_read("
    SELECT joindate, username, userid, usergroupid, IF(displaygroupid=0, usergroupid, displaygroupid) AS displaygroupid FROM "
.TABLE_PREFIX."user
    WHERE usergroupid=2
   ORDER BY joindate DESC
   LIMIT 5"
);
  
$output_bits '';
  while(
$newuser vB::$db->fetch_array($newusers_get))
  {

$newuser[username] = fetch_musername($newuser);
        
$joindate date($dateformat$newuser[joindate]);
        
$output_bits .= '<a target="_blank" href="member.php?u='.$newuser[userid].'">'.$newuser[username].'</a>
                        <div style="float: right;">'
.$joindate.'</div><br />';
  }
  
$output $output_bits;
  
ob_end_clean(); 


MaryTheG(r)eek 01-11-2010 03:17 PM

Due to lack of free time, I must decrease the time that I'm spending here for support. By having a long thread for each of my 16 mods, most often I'm bypassing questions. That's why for urgent questions please visit my site, where it's easier to support you, by having a thread per question.

Thank you
Maria

Marv 01-29-2010 07:28 AM

Maria, a quick one:

I?ve tried to add the

Quote:

Registered members: xxx.xxx
We welcome our newest member: xxxxxxxx
to the widget and failed. I used the code which is used in the wgo-box from forumhome:

PHP Code:

<div>
                    <
dl>
                        <
dt>{vb:rawphrase members}</dt>
                            <
dd>{vb:raw numbermembers}</dd>
                        <
vb:if condition="$show['activemembers']">
                                                <
dt>{vb:rawphrase active_members}</dt>
                                                         <
dd>{vb:raw activemembers}</dd>
                                                </
vb:if>
                    </
dl>
                    <
p>{vb:rawphrase welcome_to_our_newest_member_x, {vb:link member, {vb:raw newuserinfo}}, {vb:raw newuserinfo.username}}</p>
</
div

The phrases are showing up but the variables won?t get parsed. Any idea why that doesn?t work ?

GONUMBER6 02-11-2010 07:13 PM

My day & month is crooked as well, how can this be fixed? (I tried the span thing...did not work.)

You can see my CMS home page and the widget, how it looks, here:

http://www.englishbulldognews.com/forums/content.php

Thanks in advance!

khuhner 02-15-2010 03:28 PM

I noticed that my rendition of your mod is showing the sign up dates on one lower than it should. It's also different that what is shown at the top and bottom of your mod post. Am I doing something wrong? Where can I go to resolve the layout issue?

Thanks,
Kurt

khuhner 02-26-2010 09:47 PM

Quote:

Originally Posted by khuhner (Post 1983045)
I noticed that my rendition of your mod is showing the sign up dates on one lower than it should. It's also different that what is shown at the top and bottom of your mod post. Am I doing something wrong? Where can I go to resolve the layout issue?

Thanks,
Kurt

BUMP

GONUMBER6 03-12-2010 05:22 PM

Quote:

Originally Posted by khuhner (Post 1992363)
BUMP

Mine does that too on my PC and laptop, but is lined up properly on my iPod.

Any fix for this yet? Please and thank you! :)

juan71287 03-12-2010 06:00 PM

very nice thanks i learned with this :)

alashram 03-19-2010 07:33 PM

thanks installed.

mindfawk 03-24-2010 10:21 PM

Lack of support such as this is what makes folks choose not to donate often.

alashram 03-25-2010 05:58 PM

can it show avatars as well?


All times are GMT. The time now is 06:18 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01255 seconds
  • Memory Usage 1,790KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (2)bbcode_php_printable
  • (7)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (29)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete