Advertisement:

Author Topic: Packs to load credits horizontally and not vertical  (Read 1134 times)

saraivaruas

  • Newbie
  • *
  • Posts: 13
Packs to load credits horizontally and not vertical
« on: June 07, 2017, 05:33:19 pm »
Hello dear, I would like to know if you are on the page oc-content / plugins / payment_pro / user / packs.php
The offered packs are shown vertically
1
2
3
There is some psibility to make it go horizontally
1 2 3.
I have tried but my knowledge limits me. Thanks for the help
this is the code:
Code: [Select]
<h2><?php echo $credit_msg?></h2>
<?php if(count($packs)>0) {
    foreach(
$packs as $pack) { ?>

        <table width="250" border="0" align="center" cellpadding="0">
  <tr>
    <td>&nbsp;
<div align="center" style="background-color: #CCCCCC ">
        <div class="payments-item"  >
            <h2 style="background-color:#FF9900 "><?php printf(__('Credit pack #%s''payment_pro'), str_pad($pack['pk_i_id'], 3"0",STR_PAD_LEFT)); ?></h2>           
<div align="left"><h3 style="background-color:#FFCC00 "><?php echo $pack['s_name']; ?></h3></div>

           
              <div align="left"><?php printf(__("Price: %s"'payment_pro'), osc_format_price($pack['i_amount_cost'], osc_get_preference('currency''payment_pro'))); ?></div>
            <div align="left"><?php printf(__("Amount rewarded: %s"'payment_pro'), osc_format_price($pack['i_amount'], payment_pro_currency())); ?></div>
            <ul class="payments-ul wallet-ul">
                <?php echo '<button class="no-uniform wallet-btn" id="wlt_' $pack['pk_i_id'] . '" onclick="javascript:addPack(' $pack['pk_i_id'] . ');">' __('Buy this pack''payment_pro') . '</button>'?>
            </ul>
        </div>
  </div>
</td>
  </tr>
</table>
« Last Edit: June 07, 2017, 05:46:28 pm by _CONEJO »

_CONEJO

  • Administrator
  • Hero Member
  • *****
  • Posts: 4689
Re: Packs to load credits horizontally and not vertical
« Reply #1 on: June 07, 2017, 05:46:05 pm »
Hello,  no need to post the same question multiple times. Also, use "[ code ]" tags to put your code inside so it's shown nicely

saraivaruas

  • Newbie
  • *
  • Posts: 13
Re: Packs to load credits horizontally and not vertical
« Reply #2 on: June 07, 2017, 06:18:03 pm »
Hello _CONEJO thanks for your reply, but the way I put the code just me down as rows and what I need is to the side as column. I have to change in the code? I have tempted everything and it does not work for me

saraivaruas

  • Newbie
  • *
  • Posts: 13
Re: Packs to load credits horizontally and not vertical
« Reply #3 on: June 07, 2017, 06:47:02 pm »
Hello _CONEJO thanks for your reply, but the way I put the code just me down as rows and what I need is to the side as column. I have to change in the code? I have tempted everything and it does not work for me

saraivaruas

  • Newbie
  • *
  • Posts: 13
Re: Packs to load credits horizontally and not vertical
« Reply #4 on: June 07, 2017, 06:50:20 pm »
I think this is the one that defines

<script type="text/javascript">
            function addPack(id) {
                $("#wlt_" + id).attr('disabled', true);
                $.ajax({
                    type: "POST",
                    url: '<?php echo osc_ajax_plugin_url(PAYMENT_PRO_PLUGIN_FOLDER . 'ajax.php'); ?>&wlt=' + id,
                    dataType: 'json',
                    success: function(data){
                    if(data.error==0) {
                        window.location = '<?php echo osc_route_url('payment-pro-checkout'); ?>';
                        } else {
                        $("#wlt_" + id).attr('disabled', false);
                        var flash = $("#flash_js");
                        var message = $('<div>').addClass('flashmessage').addClass('flashmessage-error').attr('id', 'flashmessage').html(data.msg);
                        flash.html(message);
                        $("#flashmessage").slideDown('slow').delay(3000).slideUp('slow');
                        $("html, body").animate({ scrollTop: 0 }, "slow");
                        }
                }
                });
            }
        </script>

abdul ghany syed

  • Jr. Member
  • **
  • Posts: 55
  • I love awesome Classifieds
Re: Packs to load credits horizontally and not vertical
« Reply #5 on: July 27, 2017, 05:16:54 pm »
please help me to make a credit packs vertical to horizantal.