-
AuthorPosts
-
October 31, 2023 at 11:12 am #1424232
Hi,
1. Link post author to specific portfolio-item
each team member is presented by a portfolio-item.
Team members write Blogs.
How can I have the displayed blog author link to the specific portfolio-item?2. show author in Post grid
I would like to display the author in the post grid as well as the comments and other meta data. How can I do that?November 1, 2023 at 3:26 am #1424279Hey fabienneRedUmb,
Thank you for the inquiry.
1.) Have you tried defining a custom URL for the portfolio items? This can be done in the Additional Portfolio Settings, set the Overwrite Portfolio Link setting to the second option, then define the URL in the Link portfolio item to external URL field.
2.) To add the author info in the grid layout, please add this filter in the functions.php file.
add_filter('avf_post_slider_meta_content', function($meta_content, $entry, $index, $atts, $meta_array) { $meta_content .= get_the_author_meta('display_name', $entry->post_author ); return $meta_content; }, 10, 5);
Best regards,
IsmaelNovember 2, 2023 at 8:11 am #1424359Hi Ismael,
thank you for your swift reply.1; I think we misunderstood each other. I want to display the “Author” in the Blog Post Grid and have the Author link to specific portfolio-items. not the other way round.
2; Perfect, thank you, I added a ‘ ‘ before the name.
November 3, 2023 at 3:23 am #1424465Hi,
Thank you for the update.
We are a bit confused by your description. Would you mind providing a screenshot of changes that you’d like to implement? You can use platforms like Savvyify, Imgur or Dropbox to upload and share the screenshot. Here are the steps to follow:
1.) Visit the website of your chosen platform, such as Savvyify, Imgur or Dropbox.
2.) Locate the option to upload a file or an image.
3.) Select the screenshot file from your computer or device and upload it to the platform.
4.) After the upload is complete, you will be provided with a shareable link or an embed code.
5.) Copy the link or code and include it in your message or response to provide us with the screenshot.Thank you for taking the time to share the screenshot. It will help us better understand the issue you’re facing and provide appropriate assistance.
Best regards,
IsmaelNovember 3, 2023 at 10:51 am #1424533This reply has been marked as private.November 4, 2023 at 9:20 pm #1424690Hi, thank you for your patience, so as I understand the “author” link for the blog posts in the grid and the single post pages work correctly, but you wouls like to redirect these to a “portfolio” page. These are different post types are are not linked in the WordPress database, the best way to achieve this would be to to use a plugin like 301 Redirects, please give this a try.
Best regards,
Mike -
AuthorPosts
- You must be logged in to reply to this topic.