Hi,
I would love to insert a permalink to the post in the extended portfolio viewing instead of the read more. Any idea where/how to tweak the code?
thanks
Hi,
I would love to insert a permalink to the post in the extended portfolio viewing instead of the read more. Any idea where/how to tweak the code?
thanks
Open up angular\includes\helper-templates.php and replace following code:
the_content(__('Read more →','avia_framework'));
with:
the_content('');
echo '<a href="'.get_permalink(15).'">My link text</a>';
Obviouslyyou need to change the page id (I set it to 15) and the link text.
You must log in to post.