Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #579748

    I’d like to have the title in the Portfolio link directly to the portfolio post. If you look at our Portfolio page, you’ll see that when I add an image that links to video it plays perfectly! But, there are additional details on the portfolio page that I would like to link to. Also, I noticed that when there is NO image, the title of the Portfolio links to that specific portfolio page. How can I keep that link even when there is an image in place?

    In other words, I would like to add a video link to the image and a portfolio link to each title.

    • This topic was modified 8 years, 9 months ago by Jdclark18.
    #581212

    Hi Jdclark18!

    Thank you for using our theme.

    Please try to add following code to Functions.php file of your child theme (or parent theme, if not using a child theme)- you can use Dashboard -> Appearance > Editor:

    
    function my_custom_title_link( $title_link, $entry )
    {
    	if( ! empty( $title_link ) )
    	{
    		return $title_link;
    	}
    	
    	$title_link  = get_permalink( $entry->ID );
    	return $title_link;
    }
    
    add_filter( 'avia_settingsf_output_settings_field', 'my_custom_title_link', 10, 2 );
    

    Best regards,
    Günter

    #581378

    Thanks! I added that code to my child theme in the functions.php and it’s not working.

    Here’s a screenshot of what I’m talking about. As you can tell, right now I’ve only uploaded two images, both of which are Vimeo videos. This part is working great. However, the Title is not linking to the actual portolfio page:
    https://www.dropbox.com/s/uzasibl2l0t5rk8/Screen%20Shot%202016-02-10%20at%204.03.10%20PM.png?dl=0
    (I highlighted the text that I want to be the link: “God Is Not Your Problem.”) Every portfolio will have a Vimeo Video and I need each title to link to the actual portfolio page.

    You can see the page here:

    The weird thing is that the other portfolio items that DON’T have vimeo video links have links in the titles. It seems as if the Vimeo link is causing the Title link to disappear. Thanks in advance for your help!

    #582744

    Hi!

    Try setting a custom link (to the video) for the portfolios containing Vimeo links – http://screencast.com/t/j3eSp27Waa

    Best regards,
    Josue

    #582827

    Thank you, but I’ve already done that. All that does is provide the Vimeo Video link for the IMAGE and that’s working great.

    What I’m looking for is to have the text of the title become a permalink to the portfolio time (NOT the video link which is the custom link). In other words, the IMAGE = CUSTOM LINK and then I need the TITLE = PORTFOLIO PERMALINK.

    I thank you in advance for a swift reply. This is one of the main things holding me back from launching this website!

    #582928

    Hi,

    Can you please create us a WordPress administrator account? post it here as a private reply.

    Regards,
    Josue

    #582958

    Yes, thank you Josue. The log-in info is in the private data for this post. I look forward to your help!

    • This reply was modified 8 years, 9 months ago by Jdclark18.
    #583004

    Hey!

    Please change the code as following

    function my_custom_title_link( $title_link, $entry )
    {
    	if( ! empty( $title_link ) )
    	{
    		return $title_link;
    	}
    	
    	$title_link  = get_permalink( $entry->ID );
    	return $title_link;
    }
    
    add_filter( 'avia_settings_output_settings_field', 'my_custom_title_link', 10, 2 );

    please let me know if it works

    Best regards,
    Basilis

    #583060

    Thanks Basilis,

    I’ve added that code to my child theme’s functions.php file and it’s still not doing what I need it to. Any further suggestions?

    #583175

    Hey!

    It should work as you expect now, correct code to use was:

    function my_custom_title_link( $title_link, $entry )
    {
    	if( ! empty( $title_link ) )
    	{
    		return $title_link;
    	}
    	
    	$title_link  = get_permalink( $entry->ID );
    	return $title_link;
    }
    
    add_filter( 'avf_portfolio_title_link', 'my_custom_title_link', 10, 2 );

    Best regards,
    Josue

    #583472

    Perfect, thank you!

    #583586

    You are welcome, glad to help :)

    Regards,
    Josue

Viewing 12 posts - 1 through 12 (of 12 total)
  • You must be logged in to reply to this topic.