vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Graveyard (https://vborg.vbsupport.ru/forumdisplay.php?f=224)
-   -   Major Additions - vbBux / vbPlaza v1.5.8 (Points + Store System) (https://vborg.vbsupport.ru/showthread.php?t=106953)

X-Files 03-01-2006 05:05 PM

Quote:

Originally Posted by LBSources
does not work in FF .. seems to work in IE with no problems :nervous:

Works in both for me.

X-Files 03-01-2006 05:06 PM

Glow does not seem to be right.

I set the glow to white and it shows up fine in the member profile.
For posts it shows as red.

stamos2003 03-01-2006 05:12 PM

same prob. here with the glow, it's all red at the post :p

exilera 03-01-2006 05:15 PM

Another question... this may have been asked before, but I can't seen to find any reference to it. Anyway, what is the tag I'd use to display the total number of points for a user? I'd like to put a line for that below 'private messages' in the navbar. Also, where exactly would I need to place this code to make it work? :)

Thanks!

X-Files 03-01-2006 05:19 PM

Quote:

Originally Posted by exilera
Another question... this may have been asked before, but I can't seen to find any reference to it. Anyway, what is the tag I'd use to display the total number of points for a user? I'd like to put a line for that below 'private messages' in the navbar. Also, where exactly would I need to place this code to make it work? :)

Thanks!

Here is how I did it.

Code:

<strong><phrase 1="$bbuserinfo[username]">$vbphrase[welcome_x]</phrase></strong>&nbsp;You have $bbuserinfo[points] chips!<br />

LBSources 03-01-2006 06:35 PM

Quote:

Originally Posted by X-Files
Works in both for me.

then there is an issue somewhere..

CMX_CMGSCCC 03-01-2006 07:10 PM

Quote:

Originally Posted by flypaper
I should have been more clear. AFTER purchasing the tickets, the money is never deducted, the person never gets the tickets, and the item HISTORY shows the cost as 'free'.

I'll upgrade to 1.2.4 today and see if its fixed, but you might want to look into that. It's really weird. I only noticed it happening with one user and that user had purchased tickets normally in other weeks, so its something in an upgrade that was done.

EDIT: The upgrade fixed the free issue, but its def reporting the wrong number of tickets sold for the daily lottery. The user who was having the problem bought 5 tickets, yet the admincp only shows 2 sold. I'm guessing that its showing the number of people who bought tickets, not the actual tickets sold.

Good catch, it will be fixed in v1.2.5

Quote:

Originally Posted by Red Blaze
Found alittle template bug. It's small, but still wanted you to know.

When shutting off the store, it gives a little alert at the top as if you turned off the entire boards. Well, instead of bolding the "Alert", it leaves it as:
Code:

<b>Alert</b>
It shows the bold tags. Just thought to let you know.

Will be fixed in v1.2.5

Quote:

Originally Posted by stamos2003
just updated to 1.2.4 but now all the glowing names from all users show up in red, but before they had other colors.

did you change smth. with the glow table?!

p.s. just donated some bucks to you ;)

The template edit had changed, did u update the postbit/postbit_legacy and MEMBERINFO templates with the new one?

Quote:

Originally Posted by Impreza04
Hey CMX,

The forumrules edit displays on the edit signiture page..
Fixed simply by adding <if condition="!$show['codeonly']"></if>

:squareeyed:

Ok, I'll add that change into v1.2.5

Quote:

Originally Posted by influence
upgraded to 1.2.4 and everyone's gift disapear.

I ran the fix but nothing.

I just bought a cookie gift with my account and that gift shows on postbit but my other gifts I had dont show and everyone else gifts dont show anymore.

any reason why? Looks like it force everyone to start over with the gifts feature

Try to run the Fix All Gift Postbits with the number really high, like 100000 and see if it fixes the gifts.

Quote:

Originally Posted by Replicators
I don't know, i just did a clean install on a subforum to test somethings and it is still not working. The mods i have installed on it are...

v3 Arcade
v3 Arcade - Leader Board
v3 Arcade - Who's Online in the Arcade?
vBadvanced CMPS
and of course eBux / eStore

Something is definantly wrong as most people have these mods on their boards. I even thought it was because of the skin i use, i use extremepixels Plasma skin. I did your instructions correctly, that i can assure. I also added 2 more skins to the test forum and applied the template edits to them, still won't work. It just doesn't make sense why it is not working.

U dont have a plugin accelerator installed at all? because I seen a site that had problems with this too and they have to "rebuild plugins" when installing something new.

Quote:

Originally Posted by LBSources
i cant seem to get back the ebux info in the memberinfo template even with the latest upgrade nor can i allow my supermods the ability to admin donate .. anyway to fix this..

is there also any reason why me an admin cant see the recent lottery winners?

thanks

Lenny :)

First off, check to make sure the template edit is matching the one in the readme.txt file.

Second, yes, because there is a Usergroup Setting now for "Can View Item History" & "Can View Lottery Winners".

Quote:

Originally Posted by NoRespect
Is there anyway for us to add our own gifts?

Say I want to add a 15x15 GIF of my own...anyone know how to add it manually?

Simply upload the files to images/gifts

Quote:

Originally Posted by LBSources
does not work in FF .. seems to work in IE with no problems :nervous:

The glow/filter will not work in firefox unless the makers Add support for it.

Quote:

Originally Posted by X-Files
Glow does not seem to be right.

I set the glow to white and it shows up fine in the member profile.
For posts it shows as red.

Typo inside plugins/estore_postbit_complete.php

Find:
Code:

                        $filter .= "glow(Color=" . $userinfo['glowcolor'] . ",Strength=" . $vbulletin->options['estore_glowstrengthvalue'] . ")";
Replace With:
Code:

                        $filter .= "glow(Color=" . $post['glowcolor'] . ",Strength=" . $vbulletin->options['estore_glowstrengthvalue'] . ")";
Will be fixed in v1.2.5 if u do not want to do the edit and wait.

Quote:

Originally Posted by LBSources
then there is an issue somewhere..

The shadow/filter will not work in Firefox. The Firefox browser doesnt support the style "filter:" command.

-CMX

LBSources 03-01-2006 07:18 PM

CMX .. i know sometimes i move too quick.. but i use the template edit code as written in the latest release zip file .. :)

what isnt showing up in FF is the memberinfo ebux/estore info .. but shows in IE .. dont understand why

shadows and glows, etc im well aware will not work in FF ..

Anyway to have the super mods use the admin donate? ive added the ID to the estore options for admin donate, but no luck..

any ideas?

CMX_CMGSCCC 03-01-2006 07:32 PM

Quote:

Originally Posted by LBSources
CMX .. i know sometimes i move too quick.. but i use the template edit code as written in the latest release zip file .. :)

what isnt showing up in FF is the memberinfo ebux/estore info .. but shows in IE .. dont understand why

shadows and glows, etc im well aware will not work in FF ..

Anyway to have the super mods use the admin donate? ive added the ID to the estore options for admin donate, but no luck..

any ideas?

That doesnt make sense how the actual code would not show in Firefox as there are no conditions in the template edit that check for IE vs Firefox though... hmm.

Yes, you can edit the eBux Setting... "Usergroups that have access to Admin Donate".. put 5,6,7 or whatever usergroups you want to put in there..

-CMX

Gallio 03-01-2006 07:36 PM

In my custom template I have the this code, align="center"> in the line I have to replace with <div id="postmenu_$post[postid]" <if condition="$post['namestyle']">style="$post[namestyle]"</if>> My question is can align="center"> be added to this PHP line, I have no clue where I would ad it I don't know PHP so can someone help me out, Thanks -Dylan


All times are GMT. The time now is 04:41 AM.

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.04496 seconds
  • Memory Usage 1,769KB
  • 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
  • (4)bbcode_code_printable
  • (15)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (6)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete