Does anyone know how to increase number of slide images on the Premium Responsive theme?

Comments

mokteh08’s picture

Two ways you can do this

1. open responsive.info on line number 40 create a variable settings[slide4_url] = "node/4" (4 is node id to link)
2. open your page.tpl.php line 123 add new variable
$url4 = check_plain(theme_get_setting('slide4_url','responsive')); $cap4 = check_markup(theme_get_setting('slide4_desc','responsive'), 'full_html');

and then line 140 add this

  •   print url($url4);
    
    

    ">Only local images are allowed.

    print base_path() . drupal_get_path('theme', 'responsive') . '/images/slide-image-4.jpg';
    

    "/>

    if ($cap4): 
    

    print $cap4;
    

    endif;
    
  • Please do not forget to change the image details /images/slide-image-4.jpg to your image details

    Let me know if it helps

    svrl’s picture

    Your solution for "responsive" theme was similar enough to lead me to a solution for "responsive_blog". Well, thank you.