Separating the clock from the date

More
5 years 11 months ago #73291 by aminweb
thanks,
I use clone of default template.
now, where add this code in table view category_items.php
please see live site and screen:
yool.ir/118travel
pasteboard.co/HjTj656.jpg

this my category_items.php code:
Code:
<?php /** * @package FLEXIcontent * @copyright (C) 2009-2018 Emmanuel Danan, Georgios Papadakis, Yannick Berges * @author Emmanuel Danan, Georgios Papadakis, Yannick Berges, others, see contributor page * @license GNU/GPL v2 */ defined( '_JEXEC' ) or die( 'Restricted access' ); // first define the template name $tmpl = $this->tmpl; $user = JFactory::getUser(); $btn_class = 'btn'; $tooltip_class = 'hasTooltip'; // MICRODATA 'itemtype' for ALL items in the listing (this is the fallback if the 'itemtype' in content type / item configuration are not set) $microdata_itemtype_cat = $this->params->get( 'microdata_itemtype_cat', 'Article' ); if ($this->params->get('togglable_table_cols', 1)) { flexicontent_html::loadFramework('flexi-lib'); $start_text = '<span class="label">'.JText::_('FLEXI_TMPL_DEFAULT_COLUMNS_FE', true).'</span>'; $end_text = '<div class="icon-arrow-up-2" title="'.JText::_('FLEXI_HIDE').'" style="cursor: pointer;" onclick="fc_toggle_box_via_btn(\\\'mainChooseColBox\\\', document.getElementById(\\\'fc_mainChooseColBox_btn\\\'), \\\'btn-primary\\\');"></div>'; flexicontent_html::jscode_to_showhide_table('mainChooseColBox', 'adminListTableFCcategory', $start_text, $end_text); } // Form for (a) Text search, Field Filters, Alpha-Index, Items Total Statistics, Selectors(e.g. per page, orderby) // If customizing via CSS rules or JS scripts is not enough, then please copy the following file here to customize the HTML too ob_start(); include(JPATH_SITE.DS.'components'.DS.'com_flexicontent'.DS.'tmpl_common'.DS.'listings_filter_form.php'); $filter_form_html = trim(ob_get_contents()); ob_end_clean(); if ( $filter_form_html ) { echo ' <div class="fcclear"></div> <div class="group"> ' . $filter_form_html . ' </div>'; } // -- Check matching items found if (!$this->items) { // No items exist if ($this->getModel()->getState('limit')) { // Not creating a category view without items echo ' <div class="fcclear"></div> <div class="noitems group"> ' . JText::_( 'FLEXI_NO_ITEMS_FOUND' ) . ' </div>'; } return; } $items = & $this->items; $count = count($items); // routine to determine all used columns for this table $show_title = $this->params->get('show_title', 1); $link_titles = $this->params->get('link_titles', 0); $layout = $this->params->get('clayout', 'default'); $fbypos = flexicontent_tmpl::getFieldsByPositions($layout, 'category'); $columns = array(); foreach ($items as $item) { if (isset($item->positions['table'])) { foreach ($fbypos['table']->fields as $f) { // Column (label) already added if ( !empty($columns[$f]) ) { continue; } if ( isset($item->fields[$f]) ) { $columns[$f] = $item->fields[$f]->label; } elseif (!empty($this->isInfinite)) { $columns[$f] = ''; } } } } // Calculate common data outside the item loops $_read_more_about = JText::_( 'FLEXI_READ_MORE_ABOUT' ); $_comments_container_params = 'class="fc_comments_count_nopad '.$tooltip_class.'" title="'.flexicontent_html::getToolTip('FLEXI_NUM_OF_COMMENTS', 'FLEXI_NUM_OF_COMMENTS_TIP', 1, 1).'"'; // Decide whether to show the edit column $buttons_exists = false; if ( $user->id ) : $show_editbutton = $this->params->get('show_editbutton', 1); foreach ($items as $item) : if ( $show_editbutton ) : if ($item->editbutton = flexicontent_html::editbutton( $item, $this->params )) : $buttons_exists = true; $item->editbutton = '<div class="fc_edit_link_nopad">'.$item->editbutton.'</div>'; endif; if ($item->statebutton = flexicontent_html::statebutton( $item, $this->params )) : $buttons_exists = true; $item->statebutton = '<div class="fc_state_toggle_link_nopad">'.$item->statebutton.'</div>'; endif; endif; if ($item->deletebutton = flexicontent_html::deletebutton( $item, $this->params )) : $buttons_exists = true; $item->deletebutton = '<div class="fc_delete_link">'.$item->deletebutton.'</div>'; endif; if ($item->approvalbutton = flexicontent_html::approvalbutton( $item, $this->params )) : $buttons_exists = true; $item->approvalbutton = '<div class="fc_approval_request_link_nopad">'.$item->approvalbutton.'</div>'; endif; endforeach; endif; // Decide whether to show the comments column $comments_non_zero = false; if ( $this->params->get('show_comments_count', 0) ) : if ( isset($this->comments) && count($this->comments) ) : $comments_non_zero = true; endif; endif; // Check to enable show title if not other columns were configured if (!$show_title && !count($columns)) : echo '<span style="font-weight:bold; color:red;">'.JText::_('FLEXI_TPL_NO_COLUMNS_SELECT_FORCING_DISPLAY_ITEM_TITLE').'</span>'; $this->params->set('show_title', 1); endif; ?> <?php if ($this->params->get('togglable_table_cols', 1)) : ?> <div class="btn-group" style="margin: 2px 32px 6px -3px; display:inline-block;"> <input type="button" id="fc_mainChooseColBox_btn" class="<?php echo $btn_class; ?>" onclick="fc_toggle_box_via_btn('mainChooseColBox', this, 'btn-primary');" value="<?php echo JText::_( 'FLEXI_TMPL_DEFAULT_COLUMNS_FE' ); ?>" /> </div> <div id="mainChooseColBox" class="well well-small" style="display:none;"></div> <?php endif; ?> <table id="adminListTableFCcategory" class="adminlist"> <?php if ($this->params->get('show_field_labels_row', 1) || $this->params->get('togglable_table_cols', 1)) : ?> <thead style="<?php echo $this->params->get('show_field_labels_row', 1) ? '' : 'display:none;' ?>"> <tr> <?php if ( $buttons_exists || $comments_non_zero || $show_title || count($item->css_markups) ) : ?> <th id="flexi_title" class="hideOnDemandClass"> <?php echo JText::_( $this->params->get('customize_titlecol_header') && $this->params->get('titlecol_header_text') ? $this->params->get('titlecol_header_text') : ($show_title ? 'FLEXI_TITLE' : '') ); ?> </th> <?php endif; ?> <?php foreach ($columns as $name => $label) : ?> <th id="field_<?php echo $name; ?>" class="hideOnDemandClass"> <?php echo $label; ?> </th> <?php endforeach; ?> </tr> </thead> <?php endif; ?> <tbody> <?php foreach ($items as $i => $item) : ?> <?php $fc_item_classes = 'sectiontableentry'; $markup_tags = '<span class="fc_mublock">'; foreach($item->css_markups as $grp => $css_markups) { if ( empty($css_markups) ) continue; $fc_item_classes .= ' fc'.implode(' fc', $css_markups); $ecss_markups = $item->ecss_markups[$grp]; $title_markups = $item->title_markups[$grp]; foreach($css_markups as $mui => $css_markup) { $markup_tags .= '<span class="fc_markup mu' . $css_markups[$mui] . $ecss_markups[$mui] .'">' .$title_markups[$mui]. '</span>'; } } $markup_tags .= '</span>'; // MICRODATA document type (itemtype) for each item // -- NOTE: category's microdata itemtype is fallback if the microdata itemtype of the CONTENT TYPE / ITEM are not set $microdata_itemtype = $item->params->get( 'microdata_itemtype') ? $item->params->get( 'microdata_itemtype') : $microdata_itemtype_cat; $microdata_itemtype_code = 'itemscope itemtype="http://schema.org/'.$microdata_itemtype.'"'; ?> <tr id="tablelist_item_<?php echo $i; ?>" class="<?php echo $fc_item_classes.' row'.($i%2 ? 1 : 0); ?>" <?php echo $microdata_itemtype_code; ?>> <?php if ( $buttons_exists || $comments_non_zero || $show_title || count($item->css_markups) ) : ?> <td class="fc_title_col"> <?php echo @ $item->editbutton; ?> <?php echo @ $item->statebutton; ?> <?php echo @ $item->approvalbutton; ?> <?php if ($this->params->get('show_comments_count')) : ?> <?php if ( isset($this->comments[ $item->id ]->total) ) : ?> <div <?php echo $_comments_container_params; ?> > <?php echo $this->comments[ $item->id ]->total; ?> </div> <?php endif; ?> <?php endif; ?> <div class="fcclear fc_afterbutton"></div> <?php if ($show_title) : ?> <!-- BOF item title --> <span class="fc_item_title" itemprop="name"> <?php if ($link_titles) : ?> <a href="<?php echo JRoute::_(FlexicontentHelperRoute::getItemRoute($item->slug, $item->categoryslug, 0, $item)); ?>" itemprop="url"><?php echo $item->title; ?></a> <?php else : ?> <?php echo $item->title; ?> <?php endif; ?> </span> <!-- EOF item title --> <?php endif; ?> <div class="fcclear fc_beforemarkups"></div> <?php echo $markup_tags; ?> </td> <?php endif; ?> <!-- BOF item fields --> <?php $last_key = end(array_keys($columns)); foreach ($columns as $name => $label) : ?> <td><?php if ($name == $last_key) { echo isset($item->positions['table']->{$name}->display) ? $item->positions['table']->{$name}->display : ''; ?> <a class="btn btn-yool opacity-7 pull-right" rel="nofollow" style="float: left;" href="<?php echo JRoute::_(FlexicontentHelperRoute::getItemRoute($item->slug, $item->categoryslug, 0, $item)); ?>"><i class="fa fa-angle-left"></i></a> <?php } else { echo isset($item->positions['table']->{$name}->display) ? $item->positions['table']->{$name}->display : ''; ?> <?php } ?> </td> <?php endforeach; ?> <!-- EOF item fields --> </tr> <?php endforeach; ?> </tbody> </table>

Please Log in or Create an account to join the conversation.

More
5 years 11 months ago #73292 by micker
my code is for item view try to work on it at first
category view need more work because you need to check field in foreach
if field is myfielddat{
the code
}

FLEXIcontent is Free but involves a very big effort on our part.
Like the our support? (for a bug-free FC, despite being huge extension) Like the features? Like the ongoing development and future commitment to FLEXIcontent?
-- Add your voice to the FLEXIcontent JED listing reviews. Thanks![/size]

Please Log in or Create an account to join the conversation.

More
5 years 11 months ago #73293 by aminweb
ok but my item.php file :
Code:
<?php // Modular item layout // If customizing via CSS rules or JS scripts is not enough, then please copy the following file here to customize the HTML too include(JPATH_SITE.DS.'components'.DS.'com_flexicontent'.DS.'tmpl_common'.DS.'item_layouts'.DS.'modular.php'); ?>

Please Log in or Create an account to join the conversation.

More
5 years 11 months ago - 5 years 11 months ago #73294 by aminweb
oh bad!
I do it.but a problem
this code only for show part,part,...
Code:
<?php $date = $item->fields["rafttime"]->display; $disp_date = explode( " ", $date); echo $disp_date[10]; ?>
I cannot use this code in Single Content template becuse I want show full of date vale(l,D F Y h:i) in Single content.
only I want disable h:i of date value in Content Lists template(table).
Last edit: 5 years 11 months ago by ggppdk.

Please Log in or Create an account to join the conversation.

More
5 years 11 months ago #73296 by ggppdk
Hello

Use install from URL and then look for new setting inside the view TAB
for different display in
- item view
- category based views

github.com/FLEXIcontent/flexicontent-cck...e/3.2.1.x-stable.zip


-- Flexicontent is Free but involves a big effort on our part.
Like the our support? (for a bug-free FC, despite having a long list of functions) Like the features? Like the ongoing development and future commitment to FLEXIcontent?
-- Add your voice to the FLEXIcontent JED listing with a 5-star...
The following user(s) said Thank You: aminweb

Please Log in or Create an account to join the conversation.

More
5 years 11 months ago #73297 by aminweb
hi,
I din't notice!!
please explain more...
so thanks

Please Log in or Create an account to join the conversation.

Moderators: vistamediajoomlacornerggppdk
Time to create page: 0.340 seconds
Save
Cookies user preferences
We use cookies to ensure you to get the best experience on our website. If you decline the use of cookies, this website may not function as expected.
Accept all
Decline all
Essential
These cookies are needed to make the website work correctly. You can not disable them.
Display
Accept
Analytics
Tools used to analyze the data to measure the effectiveness of a website and to understand how it works.
Google Analytics
Accept
Decline