hello all. i am a newby to drupal. here is my problem: on my main page.tpl.php i have this code lines:
"if ( $is_front == TRUE ) {
print views_embed_view('all_product_by_type_thin', "default", "canon");
print views_embed_view('all_product_by_type_thin', "default", "Nikon");
}"
as you can see, in case of the front page i print the "all_product_by_type_thin" view while sending parameter "cannon" and "nikon"
the result of the all_product_by_type_thin view is altered inside the views-view-unformatted--all_product_by_type_thin.tpl.php file. in that file i am wrapping the view results in all kind of divs. what i need to do though, and cant figure out a way to do it, is get the argument i sent the view "canon" or "nikon" inside the php code of views-view-unformatted--all_product_by_type_thin.tpl.php any idea ?