Forum Replies Created
-
Author
-
sharmstr
ModeratorPlease respond privately with credentials and I’ll have a look at your setup.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
March 4, 2016 at 16:41 in reply to: Members Carousel Placed Above Cover Image Header On Buddypress Member Profile Breaks Message Button #108561sharmstr
ModeratorMan, that took forever to track down. Here’s whats happening. By default, BP doesnt display private message buttons in the members loop. Kleo adds that functionality in both the members directory and in your friends list located in your profile. In order to do that, it has to filter the message button arguments. Long story short, edit the following to get it to work.
In /kleo/buddypress/buddypress-functions.php… starting around line 2074, you’ll see Private message in Members directory loop. Replace everything from that line to the bottom of the file with this.
COPY CODE/* Private message in Members directory loop */ function filter_message_button_link( $link = '' ) { $bp_user_id = (bp_get_member_user_id() ? bp_get_member_user_id() : bp_displayed_user_id() ); $link = wp_nonce_url( bp_loggedin_user_domain() . bp_get_messages_slug() . '/compose/?r=' . bp_core_get_username( $bp_user_id ) ); return $link; } function kleo_bp_dir_send_private_message_button() { if( bp_get_member_user_id() != bp_loggedin_user_id() ) { add_filter('bp_get_send_private_message_link', 'filter_message_button_link', 1, 1 ); add_filter('bp_get_send_message_button_args', 'kleo_bp_private_msg_args'); bp_send_message_button(); } } /** * Override default BP private message button to work on Friends tab * @since 2.2 * @param array $btn * @return array */ function kleo_bp_private_msg_args( $btn ) { if ( ! is_user_logged_in() ) { return false; } $btn['link_href'] = filter_message_button_link(); return $btn; }
I’m submitting this code change to the developers and I’m also copying them on this just incase this change breaks something. I dont think it will.
Also, you dont need to edit template files to inject your carousel code. Just use the kleo_before_main hook.
COPY CODEadd_filter( 'init', 'check_member_profile'); function check_member_profile() { if (bp_is_user()) { add_action('kleo_before_main', 'add_members_carousel', 10); } } function add_members_carousel() { echo '<div class="member_avatars">'; echo do_shortcode('[kleo_bp_members_carousel type="active" number="5" min_items="2" max_items="7" image_size="thumb" rounded="rounded" autoplay="yes" online="noshow" class="customclass"]'); echo '</div>'; }
Let me know if everything is sorted.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorDo you have your buddypress pages set correct in the Settings > buddypress > pages?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorDo you have registration enabled in Wp Admin > Settings > General?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
Moderator1 – I’ve never heard of that problem. Perhaps an issue with another plugin?
2 – Why do you need to change it? It just checked your site and its correctly going to your register page.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorPlease check to see if go_pricing.zip is in /wp-content/themes/kleo/lib/inc on your server.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorWhen did you turn it off? Its not an on/off switch for display. Its an on/off switch for recording the activity. In other words, if you recently turned off site tracking, it will still show posts that were recorded before you turned it off. It wont show post created after turning it off because it wont even record the activity to the db. In your image the post says its a week old.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorI appologize. I had just got in and didnt realize that they released Kleo 4.0.2. If you have that installed, then go to Appearance > Install Plugins and you’ll be able to update to Go Pricing 3.2.1
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorAgain, because its bundled. GoPricing updated their plugin AFTER the latest release of Kleo was posted. The Go Pricing version you should have installed is 3.2.0
Hope that helps.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorStrange that it works perfectly on my site.
Add this to it
COPY CODE#logo_img { max-height: 250px !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorDid you reset the main menu height to 88px?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorTry this instead
COPY CODE@media (min-width: 991px) { .header-centered .navbar-header, .logo { height: 250px !important; line-height: 250px !important; } }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorYou’re welcome.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
Moderatorand this https://wordpress.org/plugins/wp-idea-stream/
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorThat’s been discussed here: https://archived.seventhqueen.com/forums/topic/vote-topic#post-89365
With that said here is something similar: https://wordpress.org/plugins/idea-factory/
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorChange the main menu height to 250px in theme options > header options
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
Moderatormoving because this isnt a bug.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorYou’re not installing the correct file: https://archived.seventhqueen.com/forums/topic/the-theme-cant-install-complaining-of-style-css-not-found
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorA few issues –
1 – Your logic is wrong/backwards. Your code is saying “if its not mobile, show full width. if it is mobile, show the sidebar”.
2 – You’ve misspelled right.
3 – According to WP you shouldn’t be using it in themes: https://codex.wordpress.org/Function_Reference/wp_is_mobile
But to answer your question, by the time it gets to right-sidebar.php its too late. You could have tested that by merely changing ‘right’ to ‘no.
If you look in the kleo_prepare_layout function, you’ll see that you can filter it. So its as simple as putting this in your child theme.
COPY CODEadd_filter( 'kleo_page_layout' , 'remove_sidebar_mobile' ); function remove_sidebar_mobile() { if ( wp_is_mobile() ) { $layout = 'no'; }else{ $layout = 'right'; } return $layout; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorThat was discussed here: https://archived.seventhqueen.com/forums/topic/mobile-sidebars-and-menu#post-73978
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
March 3, 2016 at 14:45 in reply to: Members Carousel Placed Above Cover Image Header On Buddypress Member Profile Breaks Message Button #108253sharmstr
ModeratorHow are you adding the carousel? Need to see your exact code in order to help.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorIf you look at the code in /kleo/bbpress/content-single-forum.php, you’ll see that it adds a form to the page using
<?php bbp_get_template_part( 'form', 'topic' ); ?>
Just move that wherever you want. Probably into /kleo/bbpress/content-archive-forum.php or /kleo/bbpress/content-single-forum.php. The file names are self explanatory.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorPlease refer to this topic: https://archived.seventhqueen.com/forums/topic/size-of-featured-image-top-of-post
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
March 3, 2016 at 14:09 in reply to: Newsletter-like message from ONE member of community to ALL it’s following members on the community. #108248sharmstr
ModeratorThat wouldnt be a function of a theme, but it sounds like you need 2 things. 1 – A plugin or custom BP code that will allow members to send a mass message to other members. And 2 – You dont specifically say, but assuming you’re using Paid Membership Pro, you’ll need custom code to restrict it from non paying members.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
March 3, 2016 at 14:05 in reply to: The theme cant install complaining of Style.css not found #108246sharmstr
ModeratorYou’re probably trying to install the full zip file. You need to unpack the zip file you get from the download. Instructions are in the documentation. Refer to Step 1 here: https://archived.seventhqueen.com/documentation/kleo#installing-the-theme
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorRefer to this topic: https://archived.seventhqueen.com/forums/topic/add-kleo-meta-box-to-custom-post-type
Note that its quite old, but the concept is still the same. As a starting point, you’ll want to grab updated metabox code from /kleo/lib/metaboxes.php . Then wrap it in a custom function as described in the link above.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorRevslider is bundled, therefore you dont get a purchase code for it.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorBuddypress has a setting for that. No need to edit files: Settings > Buddypress > Settings: Group creation.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorBecause its a bundled plugin. You need to run the version of the plugin that comes with the theme.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorI’m assuming you mean the buddypress activity feed and not forum activity. If by “posts” you mean blog posts, then you can turn off Site Tracking in WP Admin > Setttings > Buddypress to keep new posts from showing up in the BP activity feed.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorDisable any plugins that didnt come with Kleo until you find the plugin causing it.
You can switch to full with profile pages in Theme Options > Buddypress
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorThis isnt a bug and its not a function of the theme. Its a function of bbpress and woocommerce:
https://codex.bbpress.org/getting-started/before-installing/bbpress-user-roles-and-capabilities/
https://docs.woothemes.com/document/roles-capabilities/Please ask on their forums.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
March 3, 2016 at 13:35 in reply to: How to create a support forum like the kleo support tickets. #108237sharmstr
ModeratorPlease refer to the sticky topic on the subject: https://archived.seventhqueen.com/forums/topic/what-plugin-are-you-using-to-show-ticket-status
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorThe list is sorted by date, so change the date of the stand. Make it older than the tablet.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
Moderator1 – After activation you can send them to their profile page by installing Peter Login Redirect plugin and setting the post-registration link to
http://yoursite.com/members/[variable]username[/variable]
2 – Install a SMTP plugin. More info: https://archived.seventhqueen.com/forums/topic/problems-with-contact-forms#post-71765
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
Moderator@colab665: http://www.wpbeginner.com/wp-tutorials/fix-wordpress-memory-exhausted-error-increase-php-memory/
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorIts that like us on FB thing you have. Once I closed that and reloaded the page, the fb button on the login modal worked.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorYep. How about the caching question?
Respond privately with credentials and I’ll have a look around.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorCouple of things to check
– Do you have some sort of caching enabled that could be causing this?
– Do you have a custom menu assigned to your home page?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
Attachments:
You must be logged in to view attached files.sharmstr
ModeratorThats not clear from your images. I dont see them in your image of the logged in user. In any case, you need to use the kleo menu items. See attached.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
Attachments:
You must be logged in to view attached files. -
AuthorPosts