• 05-08-2016, 18:22:12
    #1
    Kurumsal PLUS
    Wordpress minamaze temasında ana sayfaki 3 lü alana 4 lü nasıl yapabilirim ?
  • 05-08-2016, 18:46:19
    #2
    index.php nin kodlarını koyabilir misin hocam oradan bakıp yardımcı olmaya çalışayım olmazsa admin bilgilerini gönderirsin oradan halledebilirim.
  • 05-08-2016, 20:10:26
    #3
    Kurumsal PLUS
    S.SAĞLAM adlı üyeden alıntı: mesajı görüntüle
    index.php nin kodlarını koyabilir misin hocam oradan bakıp yardımcı olmaya çalışayım olmazsa admin bilgilerini gönderirsin oradan halledebilirim.
    <?php
    /**
    * The main template file.
    *
    * @package ThinkUpThemes
    */

    get_header(); ?>

    <?php if( have_posts() ): ?>

    <?php while( have_posts() ): the_post(); ?>

    <article id="post-<?php the_ID(); ?>" <?php post_class('blog-article'); ?>>

    <?php if ( has_post_thumbnail() ) {
    $column1 = ' two_fifth';
    $column2 = ' three_fifth last';
    } else {
    $column1 = NULL;
    $column2 = NULL;
    } ?>

    <header class="entry-header<?php echo $column1; ?>">
    <?php thinkup_input_blogimage(); ?>
    </header>

    <div class="entry-content<?php echo $column2; ?>">
    <?php think_input_blogtitle(); ?>

    <?php thinkup_input_blogmeta(); ?>

    <?php thinkup_input_blogtext(); ?>
    </div>

    <div class="clearboth"></div>
    </article><!-- #post-<?php get_the_ID(); ?> -->

    <?php endwhile; ?>

    <?php thinkup_input_pagination(); ?>

    <?php else: ?>

    <?php get_template_part( 'no-results', 'archive' ); ?>

    <?php endif; ?>

    <?php get_footer() ?>
  • 07-08-2016, 03:41:25
    #4
    Muhtemelen ayarlardan yapılıyordur ama başka da yolu olacağını sanmam. Tema şifrelidir büyük ihtimalle. Dolayısıyla ayarlara iyice bir göz gezdir derim.
  • 10-08-2016, 03:51:41
    #5
    Hocam yukarda index.php dosyanızdaki kodlarınızı paylaştınız o kodlar arasındaki bu kodları
    $column1 = ' two_fifth'; $column2 = ' three_fifth last';
    bu kodlar ile değiştiriniz.
    $column1 = ' one_fourth'; $column2 = ' one_fourth last';
    veya index php dosyanızın içindeki tüm kodları silin bu kodları yapıştırın.
    <?php
    /**
     * The main template file.
     *
     * @package ThinkUpThemes
     */
    
    get_header(); ?>
    
    			<?php if( have_posts() ): ?>
    
    				<?php while( have_posts() ): the_post(); ?>
    
    					<article id="post-<?php the_ID(); ?>" <?php post_class('blog-article'); ?>>
    
    						<?php if ( has_post_thumbnail() ) {
    							$column1 = ' one_fourth';
    							$column2 = ' one_fourth last';
    						} else {
    							$column1 = NULL;
    							$column2 = NULL;
    						} ?>
    
    						<header class="entry-header<?php echo $column1; ?>">
    							<?php thinkup_input_blogimage(); ?>
    						</header>		
    
    						<div class="entry-content<?php echo $column2; ?>">
    							<?php think_input_blogtitle(); ?>
    
    							<?php thinkup_input_blogmeta(); ?>
    
    							<?php thinkup_input_blogtext(); ?>
    						</div>
    
    					<div class="clearboth"></div>
    					</article><!-- #post-<?php get_the_ID(); ?> -->	
    
    				<?php endwhile; ?>
    
    				<?php thinkup_input_pagination(); ?>
    
    			<?php else: ?>
    
    				<?php get_template_part( 'no-results', 'archive' ); ?>		
    
    			<?php endif; ?>
    
    <?php get_footer() ?>
    temanın demosuna baktım tarayıcı üzerinden denedim sorun olmadı muhtemelen düzelecektir verdiğim kodlar ile iyi çalışmalar dilerim.
    Not: Temanız aşağıdaki blokları desteklemektedir.Yukarıda yazmış olduğum alanlara aşağıdaki classların noktalarını silerek sadece isimlerini yazarak deneme yanılma ile istediğiniz blok görüntüsüne kavuşturabilirsiniz.
    .one_half
    .one_third
    .two_third
    .one_fourth
    .three_fourth
    .one_fifth
    .two_fifth
    .three_fifth
    .four_fifth
    .one_sixth
    .five_sixth
  • 11-08-2016, 12:59:16
    #6
    Kurumsal PLUS
    denedim fakat olmadı veya ben yapamadım teamwiever üzerinden beraber deneyebilir miyiz ?

    --R10.NET; Flood Engellendi -->-> Yeni yazılan mesaj 12:59:16 -->-> Daha önceki mesaj 12:06:52 --

    malesef yapamadım teamdan yardım eder misin

    b2medya adlı üyeden alıntı: mesajı görüntüle
    Hocam yukarda index.php dosyanızdaki kodlarınızı paylaştınız o kodlar arasındaki bu kodları
    $column1 = ' two_fifth'; $column2 = ' three_fifth last';
    bu kodlar ile değiştiriniz.
    $column1 = ' one_fourth'; $column2 = ' one_fourth last';
    veya index php dosyanızın içindeki tüm kodları silin bu kodları yapıştırın.
    <?php
    /**
     * The main template file.
     *
     * @package ThinkUpThemes
     */
    
    get_header(); ?>
    
    			<?php if( have_posts() ): ?>
    
    				<?php while( have_posts() ): the_post(); ?>
    
    					<article id="post-<?php the_ID(); ?>" <?php post_class('blog-article'); ?>>
    
    						<?php if ( has_post_thumbnail() ) {
    							$column1 = ' one_fourth';
    							$column2 = ' one_fourth last';
    						} else {
    							$column1 = NULL;
    							$column2 = NULL;
    						} ?>
    
    						<header class="entry-header<?php echo $column1; ?>">
    							<?php thinkup_input_blogimage(); ?>
    						</header>		
    
    						<div class="entry-content<?php echo $column2; ?>">
    							<?php think_input_blogtitle(); ?>
    
    							<?php thinkup_input_blogmeta(); ?>
    
    							<?php thinkup_input_blogtext(); ?>
    						</div>
    
    					<div class="clearboth"></div>
    					</article><!-- #post-<?php get_the_ID(); ?> -->	
    
    				<?php endwhile; ?>
    
    				<?php thinkup_input_pagination(); ?>
    
    			<?php else: ?>
    
    				<?php get_template_part( 'no-results', 'archive' ); ?>		
    
    			<?php endif; ?>
    
    <?php get_footer() ?>
    temanın demosuna baktım tarayıcı üzerinden denedim sorun olmadı muhtemelen düzelecektir verdiğim kodlar ile iyi çalışmalar dilerim.
    Not: Temanız aşağıdaki blokları desteklemektedir.Yukarıda yazmış olduğum alanlara aşağıdaki classların noktalarını silerek sadece isimlerini yazarak deneme yanılma ile istediğiniz blok görüntüsüne kavuşturabilirsiniz.
    .one_half
    .one_third
    .two_third
    .one_fourth
    .three_fourth
    .one_fifth
    .two_fifth
    .three_fifth
    .four_fifth
    .one_sixth
    .five_sixth