How to make a portfolio like menu?

Home Forums Revelance WordPress Theme How to make a portfolio like menu?

This topic contains 5 replies, has 2 voices, and was last updated by  ab-themes 7 years, 10 months ago.

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #17317

    ccsdancecompany
    Participant

    Hi guys,

    We want to use a gallery like the one that appears in the revelance preview in the latest work section, but instead of redirecting to a portfolio page that redirects to a normal page. How can we achieve that?

    We would appreciate a lot your help.

    #17329

    ab-themes
    Keymaster

    Hi,

    did you change something in code?

    From our side all works fine, when we click on portfolio in the front it redirect us to single portfolio
    exactly as it should be.

    Cheers

    #17338

    ccsdancecompany
    Participant

    Sorry, I didn’t express what I want correctly.

    I want to use the portfolio but only the part under project description. I want to remove the project details, change the tittle icon and despite having a featured image selected not see it in the page. This can be done?

    Thanks again for your time. :)

    #17342

    ab-themes
    Keymaster

    Hi,

    if we understand you well, you think on single portfolio.

    For remove “Project details” please open your single-portfolio.php file
    (you can find it here \wp-content\themes\revelance\single-portfolio.php)

    and when you edit that file on line 53 you have this code:

    <h3><?php _e('Project Details', 'ABdev_revelance') ?></h3>

    Delete that code or comment it and “Project details” should be remove. If you want to delete all after “Project details” (and that would be CLIENT, DATE, IN, SKILLS, LINK) you should delete or comment all from the line 53 to line 92.

    If you want to change title icon go to folder css
    (you can find it here \wp-content\themes\revelance\css)

    and inside that folder you have core-icons folder and entypo folder. In core-icons folder you have demo.html file (open that in your browser) and inside you can find all core icons. Inside entypo folder you can also select what icon you want. Just be sure to take exactly the right code below icon (for example e606) and after that open you style.css and on the line 259 you have:

    .main_title:after{
    	display: block;
    	content: "";
    	height: 36px;
    	width: 36px;
    	position: absolute;
    	bottom: 25px;
    	left: 50%;
    	margin-left: -18px;
    	color: #e42382;
    	font-family: 'entypo';
    	font-size: 18px;
    	content: "\e637";
    }

    Change content: "\e637"; to icon code you like.

    To remove featured image on line 48 you have

    the_post_thumbnail('full', array('class' => 'portfolio_item_image'));

    Delete or comment that line.

    I hope this help you :)

    Cheers

    #17363

    ccsdancecompany
    Participant

    Thanks a lot, we’ll try it at once

    #17370

    ab-themes
    Keymaster

    Hi,

    no problem :)

    Cheers

    • This reply was modified 7 years, 10 months ago by  ab-themes.
Viewing 6 posts - 1 through 6 (of 6 total)

The topic ‘How to make a portfolio like menu?’ is closed to new replies.