This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defined('C5_EXECUTE') or die("Access Denied."); | |
$rssUrl = $showRss ? $controller->getRssUrl($b) : ''; | |
$th = Loader::helper('text'); | |
//$ih = Loader::helper('image'); //<--uncomment this line if displaying image attributes (see below) | |
//$dh = Loader::helper('date'); //<--uncomment this line if displaying dates (see below) | |
//Note that $nh (navigation helper) is already loaded for us by the controller (for legacy reasons) | |
?> | |
<div class="sixteen columns ccm-page-list testimonials"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git config --global credential.helper 'cache --timeout 3600' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use \Concrete\Core\Page\PageList; | |
$pageList = new PageList(); | |
$pageList->filterByPageTypeHandle('product'); | |
$pages = $pageList->getResults(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<razor> | |
<catalogs> | |
<catalog> | |
<name>Catalog Name</name> | |
<path>/path</path> | |
</catalog> | |
</catalogs> | |
</razor> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<razor> | |
<catalogs> | |
<catalog> | |
<name>Catalog One</name> | |
<path>/catalog-one</path> | |
</catalog> | |
<catalog> | |
<name>Catalog Two</name> | |
<path>/catalog-one/catalog-two</path> | |
</catalog> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'color' => array( | |
'field_types' => array('color'), | |
), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[acf-render name="first_name"] | |
Basic example rendering a text field value. Field name is "first_name". Default template (text) will be used to render. No label will be shown. | |
[acf-render name="first_name" label=1] | |
Default template (text) will be used, Field label will be shown. | |
[acf-render name="first_name" post="89"] | |
Load the value of first_name field from post ID 89. | |
[acf-render name="first_name" template="custom-text"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[acf-render name="first_name" post="123" template="text"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[acf-render name="my-field"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="acf-template acf-template-text"> |
OlderNewer