Forum Replies Created
-
Author
-
kjcarleo
ParticipantNo the original image I used as the featured image is NOT that size, if it were I would know why it is so pixlelated. It is https://embassymarine.org/wp-content/uploads/2017/03/site.png this picture I set as the featured image, which is 1902 x 882. So I am not sure what you are referring to.
kjcarleo
ParticipantI guess additional lines is a better term. Right now I have:
<?php
/**
* @package WordPress
* @subpackage Kleo
* @author SeventhQueen <themesupport@seventhqueen.com>
* @since Kleo 1.0
*//**
* Kleo Child Theme Functions
* Add custom code below
*/
function sq7_extra_fields_members_profile() {$Position = bp_get_member_profile_data(‘field=Position’);
if ($Position) {
echo ‘‘. ” . $Position . ‘‘;
$MemberSince = bp_get_member_profile_data(‘field=MemberSince’);
if ($MemberSince) {
echo ‘‘. ‘Member Since ‘ . $MemberSince . ‘‘;
$Role = bp_get_member_profile_data(‘field=MemberType’);
if ($Role) {
echo ‘‘. ” . $Role . ‘‘;
}
}
}
}add_action(‘bp_before_member_header_meta’, ‘sq7_extra_fields_members_profile’);
function howdy_message($translated_text, $text, $domain) {
$new_message = str_replace(‘Howdy’, ‘Welcome Aboard’, $text);
return $new_message;
}
add_filter(‘gettext’, ‘howdy_message’, 10, 3);// Function to change email address
function wpb_sender_email( $original_email_address ) {
return ‘site.admin@embassymarine.org’;
}// Function to change sender name
function wpb_sender_name( $original_email_from ) {
return ‘Site Admin | The Marine Embassy Guard Association’;
}// Hooking up our functions to WordPress filters
add_filter( ‘wp_mail_from’, ‘wpb_sender_email’ );
add_filter( ‘wp_mail_from_name’, ‘wpb_sender_name’ );kjcarleo
ParticipantHere is the original picture I used for the post: https://embassymarine.org/wp-content/uploads/2017/03/site.png
VERY BIG and CLEAR
kjcarleo
ParticipantIt’s like that for all the posts on this page https://embassymarine.org/news/mega-news/. The image on the actual post page, no the thumbnail.
kjcarleo
ParticipantIt is blurry. Follow the link and see: https://embassymarine.org/new-website-launched/
kjcarleo
ParticipantHey is there a limit to the amount of extra lines I can add to below the Profile Picture using the “functions.php” file?
kjcarleo
ParticipantThat looks Ok but how can I add a little bit of a space between the profile pic and the text I have/:
kjcarleo
ParticipantIf you look below the picture in the profile area, it til says @00241, that is what I would like to Display the Members name instead of @XXXXX. See the attachment.
Attachments:
You must be logged in to view attached files.kjcarleo
ParticipantThat worked great 🙂
How about making it display “Kevin Carleo” instead of “@00241“? Is that possible?
kjcarleo
ParticipantIs it possible to make the font match the @00241 username (white and bold) – see attachment
Also, how can I make it display “Kevin Carleo” instead of “@00241“?
Attachments:
You must be logged in to view attached files.kjcarleo
ParticipantIt is a Profile Field I added. I want the “Member Since” data to be right below the @00241 in the example I attached. Can I change the colors of the buttons? “Cancel Friendship”, “Public Message” etc…
kjcarleo
ParticipantI will have the affected users try that and see if it fixes the issue, but shouldn’t a server side cache clearing and re-crawl fix the issue?
kjcarleo
ParticipantThe site is is production, I cannot do that right now. Let you know what by the way? If they get redirected to the shop dashboard?
kjcarleo
ParticipantHey Guys I figured it out. I had to disable JC and CSS minficiation I was using WP Rocket. Is this normal?
kjcarleo
ParticipantI did geopeek as well, and it appears to be an issue world-wide: https://geopeeker.com/fetch/?url=embassymarine.org
kjcarleo
ParticipantI think it self resolved or something. I attached the screenshot from when it had issues, but they seemed to have gone away
Attachments:
You must be logged in to view attached files.kjcarleo
ParticipantNo I am referring to the BG image used for the header. I tried refreshing the cache in both WordPress and at the host, but no changes are applied.
kjcarleo
ParticipantOk thanks because it is back again. It looks like the BG is repeating as well, but I do not have repeat selected.
It also looks like the grey bar is around the entire image, thinner at the sides.
Attachments:
You must be logged in to view attached files.kjcarleo
ParticipantIt went away, because I tried changing the menu BG pic, but now it doesn’t show the new pic – just a blurry looking BG. I tried clearing my local cache and clearing the cache on the server but the new BG pic has not yet updated. How long does it normally take?
Also, where can I see what No Repeat, Cover, Inherit etc BG options mean? See pic attached.
Kevin
kjcarleo
ParticipantI am trying to get the 45 degree box colored red like it is in the notifcations
Kevin
kjcarleo
ParticipantI know the selector:
.kleo-toggle-menu .kleo-toggle-submenu:before { background-color:red !important;}
But wont it look different since it is for the search box?
kjcarleo
ParticipantI found the selector, but how do I know where to put it?
.kleo-toggle-menu .kleo-toggle-submenu:before { background-color:red !important;}
kjcarleo
ParticipantOk that worked but can I change the color of the 45 degree box at top (black now) and there is some grey text and the “MEMBERS” and “PAGES” headers could I make it WHITE BOLD?
-
AuthorPosts