Desc: How to entend the Joomla FAQ Book with a 'Back Button' to the Main Menu of FAQ Entries
Date: 20120124
Modification:
file: /components/com_faqbook/views/category/tmpl/default.php
search for:
line 125
replace with:
</div><!--navigation-->
<div class="cat-name">
<p><?php echo '' ?></p>
<p><img src="/images/arrow-l.png" style="float:left; margin-top: 4px; margin-right:12px; alt="Back"><a href="javascript:history.go(-1)">Zurück zur Kategorie Auswahl</a></p>
</div> </div>
EDBS - Die Agentur für Webentwicklung und Marketing im Mostviertel.
Willkommen im EDBS devBlog.
Web- und Individual-Entwicklungen, CMS Joomla, PHP
In diesem Blog wollen wir nützliche Tipps und Entwicklungen in den Bereichen Content Management System Joomla (Joomla 1.5 / Joomla 1.7 / Jommla 2.5) und PHP an Sie weitergeben. Weiters erfahren Sie mehr über aktuelle Web- und Software-Entwicklungsprojekte von EDBS.Die Kernkompetenz von EDBS liegt in den Bereichen Webentwicklung und Marketing. Einige Beispiele unserer täglichen Arbeit im Bereich Webentwicklung stellen wir Ihnen in unserem DevBlog zur Verfügung. Aktuelle Referenzen und Projekt-Infos sehen sie auf unserer Referenzseite...
Dienstag, 24. Januar 2012
Joomla - Random Article Order in Blog Mode
Desc: How to show randomized Articles in Category Blog View in Joomla 1.7
Date: 20120120
Modification 1:
file: /components/com_content/helpers/query.php
search for:
case 'front' :
$orderby = 'f.ordering';
break;
replace with:
case 'front' :
$orderby = 'f.ordering';
break;
case 'random' :
$orderby = 'rand()';
break;
Modification 2:
file: /components/com_content/views/section/tmpl/blog.xml
search for:
<option value="order">Ordering</option>
replace with:
<option value="order">Ordering</option>
<option value="random">RANDOM</option>
Hover Effekt für Image Title bei Gavick mod_news_pro_gk4 einfügen
Desc: Image does not show title on hover in mod_news_pro_gk4
Date: 20120120
Modification:
file: /modules/mod_news_pro_gk4/tmpl/layouts_parts.php
line: 262
original:
return ($config['news_content_image_pos'] == 'center') ? '<div class="center"><a href="'.$IMG_LINK.'"><img class="nspImage'.$class.'" src="'.$IMG_SOURCE.'" alt="'.$news_title.'" style="'.$size.'" /></a></div>' : '<a href="'.$IMG_LINK.'"><img class="nspImage'.$class.'" src="'.$IMG_SOURCE.'" alt="'.$news_title.'" style="'.$size.'" /></a>';
modified:
return ($config['news_content_image_pos'] == 'center') ? '<div class="center"><a href="'.$IMG_LINK.'"><img class="nspImage'.$class.'" src="'.$IMG_SOURCE.'" alt="'.$news_title.'" style="'.$size.'" /></a></div>' : '<a href="'.$IMG_LINK.'"><img class="nspImage'.$class.'" src="'.$IMG_SOURCE.'" title="'.$news_title.'" style="'.$size.'" /></a>';
Abonnieren
Posts (Atom)