mrgiblets
Forum Replies Created
-
I’m not sure what you mean by “featured DJ’s image” but if you mean the featured image on the show pages…
1) in your functions.php register a new thumbnail size :
add_action( 'after_setup_theme', 'custom_image_crops' ); function custom_image_crops() { add_image_size( 'my_custom_image_crop', 350, 138, true ); }
2) in single-show.php find :
<?php if(has_post_thumbnail()) { the_post_thumbnail('medium'); } ?>
3) replace with :
<?php if(has_post_thumbnail()) { the_post_thumbnail('my_custom_image_crop'); } ?>
In full effect here (but highly modified) – https://www.d3ep.com
Being used for SHOWS / SCHEDULE / NOW PLAYING & COMING UP widgets and a few other places where show info appears. Also using it to send now playing meta to Icecast!
It’s a great plug-in!
??
Forum: Plugins
In reply to: [BuddyVerified] all members are verified without being selectedQuick fix to remove “Verified User” text for all non-verified users.
1) open buddpress-verified/includes/functions.php
2) find :
$text = !empty($is_verified['text']) ? $is_verified['text'] : 'Verified User' ;
3) replace with :
$text = !empty($is_verified['text']) ? $is_verified['text'] : '' ;
4) Make sure you actually type “Verified User” (or whatever you want to use) into the Badge Text input box or leave it blank if you don’t want any text to display.
Forum: Plugins
In reply to: [BuddyVerified] all members are verified without being selectedMe too.. All members now displaying “Verified User” text, not the badges though.
Forum: Plugins
In reply to: [BuddyVerified] Please provide a way to un-verify UsersI can unverify a user by unchecking the box and selecting “no” to all of the other options just fine, but I can’t seem to get rid of the “Verified User” text.
Forum: Plugins
In reply to: [BuddyVerified] Where do I verify a user?EDIT…
I was trying to add a verified badge to a super admin, since learned that this is not possible. It does work for all other users though ??
Forum: Plugins
In reply to: [BuddyVerified] Where do I verify a user?Ok found it by chance while reading another topic in here..
If anybody else is having the same issue…
Users > hover over a username > Extended
Would probably be a good idea to put this in the FAQ.
But… Now i’ve found it and tried to verify a user, it doesn’t save the settings so it’s not working anyway ??