Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1070060
    juanajaafar
    Participant

    Hi I’m using Icon Theme for my website. I’ve followed the tutorial and set up a Portfolio page (which I’ve renamed as Projects).

    Is it possible for me to use the Integrity 1 Theme for my Portfolio page without changing the website theme completely?

    #1070149
    Christopher
    Moderator

    Hi there,

    No, you can only select one stack under customizer. Our scope of support does’t cover customization for mixing stacks, however what you’re trying to achieve could be possible with custom development which would be outside the scope of our support.

    Thanks.

    #1070205
    juanajaafar
    Participant

    Okay, what about this:

    Can I remain on Icon’s Portfolio index layout but customize so each thumbnail:

    1) Shows a title

    2) Video thumbnails are clickable to a page (right now the videos are set to play on the index itself but I can’t click it to enter the video page where I’ve written some notes for my readers)

    #1070217
    Rue Nel
    Moderator

    Hello There,

    To assist you better with this issue, would you mind providing us the url of your site with login credentials so we can take a closer look? This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you with everything.

    To do this, you can make a post with the following info:
    – Link to your site

    – WordPress Admin username / password

    Don’t forget to select Set as private reply. This ensures your information is only visible to our staff.

    Thank you.

    #1070340
    juanajaafar
    Participant
    This reply has been marked as private.
    #1070360
    Christopher
    Moderator

    Hi there,

    #1 Because this requires a template change, I’d advise that you setup a child theme. This allows you to make code changes that won’t be overwritten when an X update is released. After your child theme is setup, please review how we recommend making template changes in Customization Best Practices.

    Copy content-portfolio.php from framework/views/icon and put it in the same path inside child theme, replace existing code with following :

    <?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 endif; ?>
    
          <div class="entry-featured">
            <?php x_portfolio_item_featured_content(); ?>
          </div>
               <?php if ( ! x_is_portfolio_item() ) : ?>
          <header class="entry-header">
              <h1 class="entry-title entry-title-portfolio"><?php the_title(); ?></h1>
              <?php x_integrity_entry_meta(); ?>
            </header>
          <?php endif; ?>
    
          <?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>

    #2 To enable users to click on video type portfolio items, please select ‘Thumbnail’ as ‘Featured Content’ under ‘Portfolio item settings’ box.

    Hope it helps.

    #1070455
    juanajaafar
    Participant

    Thanx.

    #1070492
    Rupok
    Member

    You are welcome!

  • <script> jQuery(function($){ $("#no-reply-1070060 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>