Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #322071

    Yiğit bey taxonomy-portfolio_entries.php bu sayfa ürünlerin kategori sayfası, burada post limitini yükseltmek istiyorum, standart blog post 10 adet burada daha fazla olsun istiyorum bunun için bi kod varmıdır, teşekkür ederim.

    • This topic was modified 10 years, 2 months ago by sadullah.
    #322233

    Hey sadullah!

    Thank you for using Enfold.

    I’ll ask Yigit to take a look. If you can translate the inquiry to english, we’ll be happy to help.

    Regards,
    Ismael

    #322927

    Merhabalar Sadullah bey,

    Biraz daha detayli bir sekilde tam olarak ne yapmak istediginizi aciklar misiniz?

    Regards,
    Yigit

    #322947
    This reply has been marked as private.
    #322956

    Porfolio grid elementini duzenleyip sayfalandirmayi ( pagination = no ) kapatip gosterilen urun sayisini ( post number ) cogaltabilirsiniz – http://i.imgur.com/Rz8k9BD.png

    Cheers!
    Yigit

    #322964

    taxonomy-portfolio_entries.php sayfası kullanılıyor bunun için

    <?php
    global $avia_config;

    /*
    * get_header is a basic wordpress function, used to retrieve the header.php file in your theme directory.
    */
    get_header();

    echo avia_title(array(‘title’ => avia_which_archive()));
    ?>

    <div class=’container_wrap container_wrap_first main_color <?php avia_layout_class( ‘main’ ); ?>’>

    <div class=’container’>

    <main class=’template-page template-portfolio content <?php avia_layout_class( ‘content’ ); ?> units’ <?php avia_markup_helper(array(‘context’ => ‘content’,’post_type’=>’portfolio’));?>>

    <div class=”entry-content-wrapper clearfix”>

    <div class=”category-term-description”>
    <?php echo term_description(); ?>
    </div>

    <?php

    $grid = new avia_post_grid(array( ‘linking’ => ”,
    ‘columns’ => ‘3’,
    ‘contents’ => ‘title’,
    ‘sort’ => ‘no’,
    ‘paginate’ => ‘yes’,
    ‘set_breadcrumb’ => false,
    ));
    $grid->use_global_query();
    echo $grid->html();

    ?>
    </div>

    <!–end content–>
    </main>
    <?php

    //get the sidebar
    $avia_config[‘currently_viewing’] = ‘portfolio’;
    get_sidebar();

    ?>

    </div><!–end container–>

    </div><!– close default .container_wrap element –>

    <?php get_footer(); ?>

    #322980

    Hey!

    Lutfen Enfold/config-templatebuilder/avia-shortcodes klasorune gidip portfolio.php dosyasini acin ve assagidaki kodu bulun

    "name" 	=> __("Post Number", 'avia_framework' ),
    							"desc" 	=> __("How many items should be displayed per page?", 'avia_framework' ),
    							"id" 	=> "items",
    							"type" 	=> "select",
    							"std" 	=> "16",

    ve assagidaki kodla degistirin

    "name" 	=> __("Post Number", 'avia_framework' ),
    							"desc" 	=> __("How many items should be displayed per page?", 'avia_framework' ),
    							"id" 	=> "items",
    							"type" 	=> "select",
    							"std" 	=> "100",

    sonrasinda assagidaki kodu bulun

    "id" 	=> "paginate",
    							"type" 	=> "select",
    							"std" 	=> "yes",

    ve degistirin

    "id" 	=> "paginate",
    							"type" 	=> "select",
    							"std" 	=> "no",

    varsayilan olarak sayfalandirma kapatilacak ve urun adedi 100 olucak.

    Regards,
    Yigit

    #322991

    malesef işe yaramadı benim sorunum zaten taxonomy-portfolio_entries.php sayfasıyla
    örnek olarak http://kriesi.at/themes/enfold/portfolio_entries/css/ burada istediğim kadar ürün göstermek istiyorum

    #323007

    Hey!

    Lutfen assagidaki kodu Appearance > Editor bolumundeki Functions.php dosyasina ekleyin

    add_action( 'pre_get_posts',  'set_posts_per_page'  );
    function set_posts_per_page( $query ) {
    
      global $wp_the_query;
    
      if ( ( ! is_admin() ) && ( $query === $wp_the_query ) && ( $query->is_archive() ) ) {
        $query->set( 'posts_per_page', 100 );
      }
    
      return $query;
    }

    Best regards,
    Yigit

    #323033

    bu seferde bütün arşiv sayfalarına işlem yapıyor ben sadece ilgili templateye müdahele etmek istiyorum taxonomy-portfolio_entries.php template buradaki ilgili yazılar isteğim kadar çıksın, şöyle bişey diyemezmiyiz, taxonomy-portfolio_entries gösterilecek gönderi sayısı 50

    #323758

    Iligili template’in oldugu sayfanin linkini gonderebilir misiniz? Isteginizi WordPress fonksiyonu kullanarak gerceklestirmek cok daha saglikli olucaktir.

    Cheers!
    Yigit

    #323804

    adresine yollasam olurmu

    • This reply was modified 8 years, 6 months ago by Yigit.
    #323812

    Olur Sadullah bey. Bekliyorum

    Cheers!
    Yigit

Viewing 13 posts - 1 through 13 (of 13 total)
  • You must be logged in to reply to this topic.