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.

#818
Robert Kavgić
Participant

Hello,

Yes, there is. You have to modify the cpt-portfolio.php file which is located in wp-content/themes/elvyre/. Open it up in any editor and find the following code at about line 110:

$category_html .= '<li><a data-filter=".' . $cat->slug . '" href="#">' . $cat->name . '<span class="item-number">' . $cat->count . '</span></a></li>';

modify it to look like this:

$category_html .= '<li><a data-filter=".' . $cat->slug . '" href="#">' . $cat->name . '</a></li>';

After that, find the following code at about the line 117:

<li class="active"><a href="#" data-filter="*"><?php _e('All', 'pi_framework') ?> <span class="item-number"><?php echo $categories_count ?></span></a></li>

modify it to look like:

<li class="active"><a href="#" data-filter="*"><?php _e('All', 'pi_framework') ?></a></li>

Portfolio numbers won’t be shown anymore.

Robert