Forum Replies Created

Viewing 40 posts - 11,001 through 11,040 (of 11,328 total)
  • Author
  • in reply to: Live Notification & CPU uSage #26472
     sharmstr
    Moderator

    I had the same issue with the site logging me off often when it was on GoDadddy servers. I was never able to figure it out. Its not happening on Siteground servers. Does it seem to be a session timeout issue or does it happen when you’re navigating around the site. I had another issue where my site was configured like ‘http://domain.com’, but some of my menu items where set to ‘http://www.domain.com’ which would log me out when clicking on them.

    I have a 04 Sportster, 2010 Triumph and I bought a 1968 BSA Lightning yesterday. Back in my younger days I had a Ninja.

    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: disable featured image auto display in custom post type #26465
     sharmstr
    Moderator

    Awesome.

    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 Notification & CPU uSage #26459
     sharmstr
    Moderator

    Glad you sorted it. I was trying to wrap my head around it during a really long motorcycle ride today.

    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: Customize Emails #26451
     sharmstr
    Moderator

    As far as I can tell, Kleo doesn’t touch any of those so google solutions for what you want to customize.

    http://jesin.tk/custom-buddypress-activation-email/

    http://wordpress.stackexchange.com/questions/106334/editing-password-reset-e-mail

    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: Add kleo meta box to custom post type #26450
     sharmstr
    Moderator

    It just figures that 5 minutes after I posted this question, I figured it out. For anyone else wanting to do this.

    In /kleo/lib/metaboxes.php add your custom post type to the ‘pages’ key in the $meta_boxes array starting on line 19.

    Kleo team: How can I do this so its upgrade safe?

    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: Display Links in Forums for Not Logged In user #26428
     sharmstr
    Moderator

    Thanks abe. I couldnt debug it myself since I dont allow access to any part of my site without being logged in.

    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 Notification & CPU uSage #26397
     sharmstr
    Moderator

    I woke up in the middle of the night thinking about this very subject. I think the thing to do is use something like google analytics to determine the average time users stay on a page before navigating to another page. If users aren’t spending a lot of time on each page, then why even enabled the “live” part of the notification? The notification bubble will update the count on every page load anyways.

    It seems the trick is to determine what you think is an acceptable time for a user to wait to be notified. Lets just say that’s 1 minute. If your analytics tells you that the average time is 1:15 seconds, then disable it. If its 5 minutes, then set the interval to 1 minute.

    To take this a bit further, I’m probably going to write some code to only turn on live notifications for pages that people stay on longer than the average. The activity feed is one I can think of. I don’t know… I need to dig into this a bit more to see if it makes 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: disable featured image auto display in custom post type #26394
     sharmstr
    Moderator

    I haven’t tested this, but I think you can copy /kleo/content.php to your child theme, then edit line 36

    COPY CODE
     <?php if ( kleo_postmedia_enabled() && kleo_get_post_thumbnail() != '' ) : ?> 

    to

    COPY CODE
     <?php if ( kleo_postmedia_enabled() && kleo_get_post_thumbnail() != '' && get_post_type() != 'mycred_rank' ) : ?> 

    Let me know if that works or not.

    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 Notification & CPU uSage #26392
     sharmstr
    Moderator

    wp-admin -> theme options -> buddypress -> live notification interval

    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: Display Links in Forums for Not Logged In user #26355
     sharmstr
    Moderator

    Wait. Isn’t that supposed to happen with the default bbpress install? Looks like kleo turns that off?

    http://bbpress.org/forums/topic/bbpress-should-offer-to-login-in-forum/

    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: Display Links in Forums for Not Logged In user #26353
     sharmstr
    Moderator

    I just realized what you REALLY want to do. Sorry. Give me a sec to find an answer to 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: Display Links in Forums for Not Logged In user #26352
     sharmstr
    Moderator

    There’s probably several ways to achieve this. One way is to copy the /kleo/page-parts/general-before-wrap.php into your child theme and put the following just before the wrap-content div

    COPY CODE
    
    <?php if (is_bbpress() && is_user_logged_in()) echo 'You should <a href="' . wp_login_url() . '" title="Login">login</a>'; ?>
    

    This put a message at the top of every bbpress page if the user isn’t logged in.

    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: KLEO – Features Requests #26345
     sharmstr
    Moderator

    @PeterB

    The menu items were brought in with the latest major release of BuddyPress. I wish the BP developers would have coded it so it automatically shows up.

    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: Header section (PROBLEM) #26343
     sharmstr
    Moderator

    Its actually low on my list. I doubt many people will be scrolling half way down then hit f5. I do it since I’m developing. I could be wrong. Your first issue is way more important.

    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: Header section (PROBLEM) #26340
     sharmstr
    Moderator

    I think I’ve seen it once in Chrome… maybe. I’ll keep an eye out. I’m chasing a similar Chrome issue but with the title bar. If you refresh a page when the title bar is already hidden, when you scroll back up, the title bar is tiny.

    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: KLEO – Features Requests #26339
     sharmstr
    Moderator

    @PeterB

    You can add login/registration to My Account already. Go to menus, make sure you have ‘Buddypress’ enabled in Screen Options, then add Log In and Register to your menu. It will only display when a user isnt logged in.

    For my site, authors get an addition menu item called “New Post”. I accomplished that by adding the following to my functions.php file.

    COPY CODE
    
    
    /**
    *  Add new post menu item for authors
    **/
    if (current_user_can( 'edit_posts' )) {
    	add_filter('wp_nav_menu_items','add_manage_posts_to_custom_menu', 2, 2);
    	
    	function add_manage_posts_to_custom_menu( $items, $args ) {
    		return $items.'<li id="menu-item-post" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-post"><a title="Add Post" href="/wp-admin/edit.php">New Post</a></li>';
    		return $items;
    	
    	}
    }
    
    
    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: Filter out Sweetdate results in Kleo forum search #26228
     sharmstr
    Moderator

    The new search works great! Thank you.

    … now, how about adding it to Kleo so we can use it on our sites? You knew that question was coming… 🙂

    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 for buddypress activity replies #26218
     sharmstr
    Moderator

    Here’s what I’m seeing. For activity notifications, if I click on mark as read in the live menu then it doesn’t delete it. I can even go to the notification page and mark it read/unread over and over and it never deletes it. It only deletes it if I follow the link to the activity. It also does this for comments made in rtMedia’s lightbox. It doesn’t not delete forum reply notifications.

    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: rtMedia gallery issues #26212
     sharmstr
    Moderator

    I’ve played around with the gallery and the image display in the member media tab. I finally got it looking decent. Part of the problem was my configuration. I didnt have cropping turned on for thumbnails. Out of the box, rtMedia does a terrible job of laying out uncropped images. Instead of digging into their code to fix that, I turned on cropping and regenerated the thumbnails.

    Thanks for the help!

    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: rtMedia gallery issues #26210
     sharmstr
    Moderator

    1 – Oh. I think I understand what you’re saying. So, if I make that change, then I wouldn’t be able to customize media-gallery-item.php if I wanted to. Hmm. So only solution is to copy both files to the child theme, even if I only want to modify media-gallery.php. Right? If that’s the case though, couldn’t you just check for the existence of media-gallery-item.php in the child theme and if it isn’t there pull from the parent theme?

    2 – The css doesnt work because it for h4 titles within a buddypress div. The rtMedia gallery isnt contained in any buddypress layout. This works

    COPY CODE
    
    .rtmedia-list.masonry .rtmedia-item-title h4 {
        font-size: inherit !important;
        color: #fff !important;
    }
    

    3 – Look at your screenshot. The styling doesnt match other parts of Kleo. Compare it to the media in a members profile. If you could get it to match that, it would be a lot better. But, I’m going to play around with it a bit more. I report back later.

    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 for buddypress activity replies #26206
     sharmstr
    Moderator

    @abe. That’s not the case on our installations. Its definitely deleting them.

    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

    Anytime.

    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: Filter out Sweetdate results in Kleo forum search #26195
     sharmstr
    Moderator

    Thank you. And yes, that’s what I’ve been doing lately. I love that plugin by the way. While not perfect, its very useful.

    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: rtMedia Pro albums permalink structure bug #26193
     sharmstr
    Moderator
    This reply has been set as private.
    in reply to: rtMedia gallery issues #26190
     sharmstr
    Moderator

    1 – I should have been more specific. Is in the kelo code. Just add get_template_directory to Kleo’s rtmedia/media/media-gallery.php and it will fixed.

    2 & 3. Let me play around with that again today and I’ll report back.

    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 for buddypress activity replies #26111
     sharmstr
    Moderator

    I’m no expert. I’m a total hack who utilizes google for every problem I need a solution for. I appreciate the compliment though 🙂

    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 for buddypress activity replies #26106
     sharmstr
    Moderator

    I noticed this as well. I’m pretty sure that Kleo is doing it. I didnt bother tracking it down because its a low priority for me, and, if I’m being honest, I kinda like it that way 🙂

    Anyhow, glad you sorted 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: Live notifications for buddypress activity replies #26063
     sharmstr
    Moderator

    One other question. Does the notification count go up after a page refresh? In other words, have you verified that its just the ‘live’ part of it that’s not working?

    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 for buddypress activity replies #26060
     sharmstr
    Moderator

    Here’s a firebug screenshot of what’s happening as far as the ajax request is concerned.

    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: Live notifications for buddypress activity replies #26056
     sharmstr
    Moderator

    I just went through it and I dont have any left over code. I stepped through the Kleo code and they are using ‘bp_notifications_get_notifications_for_user’ to get the notifications. Basically they are using the built in BuddyPress query to retrieve the new notifications. The BuddyPress code doesnt care what component created the notification, it just grabs any notification marked as ‘new’.

    Have you verified that the activity notifier plugin is working correctly? Does it show up in the members unread notification table? yoursite.com/members/membername/notifications/

    You should also see it in the bp_notifications table. The component_name is ac_notifier. 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: Live notifications for buddypress activity replies #26043
     sharmstr
    Moderator

    Works for me. Though I originally wrote the plugin (I’m sure the KLEO team has re-written it) so I might have some of my code left over in my functions.php file. I’ll take a look and report back.

    I will say, that when I wrote it, all the script did was look for any new notifications in the db. It doesnt care what type of notification it is. By default, BuddyPress does not notify on activity comments (or a tleast it didnt before) and that’s why you need to install the activity comment notifier plugin.

    I did notice that the notification says “<name> commented on your post” and not “activity”. Thought maybe its always said that, even when I was using my version of the plugin. I can’t remember.

    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 for buddypress activity replies #26015
     sharmstr
    Moderator

    I use this http://buddydev.com/plugins/buddypress-activity-comment-notifier/

    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: Set homepage in KLEO, and home page title for blog #25966
     sharmstr
    Moderator

    You can create a blog page, change your settings to static page and point it to the blog page. Then you can edit/change/style it all you want using the page editor.

    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: No posts on blog page #25965
     sharmstr
    Moderator

    Make sure you have it set up correctly in your config. Go to wp admin -> apperance -> customize. Then click on “Static Front Page” in the menu. Make sure you “Posts page” is your blog 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: Undefined variable style #25928
     sharmstr
    Moderator

    @abe thank you 🙂

    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: Undefined variable style #25839
     sharmstr
    Moderator

    Hmm. Interesting. And you’re on Kleo 1.6.3 I assume. I not getting that error when I turn debugging on.

    I thought maybe you weren’t running VC 4.3.2 because the lines of code in vc_column.php that set the $style variable are

    COPY CODE
    
    if (version_compare(WPB_VC_VERSION, '4.3.2') >= 0) {
        $style = $this->buildStyle( $font_color );
    }
    
    

    Guess we’ll have to wait for Abe and the boys to figure this out. Sorry.

    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: What plugin are you using to show ticket status? #25832
     sharmstr
    Moderator

    http://wordpress.org/plugins/bbpress-vip-support-plugin/

    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: Undefined variable style #25830
     sharmstr
    Moderator

    That style variable is set if you have version 4.3.2 of visual composer. If not, the variable isn’t set and you’ll get that undefined error. Check your visual composer version and update if you dont have 4.3.2. Then the error should go away.

    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: How to change/background of the active in Main Navbar #25817
     sharmstr
    Moderator

    Woman. thank you. 🙂

    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: How to change/background of the active in Main Navbar #25815
     sharmstr
    Moderator

    “How about adjusting the height of that navbar?” You could by screwing around with the .navbar-collapse css rule, but I’m not helping with 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

Viewing 40 posts - 11,001 through 11,040 (of 11,328 total)

Log in with your credentials

Forgot your details?