Exclude visibilty of entity to the specific url by means of php <?php if(arg(0) == 'user' && arg(2) != 'edit' ) return true; else return false ?> E.g., the sport article, whose path is http://www.example.com/sport.Tags: Drupal 7
Fast solution for multicurrency Hide the "display_price" for 0-values/modules/uc_multi_currency/uc_multi_currency.theme.inc:18: if ($variables['price'] > '0.00') { $output = '<span class="uc-price">'. uc_multi_currency_format($variables['price'], $currency) .'</span>'; } else { $output = ''; }modules/ubercart/uc_store/uc_store.theme.inc:19:if ($variables['price'] > '0.00') { $output = '<span class="uc-price">' . uc_currency_format($variables['price']) . '</span>'; } else {Tags: ubercartDrupal 7
Solr + Drupal After enabling the Solr-module: https://www.drupal.org/project/search_api_solrTags: solrDrupal 7collectionsearch solrsearch api
Address to jQuery document in Drupal jQuery(document).ready(function($){});(function ($) {}(jQuery));Useful pages:https://www.drupal.org/docs/develop/standards/javascript/jquery-coding-s... https://www.drupal.org/docs/7/theming/working-with-javascript-and-jqueryTags: Drupal 7