Forum Replies Created

Viewing 40 posts - 6,481 through 6,520 (of 11,328 total)
  • Author
  • in reply to: "View" Link Under User Quote Not Working #61412
     sharmstr
    Moderator

    View is built into the message and there is no class on it so its a bit difficult to remove it without removing the message completely IF the message contains a url.

    With that said, you can try this in your child css (or quick css)

    COPY CODE
    
    #item-header-content #latest-update a {
    display: none;
    }
    

    So, if the message is just text, only View will be removed. But if its a url, all of it will be removed. See attached for an example of what I’m talking about.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This 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.
    in reply to: Different Membership requiring Page #61411
     sharmstr
    Moderator

    Hold off until Kleo 3.0. Go Pricing (http://codecanyon.net/item/go-responsive-pricing-compare-tables-for-wp/3725820) will be included which will allow you to build pricing table shortcodes that you’ll be able to enter into WP Admin > Memberships > Advanced Settings > Messages

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Widgetised Sidebar & Buddypress Elements #61407
     sharmstr
    Moderator

    Nope. My site is multisite. Kleo 3.0 isnt out yet.

    Look for plugin conflicts that might be overriding the css. Or, if you have it, clear your server cache and/or CDN.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Remove Upgrade Account Option #61406
     sharmstr
    Moderator

    Try this in your childs functions.php file

    COPY CODE
    
    function kleo_membership_info()
    {
        global $membership_levels, $current_user;
        if (!$membership_levels) {
            return;
        }
    
        $levels_arr = array('2','3','4');
        if (bp_is_my_profile()) {
            if ( isset($current_user->membership_level) && in_array($current_user->membership_level->ID, $levels_arr) ) {
                echo '<a><span class="label radius pmpro_label">' . $current_user->membership_level->name . '</span></a>';
            } else {
                echo '<a><span class="label radius pmpro_label">' . __("Upgrade account", 'kleo_framework') . '</span></a>';
            }
        }
    }
    

    Change the $levels_arr to the IDs of the levels you do NOT want to show ‘upgrade’ to. Those levels will display the level name instead of Upgrade Account.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Login – Redirect #61400
     sharmstr
    Moderator

    Sorry, I dont know.

    As a test, I used the code here: https://codex.wordpress.org/Plugin_API/Filter_Reference/login_redirect on the Kleo 3.0 site I have and it worked fine. Then I added it to my Kleo 2.4.3 site and it also worked fine. It obviously doesnt have all of your logic, but the main difference I see is how the redirect is called. You’re using wp_redirect() which I dont think you have to. Since you’re filtering the ‘login_redirect’ filter, the redirect will happen automatically. Change it to return $redirect_to and remove the exit. Also, make sure you have Default WP redirect set in Theme Options > Misc. Let me know if that works.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Widgetised Sidebar & Buddypress Elements #61395
     sharmstr
    Moderator

    Strange. Works fine on my Kleo 2.4.3 and Kleo 3 test site. See attached.

    What version of VC do you have installed?

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This 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.
    in reply to: Change the search tab color #61379
     sharmstr
    Moderator

    Please search before posting: https://archived.seventhqueen.com/forums/topic/ajax-search-box-color#post-60916

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Live Notifications in menu? #61377
     sharmstr
    Moderator

    Your site is throwing insufficient resources errors.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This 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.
    in reply to: Login – Redirect #61375
     sharmstr
    Moderator

    I should mention, the new redirect isnt just a box that allows you to specify a location. The actual logic has been altered quite a bit.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Login – Redirect #61374
     sharmstr
    Moderator

    Give it a try in Kleo 3.0 when it comes out. The login functionality that Kleo overrides has been made a bit more friendly. It will probably work then. If not, let us know. I just dont see a point in changing a bunch of code on your site when Kleo 3 is right around the corner.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

     sharmstr
    Moderator

    Dont know. Try googling.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Live Notifications in menu? #61371
     sharmstr
    Moderator

    credentials dont work.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Sponsored Post #61352
     sharmstr
    Moderator

    There’s no built in way with Kleo. You’d have to find a plugin that will inject them into the results.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Shortcode on BBpress forum? #61351
     sharmstr
    Moderator

    That depends on where exactly you want it displayed. To put it on top of the main content, you can use this in your childs functions.php file

    COPY CODE
    
    function add_to_forums() {
    	if ( ( function_exists('is_bbpress') && is_bbpress() ) && ( function_exists('is_buddypress') && !is_buddypress() ) ) {
    			do_shortcode('[yourshortcode]');
    	}
    }
    add_action("kleo_before_main_content", "add_to_forums");
    
    

    If you want it elsewhere, take a look in the template files located in /kleo/page-parts; specifically the before wrap, title and header files. Look for do_action(‘xxxx’) and change “kleo_before_main_content” in my example to whatever xxxx is.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Recommended Hosting #61349
     sharmstr
    Moderator

    I’m really happy with Site Ground. I’m the US.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Membership #61346
     sharmstr
    Moderator

    Okay. You didnt mention post grid or portfolios in that explanation. Is the accessible page a post grid page that has a box for every course that will show a course description and the instructor? Or a box for every instructor that has a list of the course they teach? Is the accessible page a portfolio page?

    I’ll ask again, is “projects” a custom post type?

    I think no matter what, you’ll have to use a custom excerpt to display information like a course description, since PMPro has a switch that will allow you to show an excerpt from protected content. I’m saying ‘custom’ excerpt because you can control how much info is displayed that way. Yes, that means having partial duplicate content, but at least its coming from one location (i.e. post/project) so its an easy copy paste.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Bussypress blank page after login #61314
     sharmstr
    Moderator

    Yep. There’s no point in showing a login link if you’re already logged in 🙂 You’ll find the same with the register link and the register page.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Width of Slider, Composer, and Site #61313
     sharmstr
    Moderator

    Yep. Its look okay now. Great.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Buddypress titles not effected by Theme options #61312
     sharmstr
    Moderator

    Nah. Its all good. It actually got a new option into the theme 🙂

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Width of Slider, Composer, and Site #61309
     sharmstr
    Moderator

    Looks like a bootstrap.css conflict with your wd shortcode plugin. Its screwing everything up. I cant confirm because your site is hanging when I try to login in.

    For future reference, its common practice to disable all plugins, then clear your cache and see if you have the issue. If you dont, then enable the plugins one by one to find the conflict.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Bussypress blank page after login #61302
     sharmstr
    Moderator

    I think its just a matter of you not know whats what yet. The kleo login logs you into the site. There is no separate login for buddypress and wordpress. Buddypress adds functionality to WordPress just like any other plugin.

    There’s no need for me to login now. Just remove your login link that you created in the menu and add the kleo one. Your members can use that (which will launch to Kleo modal login window) or if they are on a part of your site that has the login in the sidebar, they can use that. Simple. No need to build a page or direct them to /wp-login.php.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Buddypress notifications not working #61301
     sharmstr
    Moderator

    Again, that’s not Kleo. If you’re not getting notifications, it could be a number of things but nothing Kleo related. Its all BP and WP and SMTP.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Buddypress notifications not working #61296
     sharmstr
    Moderator

    Okay, but as I’ve said, the buddypress developers never wrote in screen notifications for activity comments. Only email notifications. That’s not Kleo’s fault.

    The only thing that Kleo has done with notifications is added Live Notifications. What it does is checks the notification table in the db for any notifications for the user and shows the notifications in the menu. Since buddypress doesnt log comments in the notification table there’s no way for Kleo to notify you of it.

    Make sense?

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Bussypress blank page after login #61290
     sharmstr
    Moderator

    That’s not a standard login page so I know nothing about it. Either direct them to http://dexterlist.com/wp-login.php or use the Kleo login modal. Appearance > Menu > Kleo > Login

    See attached.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This 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.
    in reply to: Buddypress titles not effected by Theme options #61289
     sharmstr
    Moderator

    Okay, I’ve submitted the new code to the developers. Lets see if it gets accepted 🙂

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Bussypress blank page after login #61287
     sharmstr
    Moderator

    That’s how you configure it. If you dont want to give me access then look for errors in the console or plugin conflicts.

    How exactly are they logging in? Via wp-login.php or the Kleo modal?

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Buddypress notifications not working #61285
     sharmstr
    Moderator

    What options are you talking about?

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Bussypress blank page after login #61281
     sharmstr
    Moderator

    Respond privately with credentials

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Buddypress titles not effected by Theme options #61278
     sharmstr
    Moderator

    Now that Kleo 3.0 has been pushed back a bit more because of BP 2.3 perhaps I can squeeze in a quick fix that will put a “site default” option for bp pages. That might make it a bit more simple to understand for folks.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Buddypress titles not effected by Theme options #61277
     sharmstr
    Moderator

    Theme Options > Buddypress: Page title location. LOL

    I’m not really laughing at you. Its confusing unless you understand that BP does its own magic with pages. That’s why a lot of settings are separate from Blog settings.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Bussypress blank page after login #61273
     sharmstr
    Moderator

    Theme options > Misc: Loggin redirect.

    Or install Peters Login Redirect plugin for more options.

    You’ll be able to specify the redirect page in Kleo 3.0

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Buddypress notifications not working #61271
     sharmstr
    Moderator

    Correct. They do not. They never have. Search the bp forums. There’s a plugin for that but not sure if its still being maintained.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: After latest buddypress update-404 error #61268
     sharmstr
    Moderator

    Looks fine to me. btw – 404 errors usually happen because permalinks get corrupt during upgrades/changes. resaving usually fixes it.

    also, not a good idea to update plugins just becasue you can. The current version of kleo isnt fully compatible with the new bp.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: 3.0 with Woo and BP #61267
     sharmstr
    Moderator

    Dont know. Only 7th queen knows that.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Search form on video background #61266
     sharmstr
    Moderator

    That’s not a bug. That’s how its supposed to work. You can change that. Search is your friend

    COPY CODE
    
    .bg-full-video .container, .bg-full-video .container-full {
    pointer-events: auto;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Membership #61263
     sharmstr
    Moderator

    I still dont understand what you mean by protect a project category. Meaning those projects (I’m guessing this is a CPT you have) dont show up in the list? Is the portfolio used for the teachers and a list of their courses? Are the courses the pages that are protected?

    Sorry for being stupid here, but I really have no idea what you’re trying to do. LOL Maybe some pictures or links or access.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Less space below logo? #61252
     sharmstr
    Moderator

    Looks like uber menu is doing it.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: WooCommerce Product Categories without Results #61249
     sharmstr
    Moderator

    I gave you a link previously that explains how to update the plugins. You have to install them from the kleo download.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Full width option for group #61245
     sharmstr
    Moderator

    This is available in Kleo 3.0

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Default profile cover image #61244
     sharmstr
    Moderator

    @max – You didnt miss the point. But what you missed is that that wasn’t available until BP Cover Photo 1.1 which was only released 6 days ago. In other words, this has been implemented and should be closed. 🙂

    https://wordpress.org/plugins/buddypress-cover-photo/changelog/

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

Viewing 40 posts - 6,481 through 6,520 (of 11,328 total)

Log in with your credentials

Forgot your details?