Hi,
It's not possible to link to pages in the GK Portfolio (You can choose Latest Products, Caregories, Post slugs, Custom Post Types as a data source), so maybe try to create Custom Post Type if you don't want to use posts.
Regards second question, edit text widget on Bottom I position, and change e.g. first team member:
- Code: Select all
<figure data-fb="https://www.facebook.com/gavickpro" data-twitter="https://twitter.com/gavickpro" data-gplus="https://plus.google.com/+gavickpro/posts" class="animate_queue_element">
<img src="http://localhost:8888/qs-creativity/wp-content/themes/Creativity/images/demo/about/1.jpg" alt="Tim Berners">
<figcaption>
<h3>Tim Berners</h3>
<small>CEO Executive Officer</small> </figcaption>
</figure>
to
- Code: Select all
<figure class="animate_queue_element">
<a href="#">
<img src="[pageurl]/wp-content/themes/Creativity/images/demo/about/1.jpg" alt="Tim Berners">
</a>
<figcaption>
<h3>Tim Berners</h3>
<small>CEO Executive Officer</small> </figcaption>
</figure>
then you can customize the link tag
- Code: Select all
<a href="#">
If you don't want the animation at all, remove animate_queue_element class.