[[+content_image]]
I
I
IgorRastarov2017-03-14 12:21:10
MODX
IgorRastarov, 2017-03-14 12:21:10

How to make menu link inactive in MODX?

Hello. Site on modx. I have a Top Menu which is set using Wayfinder.
Here is the chunk:

<div class="nav-col">
[[!Wayfinder? &startId=`0` &outerTpl=`topmenu_outerTpl`
    &innerTpl=`Wayfinder.innerTpl`
    &parentRowTpl=`Wayfinder.parentRowTpl`
    &innerRowTpl=`Wayfinder.innerRowTpl`
    &rowTpl=`Wayfinder.rowTpl`    &includeDocs=[[getResources?  &parents=`0`  &depth=`3`  &limit=`0`  &tpl=`@INLINE 491346`  &outputSeparator=`,` &tvFilters=`menuplace==%top%`]]]]
</div>

Here is the Wayfinder snippet:
<?php
$wayfinder_base = 
$modx->getOption('wayfinder.core_path',
$scriptProperties,$modx->getOption('core_path').'components/wayfinder/');
/* include a custom config file if specified */
if (isset($scriptProperties['config'])) {
    $scriptProperties['config'] = str_replace('../','',$scriptProperties['config']);
    $scriptProperties['config'] = $wayfinder_base.'configs/'.$scriptProperties['config'].'.config.php';
} else {
    $scriptProperties['config'] = $wayfinder_base.'configs/default.config.php';
}
if (file_exists($scriptProperties['config'])) {
    include $scriptProperties['config'];
}
/* include wayfinder class */
include_once $wayfinder_base.'wayfinder.class.php';
if (!$modx->loadClass('Wayfinder',$wayfinder_base,true,true)) {
    return 'error: Wayfinder class not found';
}
$wf = new Wayfinder($modx,$scriptProperties);
/* get user class definitions
 * TODO: eventually move these into config parameters */
$wf->_css = array(
    'first' => isset($firstClass) ? $firstClass : '',
    'last' => isset($lastClass) ? $lastClass : 'last',
    'here' => isset($hereClass) ? $hereClass : 'active',
    'parent' => isset($parentClass) ? $parentClass : '',
    'row' => isset($rowClass) ? $rowClass : '',
    'outer' => isset($outerClass) ? $outerClass : '',
    'inner' => isset($innerClass) ? $innerClass : '',
    'level' => isset($levelClass) ? $levelClass: '',
    'self' => isset($selfClass) ? $selfClass : '',
    'weblink' => isset($webLinkClass) ? $webLinkClass : ''
);
/* get user templates
 * TODO: eventually move these into config parameters */
$wf->_templates = array(
    'outerTpl' => isset($outerTpl) ? $outerTpl : '',
    'rowTpl' => isset($rowTpl) ? $rowTpl : '',
    'parentRowTpl' => isset($parentRowTpl) ? $parentRowTpl : '',
    'parentRowHereTpl' => isset($parentRowHereTpl) ? $parentRowHereTpl : '',
    'hereTpl' => isset($hereTpl) ? $hereTpl : '',
    'innerTpl' => isset($innerTpl) ? $innerTpl : '',
    'innerRowTpl' => isset($innerRowTpl) ? $innerRowTpl : '',
    'innerHereTpl' => isset($innerHereTpl) ? $innerHereTpl : '',
    'activeParentRowTpl' => isset($activeParentRowTpl) ? $activeParentRowTpl : '',
    'categoryFoldersTpl' => isset($categoryFoldersTpl) ? $categoryFoldersTpl : '',
    'startItemTpl' => isset($startItemTpl) ? $startItemTpl : ''
);

/* process Wayfinder */
$output = $wf->run();
if ($wf->_config['debug']) {
    $output .= $wf->renderDebugOutput();
}

/* output results */
if ($wf->_config['ph']) {
    $modx->setPlaceholder($wf->_config['ph'],$output);
} else {
    return $output;
}

The menu is:
Home About us Delivery Sales Customers
I need to make sure that when I am on the main page, the main item is not active (it is not a link)
How can I do this?

Answer the question

In order to leave comments, you need to log in

[[+comments_count]] answer(s)
A
artr_lr, 2017-03-14
@IgorRastarov

Through pdomenu I did this:

[[pdoMenu?
  &parents=`родитель`
  &tplOuter=`@INLINE <ul class="list">[[+wrapper]]</ul>`
  &tpl=`menuParse`
]]

where menuParse
<li><span>[[+menutitle]]</span></li>

A
Alexey, 2017-03-14
@masterfreelance

if you need not to display a link for all current resources, and not just for the main one, use &hereTpl

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question