Digital experiences for all disciplines
Forum Replies Created
-
-
Hi Cosmin,
in fact with CSS there are no problems for me, i’m already using the !important attribute, what I can not activate in child theme are the modified *. php
At the moment I tried just to upload the files and folders that I have changed, maintaining the same structure of course, but it does not work.
I will try to upload the entire page-builder and tell you know how it goes.
You have to manually change published date. Members will be displayed from the most recent to the oldest.
Alternatively you can use Post Types Order plugin.
Hope it may be helpful
Me too, same problem… I have just updated the template to version 1.3, and I forgot to install previously the child-theme … (luckily I had copies of changes made ^_^)
However, uploading the files in the child folder, are not seen by wordpress.
You can solve putting this line into -> Flexform Options -> General Options -> Custom CSS
.team-member-name { font-weight:normal !important; }
😉
Ok…i can’t still believe but i solved! For anyone who needs the same, I enclose the solution:
In => /flexform/includes/page-builder/composer/lib/shortcodes/team.php
i added a link to member image & member name editingmember image @ line 79 from :
$items .= ‘<img src=”‘.$image[0].'” width=”‘.$image[1].'” height=”‘.$image[2].'” />’;
to :
$items .= ‘<a href=”‘. get_permalink( get_the_ID()) .'”><img src=”‘.$image[0].'” width=”‘.$image[1].'” height=”‘.$image[2].'” /></a>’;
and doing same thing for member name @ line 83 from :
$items .= ‘<h4 class=”team-member-name”>’. $member_name .'</h4>’;
to :
$items .= ‘<h4 class=”team-member-name”><a href=”‘. get_permalink( get_the_ID()) .'”>’.$member_name.'</a></h4>’;
Then i’ve edited member-bio @ line 86, in order to show only a short description and have a “read more” link, changing from :
$items .= ‘<div class=”team-member-bio”>’. $member_bio .'</div>’;
to :
$items .= ‘<div class=”team-member-bio”>’. get_the_excerpt ($member_bio) .'<br /><br />’;
$items .= ‘<a style=”float: right” href=”‘ .get_permalink( get_the_ID()) .'”>Read More »</a></div>’;Good luck !
PS : Forgive my bad English 🙂
No suggestions to solve ? 🙁
Hi Cosmin,
I’ve already tried, but it doesn’t work for me…
the roster page (meet the team) still shows the complete description and no button or link…
furthermore in member page, the builder does not work, so I can still change the layout and insert shortcode and widgets.how can I fix?
One more thing …
I added a page “meet the team” where all members are displayed correctly with “team” and “team carousel” element, but it shown the entire description and there is no link to member page.
I tried adding tag “read more” in the description of team member, in order to obtain a short description in team and team carousel elements, but it does not work.
How can I add this feature and link the button “read more” or member image to the member page?thanks
-
Posted in: Reply To: Team Member Pages