News:

Bored?  Looking to kill some time?  Want to chat with other SMF users?  Join us in IRC chat or Discord

Main Menu

PaypalDonations

Started by snork13, February 06, 2006, 11:36:58 PM

Previous topic - Next topic

neskiairti

this mod doesnt work with any theme but the default theme.. and where is the options button in the admin section? there is no link to eddit it! only when you first install the mod is it at the top of the screen (turning everything twice as big as it should be as well, damn html..) but anyhow.. kindof a sucky mod.. -shrugs- thanks for the effort though.
Moo!

do NOT milk the bull!

Bigguy

Almost every mod doesn't install on custom themes. They are made to install only on the default. Sorry you had problems with it but thats no reason to put down someone's efforts. I have it installed and it works great.

neskiairti

i was refering to the default theme... thank you very much.
Moo!

do NOT milk the bull!

mohoganybrwn

Where can I find the manual edits for this mod?  I tried to install with the package manager..but got an error...so I would like to install it manually.

Bigguy

Look in 1 of the 2 .xml files in the .zip package you downloaded. All the edits should be in there. I am not sure if it would be called install.xml or modification.xml

look up

i'm trying to get this to work in a theme other than the smf default.  anyone had success with trying this?

i have 1.1.1, using the musiconica theme, which is based off the slickpro graphite theme.
i tried to copy and paste the paypal generated html code into a new <tr> directly above my link tree.  however, i get the following error:

Quoteparse error, unexpected T_STRING, expecting ',' or ';'

any suggestions?

snork13

Quote from: look up on February 06, 2007, 04:44:09 PM
i'm trying to get this to work in a theme other than the smf default.  anyone had success with trying this?

i have 1.1.1, using the musiconica theme, which is based off the slickpro graphite theme.
i tried to copy and paste the paypal generated html code into a new <tr> directly above my link tree.  however, i get the following error:

Quoteparse error, unexpected T_STRING, expecting ',' or ';'

any suggestions?

can you post the lines of code where it's going bad
Mods
Please DO NOT PM me with requests for individual support, but post your questions and concerns in the appropriate section of the forum where other users can benefit from them as well. Thank you.
I have been super busy as of late. Working on updates to all my modifications for 2.0.1

look up

sure.

i know i'm about to post more than you need, but i don't want to leave out anything important that you may need to see.
also, as you'll see, i've put in a row of links to other sites.

from index.template.php...

   // display user name
   echo '
     
      <table width="100%" cellspacing="1" cellpadding="5" class="bordercolor" border="0">
           
           <tr>
                     <td align="center">
                          <font size="1"><a href="http://www.widespreadpanic.com/" target="_blank">WP.com</a> | <a href="http://www.everydaycompanion.com/asp/default.asp" target="_blank">EC.com</a> | <a href="http://www.panicstream.com/" target="_blank">pstream.com</a> | <a href="http://www.allmanbrothersband.com/" target="_blank">ABB.com</a> | <a href="http://www.discobiscuits.com/main_flashsite.asp" target="_blank">bisco.com</a> | <a href="http://www.drivebytruckers.com/" target="_blank">DBT.com</a> | <a href="http://www.dead.net/" target="_blank">dead.net</a> | <a href="http://www.moe.org/index2.htm" target="_blank">moe.org</a> | <a href="http://www.mymorningjacket.com/" target="_blank">MMJ.com</a> | <a href="http://www.mule.net/" target="_blank">mule.net</a> | <a href="http://www.nmallstars.com/index.shtml" target="_blank">NMAS.com</a> | <a href="http://www.foryouroutformation.com/test3/" target="_blank">out411.com</a> | <a href="http://www.pgroove.com/quicknews/pgroove.php" target="_blank">pgroove.com</a> | <a href="http://www.tealeafgreen.com/" target="_blank">TLG.com</a></font>
                     
                     </td>
           </tr>
       </table>

      <table width="100%" cellspacing="1" cellpadding="5" class="bordercolor" border="0">
             
         <tr>';
         
   echo '
                     <td class="windowbg2" width="100%" valign="middle" align="left" style="background-color:#aaaaaa;">
                     ', theme_linktree2(), '
                     </td>';

   echo '
                     <td style="background-color:#aaaaaa;" width="250" valign="top" align="right" class="windowbg"><span class="middletext" style="display:block;width:250px;">';
                     
   if($context['user']['is_logged'])
   {
      echo '
            <strong>Welcome, ', $context['user']['name'] , '.</strong><br />';
   }
           
   // Go to PM center... [pm]
   if ($context['user']['is_logged'] && $context['allow_pm'])
   {
      echo ((isset($current_action) && $curent_action == 'pm') || $context['browser']['is_ie4']) ? '' : '' , '
               <a href="', $scripturl, '?action=pm">Private Messages</a>: ', $context['user']['unread_messages'], ' Unread, ', $context['user']['messages'], ' Total.<br />';
   }
           
   // Now, onto our second set of info, are they logged in again?
   if ($context['user']['is_logged'])
   {
      // Is the forum in maintenance mode?
      if ($context['in_maintenance'] && $context['user']['is_admin'])
         echo '
                        <b>', $txt[616], '</b><br />';

      // Are there any members waiting for approval?
      if (!empty($context['unapproved_members']))
         echo '
                        ', $context['unapproved_members'] == 1 ? $txt['approve_thereis'] : $txt['approve_thereare'], ' <a href="', $scripturl, '?action=viewmembers;sa=browse;type=approve">', $context['unapproved_members'] == 1 ? $txt['approve_member'] : $context['unapproved_members'] . ' ' . $txt['approve_members'], '</a> ', $txt['approve_members_waiting'], '<br />';

      // Show the total time logged in?
      if (!empty($context['user']['total_time_logged_in']))
      {
         echo '
                        ', $txt['totalTimeLogged1'], '<br />';

         // If days is just zero, don't bother to show it.
         if ($context['user']['total_time_logged_in']['days'] > 0)
            echo $context['user']['total_time_logged_in']['days'] . $txt['totalTimeLogged2'];

         // Same with hours - only show it if it's above zero.
         if ($context['user']['total_time_logged_in']['hours'] > 0)
            echo $context['user']['total_time_logged_in']['hours'] . $txt['totalTimeLogged3'];

         // But, let's always show minutes - Time wasted here: 0 minutes ;).
         echo $context['user']['total_time_logged_in']['minutes'], $txt['totalTimeLogged4'], '<br />';
      }
   }
   // Otherwise they're a guest - this time ask them to either register or login - lazy bums...
   else
   {
      echo '            </span>
                        <script language="JavaScript" type="text/javascript" src="', $settings['default_theme_url'], '/sha1.js"></script>

                        <form action="', $scripturl, '?action=login2" method="post" accept-charset="', $context['character_set'], '" class="middletext" style="margin: 3px 1ex 1px 0;"', empty($context['disable_login_hashing']) ? ' onsubmit="hashLoginPassword(this, \'' . $context['session_id'] . '\');"' : '', '>
                        <table border="0" cellpadding="1" cellspacing="0" bgcolor=#aaaaaa>
                           <tr>
                              <td>Username:</td>
                              <td><input type="text" name="user" size="10" /></td>
                              <td><select name="cookielength">
                              <option value="60">', $txt['smf53'], '</option>
                              <option value="1440">', $txt['smf47'], '</option>
                              <option value="10080">', $txt['smf48'], '</option>
                              <option value="43200">', $txt['smf49'], '</option>
                              <option value="-1" selected="selected">', $txt['smf50'], '</option>
                           </select></td>
                           </tr>
                           <tr>
                              <td>Password:</td>
                              <td><input type="password" name="passwrd" size="10" /></td>
                              <td><input type="submit" value="', $txt[34], '" /></td>
                           </tr>
                        </table>
                           <input type="hidden" name="hash_passwrd" value="" />
                        </form>';
   }

   echo '
               </span>
            </td>
         </tr>
      </table>';

   echo '
      <table id="upshrinkHeader2"', empty($options['collapse_header']) ? '' : ' style=""', ' width="100%" cellpadding="4" cellspacing="0" border="0">
         <tr>';


   echo '
            <td width="90%" class="column-title">
               ', template_menu(), '
            </td>';

   echo '
         </tr>
      </table>
   </div>';



and i'm trying to insert the following:

<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but21.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
<input type="hidden" name="encrypted" value="-----BEGIN PKCS7-----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-----END PKCS7-----
">
</form>


i've tried to insert it as a couple of different ways, including as:
1) a <table>...after the  first <table> (with the row of links; wp.com etc.)
2) a <tr>...within the <table> with the row of links

i get the same error each time.

snork13

Quote from: look up on February 06, 2007, 05:44:16 PM
sure.

i know i'm about to post more than you need, but i don't want to leave out anything important that you may need to see.
also, as you'll see, i've put in a row of links to other sites.

from index.template.php...

   // display user name
   echo '
     
      <table width="100%" cellspacing="1" cellpadding="5" class="bordercolor" border="0">
          
           <tr>
                     <td align="center">
                          <font size="1"><a href="http://www.widespreadpanic.com/" target="_blank">WP.com</a> | <a href="http://www.everydaycompanion.com/asp/default.asp" target="_blank">EC.com</a> | <a href="http://www.panicstream.com/" target="_blank">pstream.com</a> | <a href="http://www.allmanbrothersband.com/" target="_blank">ABB.com</a> | <a href="http://www.discobiscuits.com/main_flashsite.asp" target="_blank">bisco.com</a> | <a href="http://www.drivebytruckers.com/" target="_blank">DBT.com</a> | <a href="http://www.dead.net/" target="_blank">dead.net</a> | <a href="http://www.moe.org/index2.htm" target="_blank">moe.org</a> | <a href="http://www.mymorningjacket.com/" target="_blank">MMJ.com</a> | <a href="http://www.mule.net/" target="_blank">mule.net</a> | <a href="http://www.nmallstars.com/index.shtml" target="_blank">NMAS.com</a> | <a href="http://www.foryouroutformation.com/test3/" target="_blank">out411.com</a> | <a href="http://www.pgroove.com/quicknews/pgroove.php" target="_blank">pgroove.com</a> | <a href="http://www.tealeafgreen.com/" target="_blank">TLG.com</a></font>
                    
                     </td>
           </tr>
       </table>

      <table width="100%" cellspacing="1" cellpadding="5" class="bordercolor" border="0">
            
         <tr>';
        
   echo '
                     <td class="windowbg2" width="100%" valign="middle" align="left" style="background-color:#aaaaaa;">
                     ', theme_linktree2(), '
                     </td>';

   echo '
                     <td style="background-color:#aaaaaa;" width="250" valign="top" align="right" class="windowbg"><span class="middletext" style="display:block;width:250px;">';
                    
   if($context['user']['is_logged'])
   {
      echo '
            <strong>Welcome, ', $context['user']['name'] , '.</strong><br />';
   }
           
   // Go to PM center... [pm]
   if ($context['user']['is_logged'] && $context['allow_pm'])
   {
      echo ((isset($current_action) && $curent_action == 'pm') || $context['browser']['is_ie4']) ? '' : '' , '
               <a href="', $scripturl, '?action=pm">Private Messages</a>: ', $context['user']['unread_messages'], ' Unread, ', $context['user']['messages'], ' Total.<br />';
   }
           
   // Now, onto our second set of info, are they logged in again?
   if ($context['user']['is_logged'])
   {
      // Is the forum in maintenance mode?
      if ($context['in_maintenance'] && $context['user']['is_admin'])
         echo '
                        <b>', $txt[616], '</b><br />';

      // Are there any members waiting for approval?
      if (!empty($context['unapproved_members']))
         echo '
                        ', $context['unapproved_members'] == 1 ? $txt['approve_thereis'] : $txt['approve_thereare'], ' <a href="', $scripturl, '?action=viewmembers;sa=browse;type=approve">', $context['unapproved_members'] == 1 ? $txt['approve_member'] : $context['unapproved_members'] . ' ' . $txt['approve_members'], '</a> ', $txt['approve_members_waiting'], '<br />';

      // Show the total time logged in?
      if (!empty($context['user']['total_time_logged_in']))
      {
         echo '
                        ', $txt['totalTimeLogged1'], '<br />';

         // If days is just zero, don't bother to show it.
         if ($context['user']['total_time_logged_in']['days'] > 0)
            echo $context['user']['total_time_logged_in']['days'] . $txt['totalTimeLogged2'];

         // Same with hours - only show it if it's above zero.
         if ($context['user']['total_time_logged_in']['hours'] > 0)
            echo $context['user']['total_time_logged_in']['hours'] . $txt['totalTimeLogged3'];

         // But, let's always show minutes - Time wasted here: 0 minutes ;).
         echo $context['user']['total_time_logged_in']['minutes'], $txt['totalTimeLogged4'], '<br />';
      }
   }
   // Otherwise they're a guest - this time ask them to either register or login - lazy bums...
   else
   {
      echo '            </span>
                        <script language="JavaScript" type="text/javascript" src="', $settings['default_theme_url'], '/sha1.js"></script>

                        <form action="', $scripturl, '?action=login2" method="post" accept-charset="', $context['character_set'], '" class="middletext" style="margin: 3px 1ex 1px 0;"', empty($context['disable_login_hashing']) ? ' onsubmit="hashLoginPassword(this, \'' . $context['session_id'] . '\');"' : '', '>
                        <table border="0" cellpadding="1" cellspacing="0" bgcolor=#aaaaaa>
                           <tr>
                              <td>Username:</td>
                              <td><input type="text" name="user" size="10" /></td>
                              <td><select name="cookielength">
                              <option value="60">', $txt['smf53'], '</option>
                              <option value="1440">', $txt['smf47'], '</option>
                              <option value="10080">', $txt['smf48'], '</option>
                              <option value="43200">', $txt['smf49'], '</option>
                              <option value="-1" selected="selected">', $txt['smf50'], '</option>
                           </select></td>
                           </tr>
                           <tr>
                              <td>Password:</td>
                              <td><input type="password" name="passwrd" size="10" /></td>
                              <td><input type="submit" value="', $txt[34], '" /></td>
                           </tr>
                        </table>
                           <input type="hidden" name="hash_passwrd" value="" />
                        </form>';
   }

   echo '
               </span>
            </td>
         </tr>
      </table>';

   echo '
      <table id="upshrinkHeader2"', empty($options['collapse_header']) ? '' : ' style=""', ' width="100%" cellpadding="4" cellspacing="0" border="0">
         <tr>';


   echo '
            <td width="90%" class="column-title">
               ', template_menu(), '
            </td>';

   echo '
         </tr>
      </table>
   </div>';



and i'm trying to insert the following:

<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but21.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
<input type="hidden" name="encrypted" value="-----BEGIN PKCS7-----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-----END PKCS7-----
">
</form>


i've tried to insert it as a couple of different ways, including as:
1) a <table>...after the  first <table> (with the row of links; wp.com etc.)
2) a <tr>...within the <table> with the row of links

i get the same error each time.
Hello,


PM sent.... I am a long time spreadhead, and friend of the band  :D, I haven't seen them in years, well about 10 years :P

-snork13
Mods
Please DO NOT PM me with requests for individual support, but post your questions and concerns in the appropriate section of the forum where other users can benefit from them as well. Thank you.
I have been super busy as of late. Working on updates to all my modifications for 2.0.1

look up

cool.  pm on the way.

please feel free to join the forum.  it can get kind of hairy in there, but overall, it's a good group of folks.

you should jump back on tour soon.  jimmy herring is doing good things for them.

look up

thanks for your help, snork.

this guy is good people, folks.

starz

#171
How do I get the donation button to work on other themes?  Can someone please help me?
Love music?  So do we.
http://mftmforum.com

Bigguy

You will have to add the button code to that theme. In the index.template.php file of the theme you use find all of the button codes near the bottom of the file. The button code for the default theme is this:

// Show the [help] button.
echo ($current_action == 'help' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '">&nbsp;</td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'help' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=help">' , $txt[119] , '</a>
</td>' , $current_action == 'help' ? '<td class="maintab_active_' . $last . '">&nbsp;</td>' : '';


In this example you would change everything that says help to donate. This button code might not work for your theme though as this is for the default theme.

thegpg

Ugh.

I just tried to install this mod on 1.1.2

Nuffin happens.  Helpeth please?  Purdy please?

With sugar on top?!

=)

Bigguy

How do you mean nothin happens. Does it not get installed or you just can't see it at all. If you are using a custom theme then you will have to add parts of it manually.

thegpg

I am using the default theme...and I mean it installs but I don't show the "donations" section in features and options, or the paypal donation area itself.

Bigguy

Do all your files have the right permissions. They should be either 777 or 755 These can be changed by going into the Packages area in the admin panel and then to options. If youscroll down there is a place to make all files writtable.

snork13

it may also be because I need to update it for 1.1.2 ;D
Mods
Please DO NOT PM me with requests for individual support, but post your questions and concerns in the appropriate section of the forum where other users can benefit from them as well. Thank you.
I have been super busy as of late. Working on updates to all my modifications for 2.0.1

Bigguy

Oh, yeah, that could be it to, lol. :)

Quote from: snork13 on February 14, 2007, 12:10:01 PM
it may also be because I need to update it for 1.1.2 ;D

thegpg

Quote from: snork13 on February 14, 2007, 12:10:01 PM
it may also be because I need to update it for 1.1.2 ;D

if you did you would be my very best friend in the whole SMF world!

Advertisement: