Hi there,
That is not possible unfortunately as the arrows are generated in the landmark header file and not inside the content of the portfolio.
The only way is to add extra information in the place that you want and then hide the actual ones. Then you will need to add a Javascript code to act the same thing which the top section does.
You will need to install the Child Theme and add the file below there:
wp-content/themes/x/framework/views/integrity/content-portfolio.php
So the Child Theme file will be like this:
wp-content/themes/x-child/framework/views/integrity/content-portfolio.php
Then, add the code below to the file:
<?php
// =============================================================================
// VIEWS/INTEGRITY/CONTENT-PORTFOLIO.PHP
// -----------------------------------------------------------------------------
// Portfolio post output for Integrity.
// =============================================================================
$archive_share = x_get_option( 'x_integrity_portfolio_archive_post_sharing_enable' );
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="entry-featured">
<?php x_portfolio_item_featured_content(); ?>
</div>
<div class="x-nav-articles">
<a href="#" title="" class="prev">
<i class="x-icon-arrow-left" data-x-icon=""></i>
</a>
<a href="#" title="" class="next">
<i class="x-icon-arrow-right" data-x-icon=""></i>
</a>
</div>
<div class="entry-wrap cf">
<?php if ( x_is_portfolio_item() ) : ?>
<div class="entry-info">
<header class="entry-header">
<h1 class="entry-title entry-title-portfolio"><?php the_title(); ?></h1>
<?php x_integrity_entry_meta(); ?>
</header>
<?php x_get_view( 'global', '_content', 'the-content' ); ?>
</div>
<div class="entry-extra">
<?php x_portfolio_item_tags(); ?>
<?php x_portfolio_item_project_link(); ?>
<?php x_portfolio_item_social(); ?>
</div>
<?php else : ?>
<header class="entry-header">
<h2 class="entry-title entry-title-portfolio">
<a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to: "%s"', '__x__' ), the_title_attribute( 'echo=0' ) ) ); ?>"><?php x_the_alternate_title(); ?></a>
</h2>
<?php if ( $archive_share == '1' ) : ?>
<?php x_portfolio_item_social(); ?>
<?php endif; ?>
</header>
<?php endif; ?>
</div>
</article>
And you will need to add the CSS code below to X > Launch > Options > CSS:
.single-x-portfolio article.x-portfolio .x-nav-articles {
display: flex;
margin: auto;
justify-content: center;
align-items: center;
width: 100%;
}
That will add the icons but it will not work unless you add the code below to X > Launch > Options > JS:
(function( $ ) {
$(function() {
$('.single-x-portfolio article.x-portfolio .x-nav-articles a.prev').on('click', function() {
var theLink = $('.x-breadcrumb-wrap .x-nav-articles a.prev').attr('href');
window.location.href = theLink;
});
$('.single-x-portfolio article.x-portfolio .x-nav-articles a.next').on('click', function() {
var theLink = $('.x-breadcrumb-wrap .x-nav-articles a.next').attr('href');
window.location.href = theLink;
});
});
})(jQuery);
Kindly open up new threads for additional questions as it will help us to focus on each issue and give you a better support which you deserve. Having a long threads makes the maintaining job harder and also it will be harder for the other customers to find the correct information if they have similar issues. You are always welcomed to reply to this thread to follow up the same question.
Thank you.