vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.7 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=228)
-   -   Major Additions - AWCoding- Donation System (https://vborg.vbsupport.ru/showthread.php?t=177437)

Battle_Ring 11-26-2008 10:38 PM

I have a different skin than the default what do i put in my navbar t oget the donation link

besides this $dsl_link_menu

AWJunkies 11-27-2008 07:58 AM

Quote:

Originally Posted by Battle_Ring (Post 1673643)
I have a different skin than the default what do i put in my navbar t oget the donation link

besides this $dsl_link_menu

You need to follow instructions on post #2 which explains creating the phrase hook.

AWJunkies 11-27-2008 08:04 AM

Quote:

Originally Posted by SatSeeker (Post 1672681)
Hello AWjunkies,

First, I'd like to say thank you for this great mod... It works great.

Second, I have 2 issues that perhaps you can help me with:

Q1: When member sign in to donate and right after being checked out, AW donation system recorded this transaction. However, for some reason, member has decided to cancel the donation AW Donation system does not undo this transaction. Thus, we have to manually delete this transaction which is okay for now. But is there another way to control this from happening?

Q2: I've attached the paypal form below just to explain my question here. Our VB is located in US but if donator is from Canada or Mexico or other country, and using Credit card as a payment type: How do they enter the form if their country does not have zip code and such? Do you or anyone have this problem and how do we resolve that?

https://vborg.vbsupport.ru/external/2008/11/17.jpg


Many thanks in advanced,

SS
:)

#1 PRO has that but also it is fully auto as well so no need for that check anyway but NON IPN pro has that I will add it to next version of lite for you guess I missed that.

#2 I am surprised that paypal doesn't have an auto finder locate to change those two address fields zip state. Make sure in paypal you can accept other currencies besides US and auto accept payments outside US. Otherwise I would hit them up as that is their payment page not mine I have no control over it. Also I don't think this is an issue at all in PRO version as you can pay in other currencies then your own and it has a AUTO currency conversion LIVE info so if you get multi national currencies and want everything auto highly advise getting PRO.

#1 I will add to LITE
#2 Contact Paypal but they will say cause the currency you send to them is US so it sets up US address base so solution is PRO.

I hope that helps you.

mack324 12-06-2008 01:37 AM

Hi there
Installed this donation system and added nothing in the amount section £ for the bar by accident..and i get the message

"Warning: Division by zero in [path]/global.php(611) : eval()'d code on line 1246"

I also can not enter my admin area

when i try to enter my admin section i get "Unable to add cookies, header already sent.
File: /home/nzbfiles/public_html/includes/class_core.php
Line: 3242"

can someone please help

regards

mack324 12-06-2008 02:31 AM

sorted it

Disabled hooks in config.php

and then sorted it out

AWJunkies 12-06-2008 10:36 AM

So what was issue?? Seems you caused the error not software itself but please explain.

tlwwolfseye 12-09-2008 06:04 PM

Where can I find this:

Quote:

Your Donation Will Be Used To Pay For our ever increasing bandwidth costs, our hosting Service, domain registration, software licensing fees, and maintenance costs
I would like to change the text. Any tips ?

tlwwolfseye 12-10-2008 11:55 AM

Quote:

Originally Posted by AWJunkies (Post 1501763)

CUSTOM STYLES
Styles and hooks for DropMenu Module:

Create a new phrase (http://www.yourdomain.com/admincp/ph...eldname=global)
A) Phrase Type = GLOBAL
B) Product = VBulletin
C) Varname = dsl_navbar_hook_X (X= the ID of the style, look at dsl_ navbar_ hook_ 1 for an example)
D) Text = Hook Data (look below for examples)

Code:

Examples:
Legend: {1}= ID for drop down menu {2}= Color for title {3}= URL link {4}= Title

Default: dsl_ navbar_ hook_ 1:
<td id="{1}" class="vbmenu_control"><a style="color:{2};" href="{3}">{4}</a><script type="text/javascript"> vbmenu_register("{1}"); </script></td>

#1:
<td><img src="http://forum.X.com/images/centura/misc/nav_div.gif" alt="" /></td><td id="{1}" class="h_nav"><a style="color:{2};" href="{3}">{4}</a><script type="text/javascript"> vbmenu_register("{1}"); </script></td>

#2:
<td width="89" height="26" valign="top" id="{1}"><a style="color:{2};" href="{3}" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image20','','http://forum.X.com/images/ogenzen/fluid/don2.png',1)"><img src="http://forum.X.com/images/ogenzen/fluid/don1.png" alt="TORRENT" name="Image20" width="89" height="26" border="0" /></a><script type="text/javascript"> vbmenu_register("{1}",true); </script></td>

#3:
<td id="{1}" width="78" height="34" class="css_nav"><a style="color:{2};" href="{3}">{4}</a><script type="text/javascript"> vbmenu_register("{1}",true); </script></td>

#4:
<td id="{1}" class="nav_menu_control"><a style="color:{2};" href="{3}">{4}</a><script type="text/javascript"> vbmenu_register("{1}"); </script></td>

#5:
<td id="{1}" class="navbar"><a style="color:{2};" href="{3}">{4}</a><script type="text/javascript"> vbmenu_register("{1}"); </script></td>

#6:
<span id="{1}"><a style="color:{2};" href="{3}" accesskey="5" onmouseover="document.images.donatelink.src='images/voodoo/misc/donate_over.png'" onmouseout="document.images.donatelink.src='images/voodoo/misc/donate.png'"><img src="images/voodoo/misc/donate.png" id="donatelink" alt="" /></a></span><script type="text/javascript"> vbmenu_register("{1}",true); </script>

#7:
<td><img src="http://forum.X.com/images/enlighten/misc/nav_div.gif" alt="" /></td><td id="{1}" class="h_nav"><a style="color:{2};" href="{3}">{4}</a><script type="text/javascript"> vbmenu_register("{1}"); </script></td>

The system uses default VB 3.7.x hooks in header/navbar named: $template_hook[navbar_buttons_left] and $template_hook[navbar_buttons_right]. If you do not have these hooks in header/navbar add them OR manually place:
Code:

{$AWCL['dropmenu']['header']}
where you would like it to display.

I hope someone could help me with that, seems I dont understand that correct. Could someone maybe tell me exactly what to enter into the Phrase (not Examples but what it has to be). :confused:

Sorry, I am new to vB and don?t have it all figured out yet. I just know that on the skin I am using (DARKNESS2) isn?t showing the DONATE link in the navigation. I appreciate any "n00b" help ;) that i can get.

Thank you in advance.

Wolfseye

AWJunkies 12-10-2008 07:19 PM

Quote:

Originally Posted by tlwwolfseye (Post 1682325)
I hope someone could help me with that, seems I dont understand that correct. Could someone maybe tell me exactly what to enter into the Phrase (not Examples but what it has to be). :confused:

Sorry, I am new to vB and don?t have it all figured out yet. I just know that on the skin I am using (DARKNESS2) isn?t showing the DONATE link in the navigation. I appreciate any "n00b" help ;) that i can get.

Thank you in advance.

Wolfseye

Code:

<td id="{1}" class="vbmenu_control"><a style="color:{2};" href="{3}">{4}</a><script type="text/javascript"> vbmenu_register("{1}"); </script></td>
that should be it

You can always hit me up and get help instantly through IM. I responded to your PM about the language page for paypal so hit me up about that as well. I will send you file and help you out.

tlwwolfseye 12-11-2008 06:15 AM

Thank you m8 for all your help, I appreciate it very much. ;)


All times are GMT. The time now is 12:21 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.01806 seconds
  • Memory Usage 1,758KB
  • 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
  • (3)bbcode_code_printable
  • (5)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (3)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