Support Forum

For all questions related to themes and plugins!

Enter search keyword e.g. "footer color".

  • Registration is Required

    Registration is required to post questions to support forum. ThemeForest buyers also need to obtain Purchase code to be able to post on forum.

    Please read here how to obtain Purchase code.

#807
Robert Kavgić
Participant

Hello,

The white line at the bottom is the footer’s copyright container. You can remove it by adding the following CSS code to “Elvyre options -> Appearance – Custom CSS box”:

section.copyright-container {
    display: none !important;
}

The excerpt is not meant to be displayed on Portfolio page. You can modify php files in order to get the excerpt working. Go to wp-content/themes/elvyre/ and open the file cpt-portfolio.php in your editor.

To display the excerpt, you can inert the <?php the_excerpt(); ?> code into the desired place.

For example, to insert the excerpt under text, find the code:

<figcaption>
	<a class="title" href="<?php echo $post_url; ?>"><?php the_title() ?></a>
	<?php
	if (shortcode_exists('ssba') && $portfolio_ssba == '1') {
		$shortcode = "[ssba url='{$post_url}']";
		?>
		<div class="portfolio-item-like"><?php echo do_shortcode($shortcode) ?></div>
	<?php } ?>
</figcaption>

Modify the upper code so it looks like the following:

<figcaption>
	<a class="title" href="<?php echo $post_url; ?>"><?php the_title() ?></a>
	<?php
	if (shortcode_exists('ssba') && $portfolio_ssba == '1') {
		$shortcode = "[ssba url='{$post_url}']";
		?>
		<div class="portfolio-item-like"><?php echo do_shortcode($shortcode) ?></div>
	<?php } ?>
	<?php the_excerpt(); ?> 
</figcaption>

The icons are in fact the font which is called iconsfont which is located in wp-content/themes/elvyre/includes. You can try and modify the font and insert the desired icons.

Robert