Forum Replies Created

Viewing 40 posts - 10,881 through 10,920 (of 11,328 total)
  • Author
  • in reply to: Profile Cover Plugin #27942
     sharmstr
    Moderator

    @woekerzee I dont have an ETA. Its not high on my priority list.

    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 Members from Menu Search #27885
     sharmstr
    Moderator

    +1

    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: Show Posts In Profile Hack #27873
     sharmstr
    Moderator

    I’m confused. The plugin shows all posts published by the member that your viewing. The author attribute is needed in order to do this. If you want all posts by all users basically you’re wanting to show the sites blog in every users profile. Is that what you’re trying to do? If so, then remove the author attribute on line 101

    COPY CODE
    
    echo do_shortcode('[bp-posts-in-profile category="'.$category.'" author="'.bp_core_get_username($bp->displayed_user->id).'"]'); // Displays a shortcode output.
    
    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: Show Posts In Profile Hack #27869
     sharmstr
    Moderator

    The entire plugin is based off of Display Posts Shortcode: http://www.billerickson.net/shortcode-to-display-posts/

    Here is a list of all possible attributes. I’m only sending ‘category’ and ‘author’, plus a custom one to load the ‘page-parts/post-content-masonry’ template.

    COPY CODE
    
    
    $atts = shortcode_atts( array(
    		'title'              => '',
    		'author'              => '',
    		'category'            => '',
    		'date_format'         => '(n/j/Y)',
    		'display_posts_off'   => false,
    		'exclude_current'     => false,
    		'id'                  => false,
    		'ignore_sticky_posts' => false,
    		'image_size'          => false,
    		'include_title'       => true,
    		'include_author'      => false,
    		'include_content'     => false,
    		'include_date'        => false,
    		'include_excerpt'     => false,
    		'meta_key'            => '',
    		'meta_value'          => '',
    		'no_posts_message'    => '',
    		'offset'              => 0,
    		'order'               => 'DESC',
    		'orderby'             => 'date',
    		'post_parent'         => false,
    		'post_status'         => 'publish',
    		'post_type'           => 'post',
    		'posts_per_page'      => '10',
    		'tag'                 => '',
    		'tax_operator'        => 'IN',
    		'tax_term'            => false,
    		'taxonomy'            => false,
    		'wrapper'             => 'ul',
    		'wrapper_class'       => 'display-posts-listing',
    		'wrapper_id'          => false,
    		'template'			  => false	
    	), $atts, 'display-posts' );
    
    

    Is it only showing a specific number of posts? Or the masonry auto load isnt working? Or something else?

    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: Extended Search in User Profiles #27868
     sharmstr
    Moderator

    I dont. But I’ve never looked into it. Based on the short time I’ve spent with bp profile search, it seems to work well. Just needs some tweaking. I still have it installed, so if you need help with the tweaks, let me know.

    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: Username / Password realtime validation #27867
     sharmstr
    Moderator

    I found one that works pretty well for the backend. If no one can suggest anything better, I’ll make it work on the frontend.

    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: Can't get to submit with long topic suggestion list #27866
     sharmstr
    Moderator

    It actually happens with anything that makes the page bigger. Making this content box bigger. Adding another attachment. So, its not an issue with the suggestion plugin, turns out. I think if this page had a bigger footer we wouldn’t even notice. (not suggesting that as a fix.)

    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: Extended Search in User Profiles #27854
     sharmstr
    Moderator

    Okay. I understand now. I just installed the plugin to see what it looks like. The main thing I see is that the form title (Advanced Search by default) is on the same line as the first form field. To fix that add this to your child style.css

    COPY CODE
    
    
    .standard-form {
    clear: left;
    }
    
    

    The issue with this is that the ‘standard-form’ class is used all over the place by Buddypress, so styling it in this way might screw other sections up. The author of the plugin has not provided any way of isolating the their form through css. If you choose to use this plugin, I’d ask them to add a div around the form so instead of using .standard-form to fix the alignment issue, you can use their div id or class.

    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: Extended Search in User Profiles #27852
     sharmstr
    Moderator

    Its already does that, no? I have select fields for things like timezone and star sign. I can use the built in members search box to find members who are Scorpios by typing in Scorpio. Maybe I’m not understanding exactly what you want to do.

    Are you saying that you want to be able to type in the gender AND location? You put “or” so I’m not sure if that’s what you want 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: Username / Password realtime validation #27850
     sharmstr
    Moderator

    *Anyone (not anyhow)

    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: Responsive buttons? #27848
     sharmstr
    Moderator

    I came up with this. Not perfect but much better. I added a new class “btn-lg-rev-slider” to the button shortcode in Rev Slider

    COPY CODE
    
    @media (max-width: 768px) {
    	.btn-lg-rev-slider {
    		border-radius: 3px;
        		font-size: 80%;
        		line-height: 1;
        		padding: 3px 5px !important;
    		margin-left: -20px;
      	}
    }
    
    @media (max-width: 1200px) and (min-width: 769px)  {
    	.btn-lg-rev-slider {
        		border-radius: 3px;
        		font-size: 80%;
        		line-height: 1;
        		padding: 15px 10px !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: Profile Cover Plugin #27818
     sharmstr
    Moderator

    @kieran – can’t get into your site to check it out.

    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: Profile Cover Plugin #27817
     sharmstr
    Moderator

    @kieran – Got your response notification.

    FYI json api is off and featured is on default 100 x 100 so that may be the issue

    LOL That’s definately the issue for “When cover was manually uploaded the width/height was 100px and centered behind the main user avatar.” Come on man. Read my instructions up top… “rtMedia has a setting for Featured Image size. You need to set that. If you stick with the 300px height, make sure the Featured Image size is also 300px.” πŸ™‚

    I’m heading over to your site now.

    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: Hiding registration page sections #27815
     sharmstr
    Moderator

    @majestic I edited /kleo/buddypress.php (the template for all buddypress pages) to check for the custom fields set on the register page, but only if you’re on the register page. Its not fully tested, but appears to be working fine. I’ve attached the code. Just save it as /kleo-child/buddypress.php. Let me know if you find any issues or it broke other parts of the site. Thanks!

    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: Profile Cover Plugin #27810
     sharmstr
    Moderator

    @Majestic: Sure πŸ™‚

    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: Profile Cover Plugin #27804
     sharmstr
    Moderator

    @kieran – I cant see private replies. I’m just a user on this forum like 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: Profile Cover Plugin #27802
     sharmstr
    Moderator

    What’s your featured image size set to in rtMedia -> image sizes? Do you have “enable json api” turned on in rtMedia -> Other Settings? Can I have a link to your site so I can see what’s happening?

    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: Hiding registration page sections #27801
     sharmstr
    Moderator

    @abe Help.

    Please, can you guys make is possible to manage the registration page from within the admin? Here’s some reasons why.

    – Easier for users to control look and feel.

    – Hiding title, menus and footer via css will still output in the source code. I have a private site and I dont want any of that information available in any way shape or form unless someone is logged in. Adding a plugin to control if that information is displayed only if a user is logged in seems ridiculous since you almost have that capability anyways with the Theme General Setting in the page editor.

    – Because I’m asking nicely πŸ™‚

    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 can i show the number of members for groups ?? #27799
     sharmstr
    Moderator

    Sorry, I dont what you mean by limited. Is that from a plugin that you’re using?

    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: Show Posts In Profile Hack #27795
     sharmstr
    Moderator

    Oh. and I just remembered why I used ‘user_level’ instead of ‘user_can’ which is normally used. I wanted it to display only for authors specifically. Not for admins, or editors and such.

    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: Profile Cover Plugin #27793
     sharmstr
    Moderator

    @splendor moving post plugin question over to that topic https://archived.seventhqueen.com/forums/topic/show-posts-in-profile-hack

    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: Show Posts In Profile Hack #27792
     sharmstr
    Moderator

    @sharmstr, I would to ask a questions about your mypost plugin. Can you please tell me which parts I need to comment for making it work not only for authors, for all levels?


    @splendor

    line 33. this bit

    COPY CODE
    
    
    if (get_the_author_meta( 'user_level', $bp->displayed_user->id ) == 2) {
    
    

    If you want to show for all user levels, you can remove lines 32, 33 and 43.

    If I remember correctly, the code on gitHub will display the post in a mansory grid, but it doen’t apply all of the kleo styling like on a blog page. Let me know if that’s the case and I’ll figure out how I did it and update it.

    Actually, I was planing on updating the entire plugin soon, maybe I’ll do that now. I can probably add an admin section to allow admins to choose the minimum user level.

    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 can i show the number of members for groups ?? #27791
     sharmstr
    Moderator

    The member count is already shown in the blue bubble near the avatar. If you want to show it below the group description as well, you’ll have to add the following to the members loop in /kleo/buddypress/groups/groups-loop.php below ‘bp_group_description_exerpt’.

    COPY CODE
    
    
    <div class="item-count"><?php echo preg_replace('/\D/', '', bp_get_group_member_count()) . " members";  ?> </div>
    
    
    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 #27689
     sharmstr
    Moderator

    Any ideas?

    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: WordPress 4 #27688
     sharmstr
    Moderator

    I haven’t tested everything yet, but it seems to be running fine on my site. It didnt blow 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: Changing Font Color and Icon Color in Top Menu #27675
     sharmstr
    Moderator

    LOL. You guys are funny.

    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: Boxed layout not working #27667
     sharmstr
    Moderator

    1920 pixels πŸ™‚ The max-width of the box is set to 1440px. You wont see the outsides of the container with anything less than 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: Animated Numbers with Comma causes issue #27662
     sharmstr
    Moderator
    COPY CODE
    
    
    [kleo_animate_numbers animation="animate-when-almost-visible" timer="2000"]4[/kleo_animate_numbers].[kleo_animate_numbers animation="animate-when-almost-visible" timer="2000"]293[/kleo_animate_numbers]
    
    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: Animated Numbers with Comma causes issue #27661
     sharmstr
    Moderator

    You need < and > not [ and ]

    COPY CODE
    
    
    stuff inside pre
    
    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: Buttons turned into plain text links #27659
     sharmstr
    Moderator

    I’m not sure if you can. The shortcode works, so I think its a matter of contacting yoast and telling them not to strip the styles.

    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: Animated Numbers with Comma causes issue #27655
     sharmstr
    Moderator

    You can use ‘pre’ tags

    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: Changing Font Color and Icon Color in Top Menu #27654
     sharmstr
    Moderator

    Just to clear things up. I’m not for hire. I sent @secrentenergy an email so I could get access to his site. @majestic, I’ll send you an email as well so we can chat off-line. If you need something simple I’ll be more than happy to help for free. I’m too much of a flake (ADHD) to offer the level of service that is expected if I charge you for my time πŸ™‚

    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: Buttons turned into plain text links #27634
     sharmstr
    Moderator

    Whatever is overwriting your outbound links to add the tracking code is removing the ‘btn’ and ‘btn-defualt’ classes from the links. I manually added it back to “Volunteer”. 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: Background Won't Leave #27633
     sharmstr
    Moderator

    I’m not sure. I dont use backgrounds so I haven’t played with them enough.

    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: Profile Cover Plugin #27627
     sharmstr
    Moderator

    Ah. Yeah, that image was only an example of what I as talking about. You cant set it with the 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: Profile Cover Plugin #27623
     sharmstr
    Moderator

    Sorry, not on the col-sm-12 div. The item-header div.

    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: Profile Cover Plugin #27621
     sharmstr
    Moderator

    I was setting the background on the ‘col-sm-12’ div.

    COPY CODE
    
    
    #buddypress div#item-header {
       background: url(xxxx);
    }
    
    
    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: Changing Font Color and Icon Color in Top Menu #27599
     sharmstr
    Moderator

    Would a ‘goto girl’ be okay? πŸ™‚

    I’ll email you right now.

    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: Profile Cover Plugin #27596
     sharmstr
    Moderator

    Also I believe that is would be better to have the profile cover goes down and stop before the navigation icon or only to where the profile picture ends. That will save space and also what I know of, many people don’t like to scroll, they want everything in near distance.

    You can adjust the height in the css to stop below the profile picture by using the css I provided above. The problem with having it go to just above the nav menu is the text color. You have no idea what color the cover image will be, so setting the text so it legible for every possible image color is impossible. You’d have to perhaps but a background color on those text containers (user-nicename, activity, last-update) See screenshot.

    Again I wrote this for my site and thought I’d share. Feel free to change it to anything you want, but I dont have a ton of time to devote to customizing it for everyone’s taste. I need to get my site launched πŸ™‚

    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: Background Won't Leave #27592
     sharmstr
    Moderator

    Sorry for the confusion. I mean that I was able to add/remove at will on my site and only mentioned it to say that I didnt think it was a Kleo bug.

    I just visited your site and the background is gone now. Did you just add another background image? Or is your issue solved now? 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.
Viewing 40 posts - 10,881 through 10,920 (of 11,328 total)

Log in with your credentials

Forgot your details?