0
Could you tell me how to modify or What would you charge to modify the following page?

http://sepwebhosting.com/index.php?option=com_invoices&view=payment&id=2

I would like the Words "PayPal" and the box its in Removed.

I would like the table around the paypal button set to 0 or transparent.

I would like the Payment details & Payment Options removed or put in a cell with some color so that it can be seen.
Responses (3)
  • Accepted Answer

    Monday, November 11 2013, 11:08 AM - #Permalink
    0
    Hello David,

    to modify this page should be pretty easy if you have a bit of HTML knowledge.
    all you're looking to modify is in file /components/com_invoices/views/payment/tmpl/default.php

    please take a look at it and tell me if you're able to change all you need
    The reply is currently minimized Show
  • Accepted Answer

    Monday, November 11 2013, 03:30 PM - #Permalink
    0
    The code below should have the table that goes around the paypal button but I'm not seeing it... Am I missing somthing? Thanks for your help.









    // load the plugin
    $import = JPluginHelper::importPlugin( strtolower( 'Invoices' ) );
    // fire plugin
    $dispatcher = JDispatcher::getInstance();
    $the_payment_options = $dispatcher->trigger( 'onRenderPaymentOptions', array( $this->payment, $user ) );

    if(count($the_payment_options)){

    $pane = '1';

    echo JHtml::_('tabs.start', "pane_$pane");

    foreach($the_payment_options as $method){

    echo JHtml::_('tabs.panel', JText::_( $method[1] ), $method[1]);
    ?>



    }

    echo JHtml::_('tabs.end');

    }
    else echo JText::_( 'NO_PAYMENT_OPTIONS_AVAILABLE' );
    ?>





    The reply is currently minimized Show
  • Accepted Answer

    Tuesday, November 12 2013, 10:37 AM - #Permalink
    0
    the "table", as you say, is created with the PHP function:

    echo JHtml::_('tabs.start', "pane_$pane");


    so, you should remove all the calls to this, such as:

    echo JHtml::_('tabs.start', "pane_$pane");


    echo JHtml::_('tabs.panel', JText::_( $method[1] ), $method[1]);


    echo JHtml::_('tabs.end');
    The reply is currently minimized Show
  • Your Reply