Author Topic: How To Remove PayPal Footer?  (Read 29816 times)

Hammerhead

  • Jr. Member
  • **
  • Posts: 90
How To Remove PayPal Footer?
« on: August 24, 2010, 16:33:08 pm »
Can someone tell me how to remove the PayPal logo (see below) from the category page?



Thanks in advance!

Hammerhead

  • Jr. Member
  • **
  • Posts: 90
Re: How To Remove PayPal Footer?
« Reply #1 on: August 26, 2010, 17:44:33 pm »
Bump.  Anyone?

Svetlio

  • Jr. Member
  • **
  • Posts: 141
Re: How To Remove PayPal Footer?
« Reply #2 on: August 27, 2010, 13:46:04 pm »
You can use a tool like Mozilla Firefox's Firebug in order to determine where exactly the image is inserted in your code.

Then you can alter the corresponding file.
SiteGround Technical Support Team Member. Check out our special VirtueMart hosting package

Hammerhead

  • Jr. Member
  • **
  • Posts: 90
Re: How To Remove PayPal Footer?
« Reply #3 on: August 29, 2010, 04:36:54 am »
That didn't help.  In fact it confused the crap out of me.  If someone knows, please just say so.  I'm not a programmer, I just don't think that PayPal logo is appropriate when you're accepting other payment systems, and especially not for a US based store.

Hammerhead

  • Jr. Member
  • **
  • Posts: 90
Re: How To Remove PayPal Footer?
« Reply #4 on: August 29, 2010, 15:42:00 pm »
Ok, I figured it out.  It's not a template at all, but VM itself.  When you select 'PayPal New API', it inserts that footer in the main content area.  Somebody ought to say something to them about this and get it out of there.

hooi

  • Beginner
  • *
  • Posts: 1
Re: How To Remove PayPal Footer?
« Reply #5 on: October 02, 2010, 23:25:05 pm »
Could someone tell me howto de-select 'PayPal New API' please? I just can't find it.

Thanks....

---------------

Got it finally.

It's at: Store --> List Payment Methods.
then De-Activate: PayPal (New API)

lesleyc

  • Beginner
  • *
  • Posts: 1
Re: How To Remove PayPal Footer?
« Reply #6 on: October 13, 2010, 13:50:43 pm »
Could someone tell me howto de-select 'PayPal New API' please? I just can't find it.

Thanks....

Thanks @Hammerhead and @hooi, that did the trick :) much appreciated!

---------------

Got it finally.

It's at: Store --> List Payment Methods.
then De-Activate: PayPal (New API)

sabirul

  • Beginner
  • *
  • Posts: 1
Re: How To Remove PayPal Footer?
« Reply #7 on: January 07, 2011, 21:25:11 pm »
Here is the solution

1. Go to your site's file manager
2. Go to Component > com_virtuemart > themes > default > common
3. Open shopIndex.tpl.php in edit mode
4. Locate the following code:

Code: [Select]
<?php if( isset($paypalLogo)) : ?>
<div class="vmRecent" style="padding: 10px; text-align: center;">
  <?php echo $paypalLogo?>
</div>
<?php endif; ?>
5. Delete it.

Problem solved.

hammerman47

  • Beginner
  • *
  • Posts: 9
Re: How To Remove PayPal Footer?
« Reply #8 on: February 10, 2011, 05:57:52 am »
I have removed the paypal footer from my categories page but it is still there on my product pages..any ideas please..

logonworks

  • Beginner
  • *
  • Posts: 12
Re: How To Remove PayPal Footer?
« Reply #9 on: February 18, 2011, 00:48:42 am »
Hi All !

Does someone know how to delete the PayPal footer that is displayed on the products pages ?

Thank you for your assistance !  ;D

dnlvsci

  • Jr. Member
  • **
  • Posts: 51
Re: How To Remove PayPal Footer?
« Reply #10 on: February 18, 2011, 12:14:55 pm »
Here is the solution

1. Go to your site's file manager
2. Go to Component > com_virtuemart > themes > default > templates > product_details
3. Open flypage.tpl.php in edit mode
4. Locate the following code:

Code: (in 78. row)

   <?php if( isset($paypalLogo)) : ?>
      <tr>
         <td colspan="3" align="center">
            <?php echo $paypalLogo ?>
         </td>
      </tr>
   <?php endif;?>

5. Delete it.

Problem solved.

whufe

  • Beginner
  • *
  • Posts: 1
Re: How To Remove PayPal Footer?
« Reply #11 on: March 14, 2011, 15:37:10 pm »
Hi,

   I did what dnlvsci said, delete the following code from that file. But i still see that blooding logo on my browser. Please help..! Thanks

  <?php if( isset($paypalLogo)) : ?>
      <tr>
         <td colspan="3" align="center">
            <?php echo $paypalLogo ?>
         </td>
      </tr>
   <?php endif;?>

stinga

  • Contributing Developer
  • Full Member
  • *
  • Posts: 872
    • Squangle ltd
Re: How To Remove PayPal Footer?
« Reply #12 on: March 14, 2011, 17:28:35 pm »
G'day,

I would have thought that the
Code: [Select]
<?php if( isset($paypalLogo)) : ?>
would mean the logo can be turned off.
What sets $paypalLogo?
Stinga.
614869 products in 747 categories with 15749 products in 1 category.
                                             Document Complete   Fully Loaded
                Load Time First Byte Start Render   Time      Requests      Time      Requests
First View     2.470s     0.635s     1.276s          2.470s       31            2.470s      31
Repeat View  1.064s     0.561s     1.100s          1.064s       4             1.221s       4

Brody

  • Beginner
  • *
  • Posts: 41
Re: How To Remove PayPal Footer?
« Reply #13 on: April 12, 2011, 07:57:23 am »
Can anyone tell me how to make this show up on the main store page as well as the different category pages?

Dyaus2spear

  • Beginner
  • *
  • Posts: 1
Re: How To Remove PayPal Footer?
« Reply #14 on: April 12, 2011, 13:00:53 pm »
Here is the solution

1. Go to your site's file manager
2. Go to Component > com_virtuemart > themes > default > common
3. Open shopIndex.tpl.php in edit mode
4. Locate the following code:

Code: [Select]
<?php if( isset($paypalLogo)) : ?>
<div class="vmRecent" style="padding: 10px; text-align: center;">
  <?php echo $paypalLogo?>
</div>
<?php endif; ?>
5. Delete it.

Problem solved.

Thanks for sharing because of this solution I also resolve my footer problem.