-
AuthorPosts
-
September 19, 2014 at 6:58 pm #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.
September 20, 2014 at 8:42 am #322233Hey 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,
IsmaelSeptember 22, 2014 at 11:51 am #322927Merhabalar Sadullah bey,
Biraz daha detayli bir sekilde tam olarak ne yapmak istediginizi aciklar misiniz?
Regards,
YigitSeptember 22, 2014 at 12:43 pm #322947This reply has been marked as private.September 22, 2014 at 12:55 pm #322956Porfolio grid elementini duzenleyip sayfalandirmayi ( pagination = no ) kapatip gosterilen urun sayisini ( post number ) cogaltabilirsiniz – http://i.imgur.com/Rz8k9BD.png
Cheers!
YigitSeptember 22, 2014 at 1:06 pm #322964taxonomy-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(); ?>
September 22, 2014 at 1:25 pm #322980Hey!
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,
YigitSeptember 22, 2014 at 2:00 pm #322991malesef 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 istiyorumSeptember 22, 2014 at 2:26 pm #323007Hey!
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,
YigitSeptember 22, 2014 at 2:53 pm #323033bu 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
September 23, 2014 at 4:26 pm #323758Iligili template’in oldugu sayfanin linkini gonderebilir misiniz? Isteginizi WordPress fonksiyonu kullanarak gerceklestirmek cok daha saglikli olucaktir.
Cheers!
YigitSeptember 23, 2014 at 5:12 pm #323804adresine yollasam olurmu
- This reply was modified 8 years, 6 months ago by Yigit.
September 23, 2014 at 5:22 pm #323812 -
AuthorPosts
- You must be logged in to reply to this topic.