As I stated, I'm just a novice...sorry! I believe THIS is the code that needs to be changed:
function get_price_info($title='',$package_pid, $uri)
{
global $price_db_table_name,$wpdb;
add_column_if_not_exist($price_db_table_name, 'sort_order');
$pricesql = "select * from $price_db_table_name where status=1 and post_type='listing' ORDER BY sort_order,pid";
$priceinfo = $wpdb->get_results($pricesql);
if($title==''){$title=$package_pid;}
if($priceinfo)
{
$counter=1;
foreach($priceinfo as $priceinfoObj)
{
if(stripslashes($priceinfoObj->title_desc))
{
?>
<div class="package"><input type="radio" value="<?php echo $priceinfoObj->pid;?>" <?php if($title==$priceinfoObj->pid ){ echo 'checked="checked"';}?> name="price_select" id="price_select<?php echo $counter ?>" onclick="window.location.href='<?php echo home_url();?>/?<?php echo $uri; ?>&pkg=<?php echo $priceinfoObj->pid;?>'+user_val" /> <?php echo stripslashes($priceinfoObj->title_desc);?></div>
<?php
}else
{
?>
<div class="package"><input type="radio" value="<?php echo $priceinfoObj->pid;?>" <?php if($title==$priceinfoObj->pid ){ echo 'checked="checked"';}?> name="price_select" id="price_select<?php echo $counter ?>" onclick="window.location.href='<?php echo home_url();?>/?<?php echo $uri; ?>&pkg=<?php echo $priceinfoObj->pid;?>'+user_val" /> <?php printf(__(PUBLISH_DAYS_TEXT),$priceinfoObj->title,$priceinfoObj->days,str_replace(' ','_',$priceinfoObj->title),$priceinfoObj->amount,get_currency_type());?></div>
<?php
}
?>
<?php $counter++;
}
}
}
Does anyone know what I would change to show the first 3 entries in a row, then the next 3, and so on instead of one per line?
I have no idea whatsoever and REALLY, REALLY need some help...
Thanks to everyone in advance!!!