Forum Replies Created
-
Author
-
joyParticipant
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.
joyParticipantThank 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?
joyParticipantThank you for the quick response, but could you please better explain that? I don’t understand.
joyParticipantThey will be immediately visible on the page on a desktop but further down on mobile view. Is it possible to delay the animation?
joyParticipantThank 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.
joyParticipantHi 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.
joyParticipantFigured 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.
joyParticipantNevermind, I figured it out.
The navigation of this site needs to be improved. You literally have to jump through hoops to reach the forum.
joyParticipantThe 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.
joyParticipantThank 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.
June 23, 2017 at 23:41 in reply to: TinyMCE: Failed to load plugin url k-elements//admin/tinymce/plugin.js #165063joyParticipantNot marked as solutionJune 23, 2017 at 23:40 in reply to: TinyMCE: Failed to load plugin url k-elements//admin/tinymce/plugin.js #165062joyParticipantNot marked as solutionJune 15, 2017 at 02:30 in reply to: TinyMCE: Failed to load plugin url k-elements//admin/tinymce/plugin.js #164313joyParticipantNot marked as solutionJune 15, 2017 at 02:22 in reply to: TinyMCE: Failed to load plugin url k-elements//admin/tinymce/plugin.js #164312joyParticipantNot marked as solutionjoyParticipantSorry 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.joyParticipantHi @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.
joyParticipantI 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.
joyParticipantI 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(); }
joyParticipantNevermind, I got it. 🙂
COPY CODEfunction 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');
joyParticipantI do not wish to use a plugin. Can you please tell me which files I need to edit? Thanks.
joyParticipantNo need to respond. I figured it out.
.members section.container-wrap.main-title.alternate-color{ display:none ; }
joyParticipantThank you but I do not wish to use a plugin. Please tell me which files I need to edit.
joyParticipantI was missing a setting in my geodirectory events plugin that caused the issue. It has been resolved. Thank you.
joyParticipantI 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.
joyParticipantHello 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.
joyParticipantIf 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.
joyParticipantI 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”.
April 5, 2017 at 02:06 in reply to: Saving oembed Media field to Post Meta data from Front end form #157635joyParticipantDisregard, I figured it out. 🙂
-
AuthorPosts