Merhaba
Web sitemde estore teması yüklü. Ancak varyasyonlu beden eklediğim zaman ürün sayfasında varyasyon sayfasında kayma sorunu oluyor. Fotoğrafta da gördüğünüz üzere oldukça çirkin duruyor. Zira div kodunun içine saçma sapan bir table ile bu varyasyon ekleniyor. Dosyaları karıştırdım ancak bir türlü yaptığım düzenlemeler işe yaramadı.
Gördüğünüz gibi beden seçim kısmı özellikle çok kötü görünüyor. Bu kısmı düzenlemek için temanın kodlarını inceledim.
Single.php
<?php
while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'template-parts/content', 'single' ); ?>
<?php the_post_navigation(); ?>
<?php if ( ( get_theme_mod( 'estore_author_bio_setting', 0 ) == 1 ) && ( get_the_author_meta( 'description' ) ) ) { ?>
<div class="author-box clearfix">
<div class="author-img"><?php echo get_avatar( get_the_author_meta( 'user_email' ), '100' ); ?></div>
<div class="author-description-wrapper">
<h4 class="author-name"><?php the_author_meta( 'display_name' ); ?></h4>
<p class="author-description"><?php the_author_meta( 'description' ); ?></p>
</div>
</div>
<?php } ?>
Bu kısım var. Ayrıca bunun harici estoretemplate-partscontent-single.php dosyası da bu şekilde.
<div class="entry-content-text-wrapper clearfix">
<div class="entry-content-wrapper">
<?php estore_entry_meta(); ?>
<div class="entry-content">
<?php the_content(); ?>
<?php
$estore_tag_list = get_the_tag_list( '', ', ', '' );
if ( ! empty( $estore_tag_list ) ) {
?>
<div class="tags">
<?php esc_html_e( 'Tagged on: ', 'estore' );
echo $estore_tag_list; ?>
</div>
<?php
}
?>
İstediğim düzenlemeyi buradan nasıl yapabilirim? Ya da bu beden varyasyonunun kodunu admin panelden görme ya da düzenleme şansım olur mu? Umarım kendimi anlatabilmişimdir. Şimdiden çok teşekkür ederim.