tr-opencart

     
avatar Şuanki Zaman: 11-16-2024, 04:41 PMHoşgeldin Misafir !
  Şifremi Hatırlat   kayıt ol
opencart temaları

Ürün Seçenek başlığından sonra satır atlatmak

Konuyu görüntüleyenler: 1 Misafir
 
Değerlendir:
  • 0 Oy - 0 Yüzde
  • 1
  • 2
  • 3
  • 4
  • 5
%
Cevapla  Gönder 
v  v
Yazar  orhansa - Görüntüleme - Okunma  2975 - Yorum  4

orhansav
Üye
***
Üye user avatar
Çevrimdışı

Mesajlar: 101
Konular: 47
Katılma Tarihi: Apr 2012
Rep Puanı: 0
Teşekkürler: 3
4 Mesajına, 4 Teşekkür edildi.



Kişisel Bilgileri: v
Konu Tarihi: 01-11-2016 10:52 PM

Ürün sayfasında ÜRÜN PARÇA FİYATI sol tarafta kalıyor.
ben ekteki resimdeki gibi yapmak istiyorum.
Nasıl yapabilirim.
Versiyonum: OC 2.0.1.0


Ekli Dosya(lar) Önizleme(ler)
Resmi Büyütmek İçin Tıklayın   
Alıntı Yaparak Cevapla
Paylaş!
alikralv
Üye
***
Üye user avatar
Çevrimdışı

Mesajlar: 86
Konular: 14
Katılma Tarihi: Jul 2013
Rep Puanı: 0
Teşekkürler: 77
15 Mesajına, 29 Teşekkür edildi.



Kişisel Bilgileri: v
Konu Tarihi: 01-12-2016 10:51 AM
(01-11-2016 10:52 PM)orhansa Yazılan:  Ürün sayfasında ÜRÜN PARÇA FİYATI sol tarafta kalıyor.
ben ekteki resimdeki gibi yapmak istiyorum.
Nasıl yapabilirim.
Versiyonum: OC 2.0.1.0

hocam o alanın kodlarını verirseniz yardımcı olmaya çalışayım.
Alıntı Yaparak Cevapla
Paylaş!
orhansav
Üye
***
Üye user avatar
Çevrimdışı

Mesajlar: 101
Konular: 47
Katılma Tarihi: Apr 2012
Rep Puanı: 0
Teşekkürler: 3
4 Mesajına, 4 Teşekkür edildi.



Kişisel Bilgileri: v
Konu Tarihi: 01-12-2016 11:17 AM
Ekteki dosyanın 153.ncü satırındaki aşağıdaki kod olması lazım düzeltilmesi gereken.

<label class="control-label col-sm-4"><?php echo $option['name']; ?></label>

PHP Kod:
<?php echo $header?>
<div class="container">
    <ul class="breadcrumb">
        <?php foreach ($breadcrumbs as $breadcrumb) { ?>
            <li><a href="<?php echo $breadcrumb['href']; ?>"><?php echo $breadcrumb['text']; ?></a></li>
        <?php ?>
    </ul>

    <div class="row">
    <?php echo $column_left?>

    <?php 
    
if ($column_left && $column_right) {
        
$content_width 'col-sm-6';
        
$content_left  'col-sm-6';
        
$content_right 'col-sm-6';
    } elseif (
$column_left || $column_right) {
        
$content_width 'col-sm-9';
        
$content_left  'col-sm-5';
        
$content_right 'col-sm-7';
    } else {
        
$content_width 'col-sm-12';
        
$content_left  'col-sm-5 col-lg-7';
        
$content_right 'col-sm-7 col-lg-5';
    } 
?>

    <div id="content" class="<?php echo $content_width?> product_page"><?php echo $content_top?>
        <div class="row product-content-columns">
            
            <!-- Content left -->
            <div class="<?php echo $content_left?> product_page-left">                
                <!-- product image -->
                <div id="default_gallery" class="product-gallery">
                    <?php if ($thumb || $images) { ?>
                            <?php if ($images|| $thumb) { ?>
                            <div class="image-thumb"> 
                                <ul id="image-additional"> 
                                
                                    <?php if (!empty($thumb)) { ?>
                                    <li>
                                        <a class="active" href="#" data-image="<?php echo $thumb?>" data-zoom-image="<?php echo $popup?>">
                                            <img src="<?php echo $thumb?>" alt="" />
                                        </a>
                                    </li>
                                    <?php ?>
                                    <?php foreach ($images as $image) { ?>
                                    <li>
                                        <a href="#" data-image="<?php echo $image['popup']; ?>" data-zoom-image="<?php echo $image['popup']; ?>"> <img src="<?php echo $image['thumb']; ?>" alt="" /> </a>
                                    </li>
                                    <?php ?>
                                
                                </ul>
                            </div>
                            <?php ?>
                            <?php if ($thumb) { ?>
                                <div class="image">
                                    <img id="gallery_zoom" src="<?php echo $thumb?>" data-zoom-image="<?php echo $popup?>" alt="" /> 
                                </div>
                            <?php ?>
                    <?php ?>
                </div>
        
                
        
                <?php $i=0; if ($thumb || $images) { $i++?>
                <script type="text/javascript">
                    jQuery(document).ready(function(){
                    var myPhotoSwipe = $("#gallery a").photoSwipe({ enableMouseWheel: false , enableKeyboard: false, captionAndToolbarAutoHideDelay:0 });
                    });
                </script>
                <div id="full_gallery">
                    <ul id="gallery">
                        <?php if (!empty($thumb)) { ?><li><a href="<?php echo $popup?>" data-something="something" data-another-thing="anotherthing"><img src="<?php echo $popup?>" title="<?php echo $heading_title?>" alt="<?php echo $heading_title?>" /></a></li><?php ?>
                        <?php foreach ($images as $image) { ?>
                        <li><a href="<?php echo $image['popup']; ?>" data-something="something<?php echo $i?>" data-another-thing="anotherthing<?php echo $i?>"><img src="<?php echo $image['popup']; ?>" alt="<?php echo $heading_title?>" /></a></li>
                            <?php ?>
                    </ul>            
                </div>
                <?php ?>                
            </div>

            <!-- Content right -->
            <div class="<?php echo $content_right?> product_page-right">
                <div class="general_info product-info">

                    <h1 class="product-title"><?php echo $heading_title?></h1>
                    
                    <!-- Prodyuct rating status -->
                    <div class="rating-section product-rating-status">
                        <?php if ($review_status) { ?>
                        <div class="rating">
                            <?php for ($i 1$i <= 5$i++) { ?>
                            <?php if ($rating $i) { ?>
                            <span class="fa fa-stack"><i class="fa fa-star-o fa-stack-1x"></i></span>
                            <?php } else { ?>
                            <span class="fa fa-stack"><i class="fa fa-star fa-stack-1x"></i><i class="fa fa-star-o fa-stack-1x"></i></span>
                            <?php ?>
                            <?php ?>
                            &nbsp;
                            &nbsp;
                            <a onclick="document.getElementById('tab-review').scrollIntoView();"><?php echo $reviews?></a> / <a onclick="document.getElementById('tab-review').scrollIntoView();"><?php echo $text_write?></a>
                        </div>
                        <?php ?>
                    </div>

                    <?php if ($price) { ?>
                    <div class="price-section">
                        <span class="price-new"><?php echo $special?></span>
                        <?php if (!$special) { ?>
                        <span class="price-new"><?php echo $price?></span>
                        <?php } else { ?>
                        <span class="price-old"><?php echo $price?></span>
                        <?php ?>
                        <?php if ($tax) { ?>
                        <span class="tax"><?php echo $text_tax?> <?php echo $tax?></span>
                        <?php ?>
                        <div class="reward-block">
                            <?php if ($points) { ?>
                            <span    class="reward"><?php echo $text_points?> <?php echo $points?></span>
                            <?php ?>
                            <?php if ($discounts) { ?>
                            <?php foreach ($discounts as $discount) { ?>
                            <span><?php echo $discount['quantity']; ?><?php echo $text_discount?><?php echo $discount['price']; ?></span>
                            <?php ?>
                            <?php ?>
                        </div>
                    </div>
                    <?php ?>

                    <ul class="list-unstyled product-section">
                        <?php if ($manufacturer) { ?>
                        <li><?php echo $text_manufacturer?> <a href="<?php echo $manufacturers?>"><?php echo $manufacturer?></a></li>
                        <?php ?>
                        <li><?php echo $text_model?> <span><?php echo $model?></span></li>
                        <?php if ($reward) { ?>
                        <li><?php echo $text_reward?> <span><?php echo $reward?></span></li>
                        <?php ?>
                    </ul>
                </div>
                
                <div id="product">

                    <!-- Product options -->
                    <div class="product-options form-horizontal">
                        <?php if ($options) { ?>
                            <?php foreach ($options as $option) { ?>
                                <?php if ($option['type'] == 'select') { ?>
                                    <div class="form-group<?php echo ($option['required'] ? ' required' ''); ?>">
                                        <label class="control-label col-sm-4" for="input-option<?php echo $option['product_option_id']; ?>"><?php echo $option['name']; ?></label>
                                        <div class="col-sm-8">
                                            <select name="option[<?php echo $option['product_option_id']; ?>]" id="input-option<?php echo $option['product_option_id']; ?>" class="form-control">
                                                <option value=""><?php echo $text_select?></option>
                                                <?php foreach ($option['product_option_value'] as $option_value) { ?>
                                                <option value="<?php echo $option_value['product_option_value_id']; ?>"><?php echo $option_value['name']; ?>
                                                <?php if ($option_value['price']) { ?>
                                                <?php /* support@liveopencart.com 
                                                (<?php echo $option_value['price_prefix']; ?><?php echo $option_value['price']; ?>)
                                                */ 
?>
                                                
                                                (<?php echo $option_value['price_prefix']=='='?'':$option_value['price_prefix']; ?><?php echo $option_value['price']; ?>)
                                                
                                                <?php ?>
                                                </option>
                                                <?php ?>
                                                
                                            </select>
                                        </div>
                                    </div>
                                <?php ?>
                                <?php if ($option['type'] == 'radio') { ?>
                                    <div class="form-group<?php echo ($option['required'] ? ' required' ''); ?>">
                                        <label class="control-label col-sm-4"><?php echo $option['name']; ?></label>
                                        <div id="input-option<?php echo $option['product_option_id']; ?>" class="col-sm-8">
                                            <?php foreach ($option['product_option_value'] as $option_value) { ?>
                                                <div class="radio">
                                                    <label>
                                                    <input type="radio" name="option[<?php echo $option['product_option_id']; ?>]" value="<?php echo $option_value['product_option_value_id']; ?>" />
                                                    <?php echo $option_value['name']; ?>
                                                    <?php if ($option_value['price']) { ?>
                                                    <?php /* support@liveopencart.com 
                                                    (<?php echo $option_value['price_prefix']; ?><?php echo $option_value['price']; ?>)
                                                    */ 
?>
                                                    
                                                    (<?php echo $option_value['price_prefix']=='='?'':$option_value['price_prefix']; ?><?php echo $option_value['price']; ?>)
                                                    
                                                    <?php ?>
                                                    </label>
                                                </div>
                                            <?php ?>
                                        </div>
                                    </div>
                                <?php ?>
                                <?php if ($option['type'] == 'checkbox') { ?>
                                    <div class="form-group<?php echo ($option['required'] ? ' required' ''); ?>">
                                        <label class="control-label col-sm-4"><?php echo $option['name']; ?></label>
                                        <div id="input-option<?php echo $option['product_option_id']; ?>" class="col-sm-8">
                                            <?php foreach ($option['product_option_value'] as $option_value) { ?>
                                                <div class="checkbox">
                                                    <label>
                                                    <input type="checkbox" name="option[<?php echo $option['product_option_id']; ?>][]" value="<?php echo $option_value['product_option_value_id']; ?>" />
                                                    <?php echo $option_value['name']; ?>
                                                    <?php if ($option_value['price']) { ?>
                                                    <?php /* support@liveopencart.com 
                                                    (<?php echo $option_value['price_prefix']; ?><?php echo $option_value['price']; ?>)
                                                    */ 
?>
                                                    
                                                    (<?php echo $option_value['price_prefix']=='='?'':$option_value['price_prefix']; ?><?php echo $option_value['price']; ?>)
                                                    
                                                    <?php ?>
                                                    </label>
                                                </div>
                                            <?php ?>
                                        </div>
                                    </div>
                                <?php ?>
                                <?php if ($option['type'] == 'image') { ?>
                                    <div class="form-group<?php echo ($option['required'] ? ' required' ''); ?>">
                                        <label class="control-label col-sm-4"><?php echo $option['name']; ?></label>
                                        <div id="input-option<?php echo $option['product_option_id']; ?>" class="col-sm-8">
                                            <?php foreach ($option['product_option_value'] as $option_value) { ?>
                                            <div class="radio">
                                                <label>
                                                <input type="radio" name="option[<?php echo $option['product_option_id']; ?>]" value="<?php echo $option_value['product_option_value_id']; ?>" />
                                                <img src="<?php echo $option_value['image']; ?>" alt="<?php echo $option_value['name'] . ($option_value['price'] ? ' ' $option_value['price_prefix'] . $option_value['price'] : ''); ?>" class="img-thumbnail" /> <?php echo $option_value['name']; ?>
                                                <?php if ($option_value['price']) { ?>
                                                <?php /* support@liveopencart.com 
                                                (<?php echo $option_value['price_prefix']; ?><?php echo $option_value['price']; ?>)
                                                */ 
?>
                                                
                                                (<?php echo $option_value['price_prefix']=='='?'':$option_value['price_prefix']; ?><?php echo $option_value['price']; ?>)
                                                
                                                <?php ?>
                                                </label>
                                            </div>
                                            <?php ?>
                                        </div>
                                    </div>
                                <?php ?>
                                <?php if ($option['type'] == 'text') { ?>
                                    <div class="form-group<?php echo ($option['required'] ? ' required' ''); ?>">
                                        <label class="control-label col-sm-4" for="input-option<?php echo $option['product_option_id']; ?>"><?php echo $option['name']; ?></label>
                                        <div class="col-sm-8">
                                            <input type="text" name="option[<?php echo $option['product_option_id']; ?>]" value="<?php echo $option['value']; ?>" placeholder="<?php echo $option['name']; ?>" id="input-option<?php echo $option['product_option_id']; ?>" class="form-control" />
                                        </div>
                                    </div>
                                <?php ?>
                                <?php if ($option['type'] == 'textarea') { ?>
                                    <div class="form-group<?php echo ($option['required'] ? ' required' ''); ?>">
                                        <label class="control-label col-sm-4" for="input-option<?php echo $option['product_option_id']; ?>"><?php echo $option['name']; ?></label>
                                        <div class="col-sm-8">
                                            <textarea name="option[<?php echo $option['product_option_id']; ?>]" rows="5" placeholder="<?php echo $option['name']; ?>" id="input-option<?php echo $option['product_option_id']; ?>" class="form-control"><?php echo $option['value']; ?></textarea>
                                        </div>
                                    </div>
                                <?php ?>
                                <?php if ($option['type'] == 'file') { ?>
                                    <div class="form-group<?php echo ($option['required'] ? ' required' ''); ?>">
                                        <label class="control-label col-sm-4"><?php echo $option['name']; ?></label>
                                        <div class="col-sm-8">
                                            <button type="button" id="button-upload<?php echo $option['product_option_id']; ?>" data-loading-text="<?php echo $text_loading?>" class="btn btn-block btn-default"><i class="fa fa-upload"></i> <?php echo $button_upload?></button>
                                            <input type="hidden" name="option[<?php echo $option['product_option_id']; ?>]" value="" id="input-option<?php echo $option['product_option_id']; ?>" />
                                        </div>
                                    </div>
                                <?php ?>
                                <?php if ($option['type'] == 'date') { ?>
                                    <div class="form-group<?php echo ($option['required'] ? ' required' ''); ?>">
                                        <label class="control-label col-sm-4" for="input-option<?php echo $option['product_option_id']; ?>"><?php echo $option['name']; ?></label>
                                        <div class="input-group  col-sm-8 date">
                                            <input type="text" name="option[<?php echo $option['product_option_id']; ?>]" value="<?php echo $option['value']; ?>" data-date-format="YYYY-MM-DD" id="input-option<?php echo $option['product_option_id']; ?>" class="form-control" />
                                            <span class="input-group-btn">
                                                <button class="btn btn-default" type="button"><i class="fa fa-calendar"></i></button>
                                            </span>
                                        </div>
                                    </div>
                                <?php ?>
                                <?php if ($option['type'] == 'datetime') { ?>
                                <div class="form-group<?php echo ($option['required'] ? ' required' ''); ?>">
                                <label class="control-label col-sm-4" for="input-option<?php echo $option['product_option_id']; ?>"><?php echo $option['name']; ?></label>
                                <div class="input-group col-sm-8 datetime">
                                    <input type="text" name="option[<?php echo $option['product_option_id']; ?>]" value="<?php echo $option['value']; ?>" data-date-format="YYYY-MM-DD HH:mm" id="input-option<?php echo $option['product_option_id']; ?>" class="form-control" />
                                    <span class="input-group-btn">
                                    <button type="button" class="btn btn-default"><i class="fa fa-calendar"></i></button>
                                    </span></div>
                                </div>
                                <?php ?>
                                <?php if ($option['type'] == 'time') { ?>
                                <div class="form-group<?php echo ($option['required'] ? ' required' ''); ?>">
                                <label class="control-label col-sm-4" for="input-option<?php echo $option['product_option_id']; ?>"><?php echo $option['name']; ?></label>
                                <div class="input-group col-sm-8 time">
                                    <input type="text" name="option[<?php echo $option['product_option_id']; ?>]" value="<?php echo $option['value']; ?>" data-date-format="HH:mm" id="input-option<?php echo $option['product_option_id']; ?>" class="form-control" />
                                    <span class="input-group-btn">
                                    <button type="button" class="btn btn-default"><i class="fa fa-calendar"></i></button>
                                    </span></div>
                                </div>
                                <?php ?>
                            <?php ?>
                        <?php ?>
                    </div>

                    <!-- product reccurings -->
                    <div class="product-reccurings">
                        <?php if ($recurrings) { ?>
                            <h3><?php echo $text_payment_recurring ?></h3>
                            <div class="form-group required">
                                <select name="recurring_id" class="form-control">
                                <option value=""><?php echo $text_select?></option>
                                <?php foreach ($recurrings as $recurring) { ?>
                                <option value="<?php echo $recurring['recurring_id'?>"><?php echo $recurring['name'?></option>
                                <?php ?>
                                </select>
                                <div class="help-block" id="recurring-description"></div>
                            </div>
                        <?php ?>
                    </div>
                
                    <!-- Add to cart form -->
                    <div class="form-group form-horizontal">
                        <div class="form-group">
                            <label class="control-label col-sm-4" for="input-quantity"><?php echo $entry_qty?></label>
                            <div class="col-sm-2">
                                <input type="text" name="quantity" value="<?php echo $minimum?>" size="2" id="input-quantity" class="form-control" />
                            </div>
                        </div>
                        
                        <input type="hidden" name="product_id" value="<?php echo $product_id?>" />
                        <button type="button" id="button-cart" data-loading-text="<?php echo $text_loading?>" class="btn btn-add"><?php echo $button_cart?></button>
                    </div>

                    <ul class="product-buttons">
                        <li><button class="btn btn-icon" onclick="wishlist.add('<?php echo $product_id?>');"><i class="fa fa-heart"></i> <span class="hidden-xs hidden-sm"><?php echo $button_wishlist?></span></button></li>
                        <li><button type="button" class="btn btn-icon" onclick="compare.add('<?php echo $product_id?>');"><i class="fa fa-exchange"></i> <span class="hidden-xs hidden-sm"><?php echo $button_compare?></span></button></li>
                    </ul>                    

                    <?php if ($tags) { ?>
                    <!-- Product tags -->
                    <div class="product-tags">
                        <?php echo $text_tags?>
                        <?php for ($i 0$i count($tags); $i++) { ?>
                            <?php if ($i < (count($tags) - 1)) { ?>
                                <a href="<?php echo $tags[$i]['href']; ?>"><?php echo $tags[$i]['tag']; ?></a>,
                            <?php } else { ?>
                                <a href="<?php echo $tags[$i]['href']; ?>"><?php echo $tags[$i]['tag']; ?></a>
                            <?php ?>
                        <?php ?>
                    </div>
                    <?php ?>
                    <div class="product-share">
                        <!-- AddThis Button BEGIN -->
                        <div class="addthis_toolbox addthis_default_style"><a class="addthis_button_facebook_like" ></a> <a class="addthis_button_tweet"></a> <a class="addthis_button_pinterest_pinit"></a> <a class="addthis_counter addthis_pill_style"></a></div>
                        <script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-515eeaf54693130e"></script> 

                    <!-- AddThis Button END --> 
                    </div>

                    <?php if ($minimum 1) { ?>
                        <div class="alert alert-info"><i class="fa fa-info-circle"></i> <?php echo $text_minimum?></div>
                    <?php ?>
                </div>

            </div>
        </div>
        
        
        <!-- Related products -->
        <?php if ($products) { ?>        
        <div class="related-products product-section">
            <h3 class="product-section_title"><?php echo $text_related?></h3>
            <div class="related-slider">                
                <?php foreach ($products as $product) { ?>
                
                <div>
                    <div class="product-thumb transition">
                        <div class="image"><a href="<?php echo $product['href']; ?>"><img src="<?php echo $product['thumb']; ?>" alt="<?php echo $product['name']; ?>" title="<?php echo $product['name']; ?>" class="img-responsive" /></a>
                        </div>
                        <div class="caption">
                            <h4><a href="<?php echo $product['href']; ?>"><?php echo $product['name']; ?></a></h4>
                            <p><?php echo $product['description']; ?></p>
                            
                            <!-- Rating -->
                            <?php if ($product['rating']) { ?>
                            <div class="rating">
                                <?php for ($i 1$i <= 10$i++) { ?>
                                    <?php if ($product['rating'] < $i) { ?>
                                        <span class="fa fa-stack"><i class="fa fa-star-o fa-stack-1x"></i></span>
                                    <?php } else { ?>
                                        <span class="fa fa-stack"><i class="fa fa-star fa-stack-1x"></i><i class="fa fa-star-o fa-stack-1x"></i></span>
                                    <?php ?>
                                <?php ?>
                            </div>
                            <?php ?>

                            <!-- price -->
                            <?php if ($product['price']) { ?>
                                <p class="price">
                                <?php if (!$product['special']) { ?>
                                <?php echo $product['price']; ?>
                                <?php } else { ?>
                                <span class="price-new"><?php echo $product['special']; ?></span> <span class="price-old"><?php echo $product['price']; ?></span>
                                <?php ?>
                                <?php if ($product['tax']) { ?>
                                <span class="price-tax"><?php echo $text_tax?> <?php echo $product['tax']; ?></span>
                                <?php ?>
                            </p>
                            <?php ?>
                        </div>
                        
                            <div class="clear"></div>
                    </div>
                </div>

                <?php ?>
            </div>
        </div>
        <?php ?>
        
        
        <!-- Product description -->
        <div id="tab-description" class="product-desc product-section">
            <h3 class="product-section_title"><?php echo $tab_description?></h3>
            <?php echo $description?>
            <div class="clearfix"></div>
        </div>
        
                

        <?php if ($attribute_groups) { ?>
        <!-- Product specifications -->
        <div id="tab-specification" class="product-spec product-section">
            <h3 class="product-section_title"><?php echo $tab_attribute?></h3>
            <table class="table table-bordered">
            <?php foreach ($attribute_groups as $attribute_group) { ?>
            <tbody>
                <tr>
                    <th colspan="2"><strong><?php echo $attribute_group['name']; ?></strong></th>
                </tr>
            </tbody>
            <tbody>
                <?php foreach ($attribute_group['attribute'] as $attribute) { ?>
                <tr>
                <td><?php echo $attribute['name']; ?></td>
                <td><?php echo $attribute['text']; ?></td>
                </tr>
                <?php ?>
            </tbody>
            <?php ?>
            </table>
        </div>
        <?php ?>

        <!-- Product reviews -->
        <?php if ($review_status) { ?>            
        <div id="tab-review" class="product-reviews product-section">
            <h3 class="product-section_title"><?php echo $tab_review?></h3>
            <form class="form-horizontal">
                
                <!-- Reviews list -->
                <div id="review"></div>
                
                <!-- Review form -->
                <div class="review-form-title">
                    <h3 class="product-section_title" id="reviews_form_title"><?php echo $text_write?></h3>
                </div>
                <div class="product-review-form" id="reviews_form">
                    <?php if ($review_guest) { ?>
                        <div class="form-group required">
                            <label class="control-label col-sm-3" for="input-name"><?php echo $entry_name?></label>
                            <div class="col-sm-9">
                                <input type="text" name="name" value="" id="input-name" class="form-control" />
                            </div>
                        </div>
                        <div class="form-group required">
                            <label class="control-label col-sm-3" for="input-review"><?php echo $entry_review?></label>
                            <div class="col-sm-9">                        
                                <textarea name="text" rows="5" id="input-review" class="form-control"></textarea>
                                <div class="help-block"><?php echo $text_note?></div>
                            </div>
                        </div>
                        <div class="form-group required">
                            <label class="control-label col-sm-3"><?php echo $entry_rating?></label>
                            <div class="col-sm-9">
                                &nbsp;&nbsp;&nbsp; <?php echo $entry_bad?>&nbsp;
                                <input type="radio" name="rating" value="1" />
                                &nbsp;
                                <input type="radio" name="rating" value="2" />
                                &nbsp;
                                <input type="radio" name="rating" value="3" />
                                &nbsp;
                                <input type="radio" name="rating" value="4" />
                                &nbsp;
                                <input type="radio" name="rating" value="5" />
                                &nbsp;<?php echo $entry_good?>
                            </div>
                        </div>
                        <div class="form-group required">
                            <label class="control-label col-sm-3" for="input-captcha"><?php echo $entry_captcha?></label>
                            <div class="col-sm-9" >
                                <input type="text" name="captcha" value="" id="input-captcha" class="form-control" />
                            </div>
                        </div>
                        <div class="form-group">
                            <div class="col-sm-9 col-sm-offset-3"> 
                                <img src="index.php?route=tool/captcha" alt="" id="captcha" /> 
                                <div class="pull-right">
                                    <button type="button" id="button-review" data-loading-text="<?php echo $text_loading?>" class="btn btn-primary"><?php echo $button_continue?></button>
                                </div>
                            </div>

                        </div>

                    <?php } else { ?>
                        <?php echo $text_login?>
                    <?php ?>
                </div>
            </form>
        </div>
        <?php ?>

        

        <!-- Product comments -->
        <!-- <div class="product-comments product-section">
            <h3 class="product-section_title">Comments</h3>
            <div id="disqus_thread"></div>
            <script type="text/javascript">
            
                /* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
                var disqus_shortname = 'thtest123'; // required: replace example with your forum shortname

                /* * * DON'T EDIT BELOW THIS LINE * * */
                (function() {
                    var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
                    dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
                    (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
                })();
            </script>
            <noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
            </div> -->

            
        <!-- Taksit Baslangic -->
        <div id="tab-taksitler" class="product-spec product-section">
            <h3 class="product-section_title">Taksit Se&ccedil;enekleri</h3>
            <div id="tab-taksitler" class="tab-pane">
 
 <?php 
 
if (!$special) {

        
$islem_tutari $price;

     } else { 
  
          
$islem_tutari $special;
        
  } 

$islem_tutari trim($islem_tutari); 
$islem_tutari str_replace("TL","",$islem_tutari);
$islem_tutari str_replace(",","",$islem_tutari);
$islem_tutari str_replace(".","",$islem_tutari);
$islem_tutari str_replace(" ","",$islem_tutari);
$islem_tutari = ($islem_tutari)/100;

$para_birimi    =    "TL";

function 
taksityazdir($bankaadi,$taksitoranlari,$islem_tutari,$para_birimi){
    
    
    
$yazdir '<div class="divtaksit" id="'.$bankaadi.'">
                <table border="0" cellpadding="1" cellspacing="1" class="'
.$bankaadi.'">
                <tr><td colspan="3"><img src="image/bankalar/'
.$bankaadi.'.jpg" width="220" height="50" /></td>
                  </tr>
              <tr class="ilksatir_baslik">
                
                <td>Ay</td>
                <td>Taksit Tutarı</td>
                <td>Toplam Tutar</td>
              </tr>'
;
              
$yazdir .= "<tr class='taksit_satiri'>";
              
$yazdir .= '<td colspan="2" align="left">Tek &Ccedil;ekim</td>';
              
$yazdir .= '<td>'.number_format($islem_tutari,2,",",".")." ".$para_birimi.'</td>';
              
$yazdir .= "</tr>";
        
     if(
$taksitoranlari !="")
      { 
              
      
$bankaadi explode(",",$taksitoranlari);
      
$i 1;
      foreach(
$bankaadi as $taksitler) {
                
$bol explode(":",$taksitler);
                
$taksit_sayisi $bol[0];
                
$taksit_orani $bol[1];
                
$taksit_tutari number_format((($islem_tutari*(100+$taksit_orani))/100)/$taksit_sayisi,2,",",".");
                
$toplam_tutar number_format((($islem_tutari*(100+$taksit_orani))/100),2,",",".");
                if(
$i%== 0) {
                    
$satir_class "taksit_arasatir";
                    }else{
                        
$satir_class "taksit_satiri";
                        }
                        
                
$yazdir .= '<tr class="'.$satir_class.'">';
                
$yazdir .= '<td>'.$taksit_sayisi.'</td>';
                
$yazdir .= '<td>'.$taksit_tutari.' '.$para_birimi.'</td>';
                
$yazdir .= '<td>'.$toplam_tutar.' '.$para_birimi.'</td>';
                
$yazdir .= '</tr>';
                
                
$i++; }
                
                
                }
                
                
$yazdir .= '</table></div>';
                echo 
$yazdir;
        }

?>
<link href="image/bankalar/taksitler_css.css?time=<?php echo time(); ?>" rel="stylesheet" type="text/css" />
 
   <?php 
 
    
       
foreach ($bankalar as $banka){
      
      
       
taksityazdir($banka,$data[$banka],$islem_tutari,$para_birimi);
                
               
      }
    
    
      
       
?>
</div>

            <div class="clearfix"></div>
        </div>

<!-- Taksit Bitis -->            
            
            
            
            
            
        <?php echo $content_bottom?></div>
    <?php echo $column_right?></div>
</div>

<script>
        document.getElementById('input-quantity').onkeypress = function(e) {

  e = e || event;

  if (e.ctrlKey || e.altKey || e.metaKey) return;

  var chr = getChar(e);

  if (chr == null) return;

  if (chr < '0' || chr > '9') {
    return false;
  }

}

function getChar(event) {
  if (event.which == null) {
    if (event.keyCode < 32) return null;
    return String.fromCharCode(event.keyCode) // IE
  }

  if (event.which!=0 && event.charCode!=0) {
    if (event.which < 32) return null;
    return String.fromCharCode(event.which)   
  }

  return null; 
}
    jQuery('#reviews_form_title').addClass('close-tab');
    jQuery('#reviews_form_title').on("click", function(){
    if (jQuery(this).hasClass('close-tab')) { jQuery(this).removeClass('close').parents('#tab-review').find('#reviews_form').slideToggle(); }
        else {
        jQuery(this).addClass('close-tab').parents('#tab-review').find('#reviews_form').slideToggle();
    }
    })
</script>

<script type="text/javascript"><!--
    $('select[name=\'recurring_id\'], input[name="quantity"]').change(function(){
        $.ajax({
            url: 'index.php?route=product/product/getRecurringDescription',
            type: 'post',
            data: $('input[name=\'product_id\'], input[name=\'quantity\'], select[name=\'recurring_id\']'),
            dataType: 'json',
            beforeSend: function() {
                $('#recurring-description').html('');
            },
            success: function(json) {
                $('.alert, .text-danger').remove();
                
                if (json['success']) {
                    $('#recurring-description').html(json['success']);
                }
            }
        });
    });
    //-->
</script> 

<script type="text/javascript"><!--
    $('#button-cart').on('click', function() {
        $.ajax({
            url: 'index.php?route=checkout/cart/add',
            type: 'post',
            data: $('#product input[type=\'text\'], #product input[type=\'hidden\'], #product input[type=\'radio\']:checked, #product input[type=\'checkbox\']:checked, #product select, #product textarea'),
            dataType: 'json',
            beforeSend: function() {
                $('#button-cart').button('loading');
            },
            complete: function() {
                $('#button-cart').button('reset');
            },
            success: function(json) {
                $('.alert, .text-danger').remove();
                $('.form-group').removeClass('has-error');

                if (json['error']) {
                    if (json['error']['option']) {
                        for (i in json['error']['option']) {
                            var element = $('#input-option' + i.replace('_', '-'));
                            
                            if (element.parent().hasClass('input-group')) {
                                element.parent().after('<div class="text-danger">' + json['error']['option'][i] + '</div>');
                            } else {
                                element.after('<div class="text-danger">' + json['error']['option'][i] + '</div>');
                            }
                        }
                    }
                    
                    if (json['error']['recurring']) {
                        $('select[name=\'recurring_id\']').after('<div class="text-danger">' + json['error']['recurring'] + '</div>');
                    }
                    
                    // Highlight any found errors
                    $('.text-danger').parent().addClass('has-error');
                }
                
                if (json['success']) {
                    $('.breadcrumb').after('<div class="alert alert-success">' + json['success'] + '<button type="button" class="close" data-dismiss="alert">&times;</button></div>');
                    
                    
                    
                    <!--$('html, body').animate({ scrollTop: 0 }, 'slow');-->
                    
                    $('#cart').load('index.php?route=common/cart/info #cart');
                    setTimeout(function() {$('.alert').fadeOut(1000)},3000)
                }
            }
        });
    });
    //-->
</script> 

<script type="text/javascript"><!--
    $('.date').datetimepicker({
        pickTime: false
    });

    $('.datetime').datetimepicker({
        pickDate: true,
        pickTime: true
    });

    $('.time').datetimepicker({
        pickDate: false
    });

    $('button[id^=\'button-upload\']').on('click', function() {
        var node = this;
        
        $('#form-upload').remove();
        
        $('body').prepend('<form enctype="multipart/form-data" id="form-upload" style="display: none;"><input type="file" name="file" /></form>');
        
        $('#form-upload input[name=\'file\']').trigger('click');
        
        $('#form-upload input[name=\'file\']').on('change', function() {
            $.ajax({
                url: 'index.php?route=tool/upload',
                type: 'post',
                dataType: 'json',
                data: new FormData($(this).parent()[0]),
                cache: false,
                contentType: false,
                processData: false,
                beforeSend: function() {
                    $(node).button('loading');
                },
                complete: function() {
                    $(node).button('reset');
                },
                success: function(json) {
                    $('.text-danger').remove();
                    
                    if (json['error']) {
                        $(node).parent().find('input').after('<div class="text-danger">' + json['error'] + '</div>');
                    }
                    
                    if (json['success']) {
                        alert(json['success']);
                        
                        $(node).parent().find('input').attr('value', json['code']);
                    }
                },
                error: function(xhr, ajaxOptions, thrownError) {
                    alert(thrownError + "\r\n" + xhr.statusText + "\r\n" + xhr.responseText);
                }
            });
        });
    });
    //-->
</script> 

<script type="text/javascript"><!--
    $('#review').delegate('.pagination a', 'click', function(e) {
        e.preventDefault();

        $('#review').fadeOut('slow');

        $('#review').load(this.href);

        $('#review').fadeIn('slow');
    });

    $('#review').load('index.php?route=product/product/review&product_id=<?php echo $product_id?>');

    $('#button-review').on('click', function() {
        $.ajax({
            url: 'index.php?route=product/product/write&product_id=<?php echo $product_id?>',
            type: 'post',
            dataType: 'json',
            data: 'name=' + encodeURIComponent($('input[name=\'name\']').val()) + '&text=' + encodeURIComponent($('textarea[name=\'text\']').val()) + '&rating=' + encodeURIComponent($('input[name=\'rating\']:checked').val() ? $('input[name=\'rating\']:checked').val() : '') + '&captcha=' + encodeURIComponent($('input[name=\'captcha\']').val()),
            beforeSend: function() {
                $('#button-review').button('loading');
            },
            complete: function() {
                $('#button-review').button('reset');
                $('#captcha').attr('src', 'index.php?route=tool/captcha#'+new Date().getTime());
                $('input[name=\'captcha\']').val('');
            },
            success: function(json) {
                $('.alert-success, .alert-danger').remove();
                
                if (json['error']) {
                    $('#review').after('<div class="alert alert-danger"><i class="fa fa-exclamation-circle"></i> ' + json['error'] + '</div>');
                }
                
                if (json['success']) {
                    $('#review').after('<div class="alert alert-success"><i class="fa fa-check-circle"></i> ' + json['success'] + '</div>');
                    
                    $('input[name=\'name\']').val('');
                    $('textarea[name=\'text\']').val('');
                    $('input[name=\'rating\']:checked').prop('checked', false);
                    $('input[name=\'captcha\']').val('');
                }
            }
        });
    });

    $(document).ready(function() {
        $('.thumbnails').magnificPopup({
            type:'image',
            delegate: 'a',
            gallery: {
                enabled:true
            }
        });
    });
    //-->
</script> 

<script type="text/javascript">
    /* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
    var disqus_shortname = 'thtest123'; // required: replace example with your forum shortname

    /* * * DON'T EDIT BELOW THIS LINE * * */
    (function () {
        var s = document.createElement('script'); s.async = true;
        s.type = 'text/javascript';
        s.src = '//' + disqus_shortname + '.disqus.com/count.js';
        (document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s);
    }());
</script>

<?php echo $footer?>

produc.tpl dosyasındaki aşağıdaki kod düzeltilecek.

<label class="control-label col-sm-4"><?php echo $option['name']; ?></label>


<label class="control-label col-sm-4"> bu bölüm ÜRÜN PARÇA FİYATI yazdıran kısım,

<?php echo $option['name']; ?></label> bu bölüm Ürün parçalarını gösteren kısım.
Alıntı Yaparak Cevapla
Paylaş!
alikralv
Üye
***
Üye user avatar
Çevrimdışı

Mesajlar: 86
Konular: 14
Katılma Tarihi: Jul 2013
Rep Puanı: 0
Teşekkürler: 77
15 Mesajına, 29 Teşekkür edildi.



Kişisel Bilgileri: v
Konu Tarihi: 01-12-2016 11:43 AM
hocam class="control-label col-sm-4" bunu kaldırıp denermisin? yada onun kodunda margin-left:10px; gibi bir kod koyup denermisin? oda olmaz ise form-group ve control-label col-sm-4 css kodunu ver bir bakalım ona
Alıntı Yaparak Cevapla
Paylaş!
orhansav
Üye
***
Üye user avatar
Çevrimdışı

Mesajlar: 101
Konular: 47
Katılma Tarihi: Apr 2012
Rep Puanı: 0
Teşekkürler: 3
4 Mesajına, 4 Teşekkür edildi.



Kişisel Bilgileri: v
Konu Tarihi: 01-13-2016 01:59 AM
Doğru mu yaptım yanlış mı yaptım bilmiyorum ama satırın sonuna aşağıdaki şekilde <br><br> koydum. İstediğim gibi oldu. Parça fiyatları başlığın altına sola dayalı olarak geldi.

<label class="control-label col-sm-4"><?php echo $option['name']; ?></label><br><br>
Alıntı Yaparak Cevapla
Paylaş!

« Önceki | Sonraki »
Cevapla  Gönder 

Ürün Seçenek başlığından sonra satır atlatmak Konusunun Linki Direk Link
Ürün Seçenek başlığından sonra satır atlatmak Konusunun HTML Kodu HTML Link
Ürün Seçenek başlığından sonra satır atlatmak Konusu BBCode Linki BBCode Link
Ürün Seçenek başlığından sonra satır atlatmak Konusunu Paylaş Sosyal Paylaş

Benzeyen Konular
Konu: Yazar Cevaplar: Gösterim: Son Mesaj
  Yeni ürün eklediğimde image dosya izni 660 oluyor ve resimler görünmüyor Kaptan35 0 5,950 05-19-2022 11:58 AM
Son Mesaj: Kaptan35
  Yeni mağaza ve ürün entegrasyonu beyondOpencart 0 7,335 08-23-2021 03:20 PM
Son Mesaj: beyondOpencart
  İndirilebilir Ürünleri Ürün Sayfasından İndirme selinerdum 0 7,215 08-10-2021 04:25 PM
Son Mesaj: selinerdum
  Opencart 2.0.3.1 ürün sayfasında hata CLOSER 2 2,741 05-18-2020 11:03 AM
Son Mesaj: CLOSER
  open cart 2.x ürün sayfasında düzenleme noonweb 0 2,702 05-08-2020 02:41 AM
Son Mesaj: noonweb
  Seçenek Fiyatının Üstte Görünmesi nazamarya 5 2,958 05-05-2020 01:54 AM
Son Mesaj: nazamarya
  Kategori Açıklamalarını Ürün Listesinin Altına Nasıl Alabilirim cokindirimli 0 914 09-21-2019 03:29 PM
Son Mesaj: cokindirimli
  Ana Sayfada Ürün Tablosunu Küçültme kondrock 2 3,210 07-21-2019 01:13 AM
Son Mesaj: bayberkmarket
  Admin Ürün Listesi Sıralaması Blue06 2 2,316 02-02-2019 06:43 PM
Son Mesaj: teknohiz
  ÜRÜN EKLEME HATASI BOŞ SAYFA cokindirimli 2 1,493 01-24-2019 07:06 PM
Son Mesaj: cokindirimli

Ürün Seçenek başlığından sonra satır atlatmak indir, Ürün Seçenek başlığından sonra satır atlatmak Videosu, Ürün Seçenek başlığından sonra satır atlatmak online izle, Ürün Seçenek başlığından sonra satır atlatmak Bedava indir, Ürün Seçenek başlığından sonra satır atlatmak Yükle, Ürün Seçenek başlığından sonra satır atlatmak Hakkında, Ürün Seçenek başlığından sonra satır atlatmak nedir, Ürün Seçenek başlığından sonra satır atlatmak Free indir, Ürün Seçenek başlığından sonra satır atlatmak oyunu, Ürün Seçenek başlığından sonra satır atlatmak download


Forum Atla: