News Show Pro GK4 arrows with counter

Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Thu Jan 17, 2013 10:36 pm
Reply with quote
Report this post
hi..I want make the arrows bigger and put the arrows and counter bottom of the products...News Show Pro GK4...thanks...

site: www.oyparoto.com
User avatar
Fresh Boarder

Konrad M
Fri Jan 18, 2013 8:09 am
Reply with quote
Report this post
Hi,
all interface elements are graphics so you need to edit this image and then upload it again. You can find it in modules/mod_news_pro_gk4/interface/images/interface.png If you are using normal mode in NSP please go to modules/mod_news_pro_gk4/tmpl/content/content.php and find :
Code: Select all
<?php if(
                  count($news_html_tab) > ($this->config['news_column'] * $this->config['news_rows']) &&
                  $this->config['news_full_pages'] > 1 &&
                  $this->config['top_interface_style'] != 'none'
                  ) : ?>
            <div class="nspTopInterface">
               <div>
                  <?php if(
                           $this->config['top_interface_style'] == 'pagination' ||
                           $this->config['top_interface_style'] == 'arrows_with_pagination'
                        ) : ?>
                  <ul class="nspPagination">
                     <?php for($i = 0; $i < ceil(count($news_html_tab) / ($this->config['news_column'] * $this->config['news_rows'])); $i++) : ?>
                     <li><?php echo $i+1; ?></li>
                     <?php endfor; ?>
                  </ul>
                  <?php endif; ?>
                  
                  <?php if(
                           $this->config['top_interface_style'] == 'arrows' ||
                           $this->config['top_interface_style'] == 'arrows_with_pagination' ||
                           $this->config['top_interface_style'] == 'arrows_with_counter'
                        ) : ?>
                  <span class="nspPrev"><?php echo JText::_('MOD_NEWS_PRO_GK4_NSP_PREV'); ?></span>
                  <span class="nspNext"><?php echo JText::_('MOD_NEWS_PRO_GK4_NSP_NEXT'); ?></span>
                  <?php endif; ?>
                  
                  <?php if(
                           $this->config['top_interface_style'] == 'counter' ||
                           $this->config['top_interface_style'] == 'arrows_with_counter'
                        ) : ?>
                  <span class="nspCounter"><strong><?php echo JText::_('MOD_NEWS_PRO_GK4_NSP_PAGE'); ?></strong><span></span></span>
                  <?php endif; ?>
               </div>
            </div>
            <?php endif; ?>

cut it and paste it before:
Code: Select all
<?php if($this->config['news_short_pages'] > 0 && count($news_list_tab) > 0 ) : ?>

This should move your navigation from top to bottom.
User avatar


cron