develhem
Forum Replies Created
-
it’s okay for the e-mail
This issue appears on each service for the current Day and tomorrow. For example, if we are the 15 june, we can book in the 15 june and neither the 16 june
Forum: Plugins
In reply to: [Comment Mention] Tag users in postsYou have the custom code, i have to insert in WPUF to permit user tag other members ?
Forum: Plugins
In reply to: [Comment Mention] Tag users in postsI use the WP User Front-end plugin to make everythings in front-end.
Members can write article with the WPUF form, they are text areas and text field.I want members can tag other members on posts to improve the social apsect of my website.
I give you an example for the groups page, i sort with alphabet :
In plugins/profilegrid-user-profiles-groups-and-communities/public/partials/themes/default/groups-tpl.php
This code :
<?php $dbhandler = new PM_DBhandler; $pmrequests = new PM_request; ?> <div class="pmagic"> <div class="pm-group-container pm-dbfl"> <div class="pm-all-group-container pm-dbfl"> <?php function comparer($a, $b) { return strcmp($a->group_name, $b->group_name); } usort($groups, 'comparer'); foreach($groups as $group){
And if you like sort users in a group page, modify the $users array in plugins/profilegrid-user-profiles-groups-and-communities/public/partials/themes/default/group-tpl.php
Forum: Plugins
In reply to: [Timeline and History slider] Problem to display just one category of eventsThank you so much, it’s working !
Forum: Plugins
In reply to: [ProfileGrid – User Profiles, Groups and Communities] Click-to-callThanks, do you have a documentation to know what types or functions are available ?
Forum: Plugins
In reply to: [ProfileGrid – User Profiles, Groups and Communities] Click-to-callOkay but if i put a (if) condition to verify the name of the field, into the loop, it will work ?
Forum: Plugins
In reply to: [ProfileGrid – User Profiles, Groups and Communities] Click-to-callYes, i see that but i just want to put the code, in the place where you recup the phone or mobile number. Like that, we can click on the link and call the user.
Forum: Plugins
In reply to: [ProfileGrid – User Profiles, Groups and Communities] Click-to-callI just need the place where put the html code :
<a href="tel:+66666666">666666666</a>
- This reply was modified 6 years, 4 months ago by develhem.