Forum Replies Created

Viewing 40 posts - 1 through 40 (of 176 total)
  • Author
  • in reply to: BuddyPress Profile Tabs #209230
     joy
    Participant

    Sorry, let me clarify. The code works, but didn’t have any effect on the dropdown menu. I am trying to expand all tab icons. The theme is forcing tabs to be hidden in the dropdown menu. All the code does is adjust the padding for the current visible icons, it does not expand the hidden icon from the dropdown menu.

    According to BuddyPress devs, this is an theme issue, since it’s not default buddypress behavior. Please have another look at my original post. Thank you.

    in reply to: BuddyPress Profile Tabs #208929
     joy
    Participant

    Thank you for your response. The original code didn’t do anything, but I used this instead. However, it still doesn’t work…

    COPY CODE
    #buddypress div#item-nav ul li a {
        padding: 0px 15px;
    }

    To reiterate, I am trying to make it so that the drop-down menu item is not hidden. In the screenshot of your demo provided earlier, there is only one more icon that is hidden in the drop-down toggle. There already is enough space there to show the icon and get rid of the toggle which is what I am trying to do – can you please help?

    in reply to: Div ID link jump #189422
     joy
    Participant

    Nevermind, I figured it out. Thank you.

    in reply to: Div ID link jump #189407
     joy
    Participant

    Thank you for the quick response, but could you please better explain that? I don’t understand.

    in reply to: Animated Numbers Timer #187298
     joy
    Participant

    Hello, please reread post #187155. Thank you.

    in reply to: Animated Numbers Timer #187161
     joy
    Participant

    They will be immediately visible on the page on a desktop but further down on mobile view. Is it possible to delay the animation?

    in reply to: Animated Numbers Timer #187155
     joy
    Participant

    Thank you. Is there a way to have the animation start delay? For now, I will only be using number 3, in time that number will grow. But it seems that number is too small to have the animation time have any impact.

    in reply to: Animated Numbers Timer #187081
     joy
    Participant

    Hi Kieran,

    Thank you for your response and your assistance. I think this might be an issue directly related to the “end count” number.

    For example, I’ve changed all of the numbers to reach 3, at differing speeds and they all appear the same way. Please have a look and let me know if this can be addressed. Thank you again.

    in reply to: kleo icon #184782
     joy
    Participant

    Figured it out after getting to the bottom of the documentation page: https://archived.seventhqueen.com/documentation/kleo#

    This really should have been mentioned with the “Icons” shortcode, where it’s relevant.

    in reply to: Post Comment #184580
     joy
    Participant

    Nevermind, I figured it out.

    The navigation of this site needs to be improved. You literally have to jump through hoops to reach the forum.

    in reply to: Ajax Search Issue #167474
     joy
    Participant

    The issue has not been resolved. I get the same results whether I am logged in or logged out. Please check the site again. Please use the keyword, “kind” in your search.

    To reiterate, this is the issue:
    Hello, when I search for something in the ajax header search, the results load accurately. However, when I click on the button below the search results that reads “View All Results”, I am directed to a page with no results and a message that says, “Sorry nothing matched your search terms…”

    If the site happens to be down for maintenance, please use the login credentials I provided in my initial post so that you may see/test the results.

    Thank you.

    in reply to: Nested Comments #165070
     joy
    Participant

    Thank you for your response and thank you for providing the solution to the other issue. There are far too many topics with the issue with visible content.

     joy
    Participant
    Not marked as solution
     joy
    Participant
    Not marked as solution
     joy
    Participant
    Not marked as solution
     joy
    Participant
    Not marked as solution
    in reply to: Nested Comments #164150
     joy
    Participant

    edited the themes settings for child responses.

    in reply to: What is the custom field for ‘media’ #161103
     joy
    Participant

    Sorry I meant _kleo_embed.

    The URL content should be applied to the “Media” area in the post options(video oEmbed URL). However, it does not.

    Can you confirm the custom field name for that area? Thank you.

    Attachments:
    You must be logged in to view attached files.
    in reply to: What is the custom field for ‘media’ #160995
     joy
    Participant

    Hi @Radu,

    I am trying to use a front-end form to populate the oembed (_kelo_embed) field, but it doesn’t seem to work. Do you have any ideas as to why the url is not being placed in the Kleo media options?

    Thank you.

    in reply to: Expand Profile Tabs – Buddypress #160486
     joy
    Participant

    Thank you.

    in reply to: Buddypress Notifications #160485
     joy
    Participant

    Never mind, closing this ticket.

    in reply to: Buddypress Notifications #160301
     joy
    Participant
    This reply has been set as private.
    in reply to: Display the age of BuddyPress users in Kleo #160293
     joy
    Participant

    Perfect. Thank you!

    in reply to: Expand Profile Tabs – Buddypress #160226
     joy
    Participant

    I am talking about the tabs : activity, profile, notifications, messages, etc.

    Currently the “Settings” tab is hidden in a menu and in mobile view, all the tabs are hidden in an expandable menu. I would like to get rid of the menu and have all tabs displayed at all times, even in mobile. Is this possible? Would you like me to explain clearer? Thank you.

    in reply to: The “Load More” button stopped working #160124
     joy
    Participant
    Not marked as solution
    in reply to: Logo link #160059
     joy
    Participant

    I figured it out.

    COPY CODE
    // redirect home page if logged in
    add_action('wp_head','wpmy_redirect_logged_in_users_away_from_home');
    function wpmy_redirect_logged_in_users_away_from_home() {
        if( is_user_logged_in() && ( is_home() || is_front_page() ) ) {
    		wp_redirect('http://www.website.com');
    		exit;
        }
    }
    
    //allow redirection, even if my theme starts to send output to the browser
    add_action('init', 'do_output_buffer');
    function do_output_buffer() {
            ob_start();
    }
    in reply to: Search Options #159931
     joy
    Participant

    Nevermind, I got it. 🙂

    COPY CODE
    function remove_pages_from_search($query) {
    if ($query->is_search) {
    $query->set('post_type', 'post');
    }
    return $query;
    }
    add_filter('pre_get_posts','remove_pages_from_search');
    in reply to: Display the age of BuddyPress users in Kleo #159922
     joy
    Participant

    How do you display the added fields before the last active timestamp?

    in reply to: Buddypress Notifications #159909
     joy
    Participant

    I do not wish to use a plugin. Can you please tell me which files I need to edit? Thanks.

    in reply to: Unable to hide title #159797
     joy
    Participant

    No need to respond. I figured it out.

    .members section.container-wrap.main-title.alternate-color{ display:none ; }

    in reply to: Buddypress Notifications #159729
     joy
    Participant

    Thank you but I do not wish to use a plugin. Please tell me which files I need to edit.

    in reply to: Unable to hide title #159706
     joy
    Participant

    Hello, it is the members page.

    Thank you.

    in reply to: Pages missing content after update #159603
     joy
    Participant

    I was missing a setting in my geodirectory events plugin that caused the issue. It has been resolved. Thank you.

    in reply to: Additional Field in Profile Header #158576
     joy
    Participant

    Not sure what I did, but it’s fixed.

    in reply to: Additional Field in Profile Header #158511
     joy
    Participant
    This reply has been set as private.
    in reply to: Additional Field in Profile Header #158481
     joy
    Participant

    I already tried that. If I place it within the a href=”…, it has no effect. If I place it before <br><a href=”…, all of the icons are displayed in a vertical line.

    in reply to: The button “show more” does not work #158382
     joy
    Participant

    Hello can someone please look into this issue. The load more feature on the site-wide activity page does not work when the wp hearbeat is disabled. Is there a work around? Thank you.

    in reply to: Comment form labels #157855
     joy
    Participant

    If you use a child theme you can update files without any conflicts with future releases. I managed to find what I needed. If anyone else is interested the text can be changed in the functions.php file, just be sure you don’t overwrite Kleo files and use a child theme.

    Thanks.

    in reply to: Comment form labels #157652
     joy
    Participant

    I didn’t ask to remove them. I want to change what they say, without the translation plugin. There should be a way to target the core file and hardcode the changes.

    For example, I want to change the word “comment” to the word “reply”.

     joy
    Participant

    Disregard, I figured it out. 🙂

Viewing 40 posts - 1 through 40 (of 176 total)

Log in with your credentials

Forgot your details?