Lars Henriksen
Forum Replies Created
-
Forum: Plugins
In reply to: [Export User Data] xProfile content not exportingI am having the same problem.
Version 1.2.2 of the plugin.
Hi, thanks for answering.
No, I just couldn’t see any user roles in the settings.
I will try this out with a test user.
Lars
So where in the rss.php template file should one place the
$EM_Event->output(‘#_EVENTIMAGEURL’) and #_EVENTIMAGE{400,0} … ?
(I would like events images to be 400px wide in rss feed used in Mailchimp)
Thanks
Hi, thanks for the attention
Changed encoding type from ASCII => UTF-8 – Still WSOD.
I’m uploading to the root of my child theme folder.
Maybe ‘[insert homeurl/author]’ is causing problems with BP enabled?
Forum: Plugins
In reply to: [Voter Plugin] Breaks BP notificationsNo sorry, my screenshot is from another site with a childtheme of “Responsive”
Forum: Plugins
In reply to: [Voter Plugin] Breaks BP notificationsCurrent WP 4.2.2 with a childtheme of Twentyfourteen.
Historielaerer.dk – a site for high school history teachers
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] list participantsI’m using the #_ATTENDEES placeholder, but I would like to link attendees’ user avatar to their buddypress profile.
I found this post but I can’t get it to work.
I have tried with this code:
<?php /* @var $EM_Event EM_Event */ $people = array(); $EM_Bookings = $EM_Event->get_bookings(); if( count($EM_Bookings->bookings) > 0 ){ ?> <ul class="event-attendees"> <?php $guest_bookings = get_option('dbem_bookings_registration_disable'); $guest_booking_user = get_option('dbem_bookings_registration_user'); foreach( $EM_Bookings as $EM_Booking){ if($EM_Booking->booking_status == 1 && !in_array($EM_Booking->get_person()->ID, $people) ){ $people[] = $EM_Booking->get_person()->ID; echo '<li>'<a href="'. bp_core_get_user_domain($EM_Booking->get_person()->ID) . '">'. get_avatar($EM_Booking->get_person()->ID, 50) .'</a>'</li>'; }elseif($EM_Booking->booking_status == 1 && $guest_bookings && $EM_Booking->get_person()->ID == $guest_booking_user ){ echo '<li>'. get_avatar($EM_Booking->get_person()->ID, 50) .'</li>'; } } ?>
placed in /wp-content/themes/twentyfourteen-child/plugins/events-manager/templates/placeholders/
This is an event on my page.
Can anyone help?
Thanks
Forum: Plugins
In reply to: [Voter Plugin] NotificationWell, I can’t reproduce it, so maybe it was my mistake, sorry.
Forum: Plugins
In reply to: [Voter Plugin] Customizing/localizationHello
With the latest update I found the .po files, thanks ??
I don’t see any possibility to change font-size in the settings, but I just edited the css.
I have one last (?) suggestion: When a user has voted, the text ‘HELLO’ is displayed. I would like to change/translate that message, but it is not in the po file?
Forum: Plugins
In reply to: [Voter Plugin] Customizing/localizationHello
Thank you for updating the plugin.
I can’t locate the language files in the new release?
I would like to reduce the font-size of the thumbs – what is the css?
Best, Lars
Forum: Plugins
In reply to: [Thumbs Rating] Support BBpress topics and replies?Ok, I managed to set it up with BBpress – and I added fontawesome thumbs, but now the vote up/down text is missing – what am I doing wrong?
.thumbs-rating-container{ padding:1em 0; display: block; } .thumbs-rating-container span{ cursor: pointer; } .thumbs-rating-container span:before{ content: attr(data-text); } .thumbs-rating-container span:hover{ color: #dddddd; } .thumbs-rating-container .thumbs-rating-up, .thumbs-rating-container .thumbs-rating-down{ padding: 1em; color: white; } .thumbs-rating-container .thumbs-rating-up{ background: #24890d; padding: 0.5em; } .thumbs-rating-container .thumbs-rating-down{ background: #8d0134; padding: 0.5em; } .thumbs-rating-container span.thumbs-rating-up:before { content: "\f087"; font-family: FontAwesome; font-size: 2em; padding-right: 1em; } .thumbs-rating-container span.thumbs-rating-down:before { content: "\f088"; font-family: FontAwesome; font-size: 2em; padding-right: 1em; } .thumbs-rating-container .thumbs-rating-already-voted{ padding-top: 1em; font-size: 0.9em; display: none; -webkit-transition: (all 0.3s); transition: (all 0.3s); } .thumbs-rating-container .thumbs-rating-already-voted:before{ content: attr(data-text); }
Forum: Plugins
In reply to: [Thumbs Rating] Support BBpress topics and replies?Hi, thanks
BBpress creates three custom post types: forums, topics and replies.
I have used installation #2 and it works well with pages, posts and events, but not with BBpress post types.
So I guess I need to modify some BBpress templates – I will try in the BBpress forum.
Forum: Plugins
In reply to: [Thumbs Rating] Support BBpress topics and replies?Hi, thank you for responding – I’m not a developer, but a “copy and paste-coder” , so can you point me in the right direction? ??
I have tried to follow Chad’s advice here, but the voting buttons don’t appear by the posts.
Forum: Plugins
In reply to: [Author Avatars List/Block] Change link color?.author-list a {
color: something; }-this solved my problem!
Thanks, Paul.
Forum: Plugins
In reply to: [Author Avatars List/Block] Change link color?Thank you for answering so quickly!
I tried
.author-list a:link {black} but link styles is still inherited…
I’m using widgets on pages – maybe shortcode is better.