TYPO3 – Get FCE’s header title in your DataStructure
Hi, today I'll give you a small but usefull tip if you use FCEs in your installations.
I prefere use the FCE's standard header title to name my FCEs and so display this title on the frontend.
TYPO3 4.5 beta2 available
The TYPO3 team has announced the availability of TYPO3 4.5 beta2 for download.
Magento – Actives CMS pages dynamic menu
Here's a little snippet to help you to build a dynamic menu listing the actives CMS pages from Magento.
-
<div>
-
<?php $collection = Mage::getModel('cms/page')->getCollection()->addStoreFilter(Mage::app()->getStore()->getId());?>
-
<?php $collection->getSelect()
-
->where('is_active = 1'); ?>
-
<ul>
-
<?php foreach ($collection as $page): ?>
-
<?php $PageData = $page->getData(); ?>
-
<?php if($PageData['identifier']!='no-route') { ?>
-
<li>
-
<a href="/<?php echo $PageData['identifier']?>"><?php echo $PageData['title'] ?></a>
-
</li>
-
<?php } ?>
-
<?php endforeach; ?>
-
</ul></div>
We All Like to Reblog
Have you ever come across a blog post that you enjoyed so much you wanted to easily share it with the readers of your own blog? Sure, you can copy and paste the link and perhaps even a snippet of text with your own comments, but overall it’s not a particularly enjoyable experience. We wanted to change this and make sharing other posts with your readers as easy as posting to your blog.

