Custom theme

Fix for views_ajax show thumbnail

  1. function theme_views_ajax_page_item($node) {
  2.   $file=next($node->files);
  3. //  return l(theme('image', $file->filepath, NULL, NULL, array('border' => 0)), $path, NULL, NULL, NULL, NULL, TRUE);

Fix for views_ajax show thumbnail

  1. function theme_views_ajax_page_item($node) {
  2.   $file=current($node->files);
  3. //  return l(theme('image', $file->filepath, NULL, NULL, array('border' => 0)), $path, NULL, NULL, NULL, NULL, TRUE);

Fix for views_ajax show thumbnail

  1. function theme_views_ajax_page_item($node) {
  2.   $file=current($node->files);
  3.   return l(theme('image', $file->filepath, NULL, NULL, array('border' => 0)), $path, NULL, NULL, NULL, NULL, TRUE);
  4. }

views_ajax show thumbnail

  1. function theme_views_ajax_page_item($node) {
  2.   $file=current($node->files);
  3.   l(theme('image', $file->filepath, NULL, NULL, array('border' => 0)), $path, NULL, NULL, NULL, NULL, TRUE);
  4. }
Syndicate content