Posts Tagged ‘theme’
WordPress: show excerpts in the category or tag view [SOLVED]
“I just want to only display the excerpt instead of the entire text of the post in the category / tag archives, how to achieve this?”. This is a common question of wordpress users. Well, the fix is really simple. Go to your working theme directory and look for content.php (or sometimes archive.php). You should [...]
WP-COMFY: change post rotation interval [SOLVED]
Those of you who are using WP Comfy (aka Comfy Magazine) theme for wordpress might be wondering how to change post rotation time (interval) so that posts rotate more quickly or slowly. Well, the fix is quite easy. Edit /wp-content/themes/wp_comfy/scripts/tabs.js, look for: if (parseInt(this.automodeperiod)>500 && this.hottabspositions.length>1){ this.autoruntimer=setInterval(function(){tabinstance.autorun()}, this.automodeperiod) More slow rotation: if (parseInt(this.automodeperiod)>1000 && this.hottabspositions.length>1){ [...]
Drupal: customize language switcher block
If you are runnning a drupal multilingual site, you might be using i18n with language icons modules. I’ve received some mails asking how to customize the aspect of the multilang switcher block. Easy! Log in as admin and navigate to /admin/settings/language/icons There you will be able to 1) customize the Icon placement (before link (after [...]
Drupal theming: know if you are in homepage [solved]
It is very useful for drupal html designers to know if you are actually in the frontpage (home page) or not. I already explained how to know if you are on joomla homepage and knowing where you are (joomla). Let’s see how this is done in drupal For instance, if you want some code to [...]
Joomla: crear un menú horizontal con extended menu [RESUELTO]
La mayoría de templates para Joomla vienen preparados con un menú vertical. Vamos a ver cómo añadir un menú horizontal en Joomla de una forma correcta y rápida. Modificando el template (theme) para contener la zona del menú Para mostrar las zonas preparadas para módulos en tu sitio joomla, puedes usar el parámetro ?tp=1. Por [...]