HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux WebLive 5.15.0-79-generic #86-Ubuntu SMP Mon Jul 10 16:07:21 UTC 2023 x86_64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/html/wpprm/wp-content/themes/ronneby/templates/portfolio/entry-meta-folio.php
<?php
if ( ! defined( 'ABSPATH' ) ) { exit; }
global $description_position;

$share_style = DfdMetaBoxSettings::compared('folio_single_share_style', false);
if($share_style) $share_style = 'dfd-share-'.$share_style;

$show_read_more_share = DfdMetaBoxSettings::compared('folio_single_show_read_more_share', false);

if($show_read_more_share == 'on') :
?>
<div class="dfd-meta-container">
	<div class="dfd-commentss-tags">
		<div class="post-comments-wrap">
			<?php get_template_part('templates/entry-meta/mini', 'comments-number'); ?>
			<span class="box-name"><?php _e('Comments','dfd') ?></span>
		</div>
		<div class="dfd-single-tags clearfix">
			<?php get_template_part('templates/entry-meta/mini', 'folio-tags'); ?>
		</div>
	</div>
	<div class="dfd-like-share">
		<div class="post-like-wrap left">
			<?php get_template_part('templates/entry-meta/mini', 'like'); ?>
		</div>
		<div class="add-info-wrap left">
			<?php
			if(strcmp($description_position, 'top') === 0 || strcmp($description_position, 'bottom') === 0) {
				get_template_part('templates/entry-meta/mini', 'add-info');
			}
			?>
		</div>
		<div class="dfd-share-cover <?php echo esc_attr($share_style);  ?>">
			<?php get_template_part('templates/entry-meta/mini','share-blog') ?>
		</div>
	</div>
</div>
<?php endif;