A page for each items of the portfolio

Hi, My portfolio have only videos. It is possible to create a page for each videos of the portfolio so that I can describes projects ?

Hi there,

Portfolio is a custom post type and you can add information there like any other page but with specific data related to the portfolio:

There is an article which explains how you can add portfolio items:

Also if you want to have a better control over the meta options of the portfolio item kindly read this article:

Thank you.

The title above my items portfolio doesn’t work with videos… :frowning:

Hello There,

We are not sure we are on the same page. The portfolio page can display featured image, featured video or featured gallery. And each of the portfolio items in the portfolio page has its own single portfolio item page. For example, using Integrity:

All of the portfolio items can be displayed in the portfolio page as a summary and if you want to check out each portfolio item for more details, you can always check each of the items.

Hope this helps. Kindly let us know.

I am using Icon6

Hi there,

Would you mind providing your portfolio item’s URL? You mean like this http://demo.theme.co/icon-6/portfolio-item/have-you-tried-this/?

Thanks!

Yes This is what I want

Here is my portfolio url http://www.animalsprod.com/realisations/

Hello There,

Thanks for providing the information. Each of the video in your portfolio page has its own portfolio item page. Its just that you cannot click on it because it is designed to play the video upon clicking on the items. Do you want to add some title in each of the video so that it can be clickable and linked to each own portfolio page? If that is the case, please follow these steps:
1] Using Notepad or TextEdit or Sublime Text or any text editor, please create a new file in your local machine.
2] Insert the following code into that new file

<?php

// =============================================================================
// VIEWS/ICON/CONTENT-PORTFOLIO.PHP
// -----------------------------------------------------------------------------
// Portfolio post output for Icon.
// =============================================================================

?>

<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  <div class="entry-wrap">
    <div class="x-container max width">

      <?php if ( x_is_portfolio_item() ) : ?>

        <header class="entry-header">
          <h1 class="entry-title"><?php the_title(); ?></h1>
          <?php x_icon_entry_meta(); ?>
        </header>

      <?php else : ?>

        <header class="entry-header">
          <h3 class="entry-title" style="width: 98%; font-size: 90%; text-align: left; margin: 0 auto; padding: 10px 0;"><?php the_title(); ?></h3>
        </header>

      <?php endif; ?>

      <div class="entry-featured">
        <?php x_portfolio_item_featured_content(); ?>
      </div>

      <?php if ( is_singular() ) : ?>

        <?php x_get_view( 'global', '_content', 'the-content' ); ?>
        <div class="entry-extra">
          <?php x_portfolio_item_tags(); ?>
          <?php x_portfolio_item_project_link(); ?>
          <?php x_portfolio_item_social(); ?>
        </div>

      <?php endif; ?>

    </div>
  </div>
</article>

3] Save the file named as content-portfolio.php
4] Upload this file to your server in the child theme’s folder wp-content/themes/x-child/framework/views/icon/

Hope this helps. Please let us know how it goes.

Indeed with your code I can see titles but I can’t click on it :confused:

Hi there,

Please change your code to this

<?php

// =============================================================================
// VIEWS/ICON/CONTENT-PORTFOLIO.PHP
// -----------------------------------------------------------------------------
// Portfolio post output for Icon.
// =============================================================================

?>

<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  <div class="entry-wrap">
    <div class="x-container max width">

      <?php if ( x_is_portfolio_item() ) : ?>

        <header class="entry-header">
          <h1 class="entry-title"><?php the_title(); ?></h1>
          <?php x_icon_entry_meta(); ?>
        </header>

      <?php else : ?>

        <header class="entry-header">
          <a href="<?php echo get_permalink(); ?>"><h3 class="entry-title" style="width: 98%; font-size: 90%; text-align: left; margin: 0 auto; padding: 10px 0;"><?php the_title(); ?></h3></a>
        </header>

      <?php endif; ?>

      <div class="entry-featured">
        <?php x_portfolio_item_featured_content(); ?>
      </div>

      <?php if ( is_singular() ) : ?>

        <?php x_get_view( 'global', '_content', 'the-content' ); ?>
        <div class="entry-extra">
          <?php x_portfolio_item_tags(); ?>
          <?php x_portfolio_item_project_link(); ?>
          <?php x_portfolio_item_social(); ?>
        </div>

      <?php endif; ?>

    </div>
  </div>
</article>

Thanks!

Thank you but now my videos are not align now … ^^

Hi again,

Are you referring to this page http://www.animalsprod.com/realisations/ right? I checked and videos looks aligned on my end. Would you mind sharing some screenshots so we can take a closer look?

Thanks!

It works now ! thanks !

even if the load time is bad…

Glad we could help.

Cheers!