# /wp-content/plugins/fusion-core/templates/portfolio-archive-layout.php
# 						<?php if ( 'no_text' === $portfolio_text_layout ) : ?>
#							<?php echo fusion_render_rich_snippets_for_pages(); // WPCS: XSS ok. ?>
#							<?php
#							/**
#							 * If we have a text layout render its contents.
#							 */
#							?>
#						<?php else : ?>
# dodati
# ===============================================
					 <div class="product-details">
								<?php if( get_field('package') ) {
									$package = get_field('package', intval( get_the_ID() ) ); ?>
								<span><?php echo do_shortcode('[fusion_fontawesome icon="fa-cube" size="" flip="" rotate="" spin="" alignment="" hide_on_mobile="" class="" id="" margin_top="" margin_right="" margin_bottom="" margin_left="" circle="no" iconcolor="#000" circlecolor="" circlebordercolor="" animation_type="" animation_direction="" animation_speed="" animation_offset=""][/fusion_fontawesome]'); ?><?php echo $package; ?></span><br>
								<?php } ?>
								<?php if( get_field('barcode') ) {
									$barcode = get_field('barcode', intval( get_the_ID() ) ); ?>
									<span><?php echo do_shortcode('[fusion_fontawesome icon="fa-barcode" size="" flip="" rotate="" spin="" alignment="" hide_on_mobile="" class="" id="" margin_top="" margin_right="" margin_bottom="" margin_left="" circle="no" iconcolor="#000" circlecolor="" circlebordercolor="" animation_type="" animation_direction="" animation_speed="" animation_offset=""][/fusion_fontawesome]'); ?><?php echo $barcode; ?></span><br>
								<?php } ?>
								<?php if( get_field('download_image') ) {
									$download_image = get_field('download_image', intval( get_the_ID() ) ); ?>
									<span><?php echo do_shortcode('[fusion_fontawesome icon="fa-file-text-o" size="" flip="" rotate="" spin="" alignment="" hide_on_mobile="" class="" id="" margin_top="" margin_right="" margin_bottom="" margin_left="" circle="no" iconcolor="#000" circlecolor="" circlebordercolor="" animation_type="" animation_direction="" animation_speed="" animation_offset=""][/fusion_fontawesome]'); ?><a href="<?php echo $download_image; ?>">Download</a></span>
								<?php } ?>
							</div>