Forum Replies Created

Viewing 40 posts - 8,441 through 8,480 (of 11,328 total)
  • Author
  • in reply to: Style in the photo users #48108
     sharmstr
    Moderator

    The avatars shrink and expand based on the width of the container and the number of avatars. On new sites without many users (avatars) to display, they are going to be large and pixelated. Once you have around 10 of them, they will look fine. http://seventhqueen.com/themes/kleo/home-default/

    If you’re only going to show a few avatars, then break the row up into 3 columns and put them in the center column. That will make their container smaller, therefore the avatars will be smaller.

    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 Buddypress cover upload size limit to 1 MB #48001
     sharmstr
    Moderator

    @radu, Abe so kindly put a filter you can tap into

    COPY CODE
    
    
    add_filter('bpcp_max_upload_size', 'set_cover_upload_size');
    function set_cover_upload_size() {
    	return '1000';
    }
    
    
    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 menu visability #47993
     sharmstr
    Moderator

    If you cant find a pluing (I couldnt) then you’ll have to custom code something. More than likely you’ll have to use bp_core_remove_nav_item() and ! is_user_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: Visual composer profile editing #47992
     sharmstr
    Moderator

    You cant. Profiles are handled via Buddypress templates. https://codex.buddypress.org/themes/theme-compatibility-1-7/template-hierarchy/

    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 reduce likes to one per IP #47987
     sharmstr
    Moderator

    I doubt this will be the final code, but you can try this.

    Go into theme options > misc and turn on dev mode. Then open up /kleo/assets/js/app.js. Around line 1081 you’ll see the likes function. After if(link.hasClass(‘liked’)) return false; add

    COPY CODE
    
    link.addClass('liked');
    
    
    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 reduce likes to one per IP #47976
     sharmstr
    Moderator

    Its not really a bug. I doubt that 7th Queen anticipated people going crazy and clicking it multiple times quickly before the code had a chance to finish execution. I’ll assign this to abe to see if they can change the order of the code so that it disables further clicks soon in the code. 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

    in reply to: about facebook accout #47973
     sharmstr
    Moderator

    You dont need to do that. Just go to wp admin > theme options > Misc. Turn on Facebook and enter the app id you get from facebook when you set up the 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: Help please (RT Media Code) #47972
     sharmstr
    Moderator

    You’re welcome.

    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: update of theme plugins still by FTP? #47921
     sharmstr
    Moderator

    It has for a long time now. 🙂 And, the new Buddypress Cover will too. VC still wont which is a good thing.

    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: Help please (RT Media Code) #47918
     sharmstr
    Moderator

    Okay try this.

    Replace everything between 24 and 50 with the code that they gave you and upload it to your server. Then go to WP admin > Pages. Create a new page, name it whatever you want and choose the Gallery template.

    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: update of theme plugins still by FTP? #47917
     sharmstr
    Moderator

    WP Admin -> Theme Options -> Theme Update. Fill out the info.

    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: Help please (RT Media Code) #47914
     sharmstr
    Moderator

    I’m guessing you dont want the loop starting on 24. But how are you intending to display the 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: get_cfield on custom post type #47909
     sharmstr
    Moderator

    Hmmm. I just looked at my CPTs where I’ve used Kleo meta boxes and they display fine with get_cfield.

    All get_cfield does is use WPs get_post_meta() but appends _kleo_ to the field.

    I would do two things. Try using get_post_meta() and echoing the result. Also go into the db and make sure the field is getting set correctly.

    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: Problem adding CPT to activity stream #47860
     sharmstr
    Moderator

    Kleo doesnt uses a bunch of if statements to filter out the filter dropdown so that thing that components that are disabled wont show up. You can add a new value by copying /kleo/buddypress/activity/index.php to your child 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: >> SOCIAL ICONS #47852
     sharmstr
    Moderator

    Try disabling whatever is adding all those blue facebook icons. If that doesnt work, respond privately with a link and admin 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

     sharmstr
    Moderator

    Again. It works for me. No problem in Shop Sidebar.

    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: Customizing the Profile Menu in buddypress #47844
     sharmstr
    Moderator

    Sorry, they changed the login code in the last update. I’ve updated the post with new code.

    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 RTMediaBuddyPressActivity.php warnings #47821
     sharmstr
    Moderator

    Visual Composer should be 4.4.2

    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 reduce likes to one per IP #47819
     sharmstr
    Moderator

    ? No. Just turn on likes. If its not working, then maybe you have a conflict somewhere.

    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: get_cfield on custom post type #47818
     sharmstr
    Moderator

    attach your entire file.

    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 Nav Active bar location #47807
     sharmstr
    Moderator

    and for the hover

    COPY CODE
    
    
    .kleo-main-header .nav > li > a:hover {
    box-shadow: inset 0px -2px 0px 0px #e5e5e5;
    }
    
    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 Nav Active bar location #47806
     sharmstr
    Moderator
    COPY CODE
    
    
    .kleo-main-header .nav > li.active > a {
    box-shadow: inset 0px -2px 0px 0px #00b9f7;
    }
    
    
    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: get_cfield on custom post type #47796
     sharmstr
    Moderator

    Did you add your own meta boxes or the kleo one? If you’re using the Kleo meta boxes, the field is _kleo_embed, not embed.

    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: Pay for order form bug/issue WC 2.3.4 #47775
     sharmstr
    Moderator

    LOL. You shouldn’t. I was staring at the jquery scratching my head. “This should work. What the heck???”.

    Sorry again for not understanding. I get in “solve issues as fast as I can mode” which sometimes, as you’ve seen, isn’t the best mode to be 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: Problem adding CPT to activity stream #47770
     sharmstr
    Moderator

    Worked for me. Do you have “everything” selected?

    https://codex.buddypress.org/plugindev/post-types-activities/

    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: Create a news page #47767
     sharmstr
    Moderator

    Use a category for news. There are built in archive pages that will show every post for a selected category. So, that’s your news page. Example: http://seventhqueen.com/themes/kleo/category/courses/

    But since you dont want them to show up in your normal blog feed, you’ll have do some coding. Do a google search for exclude category from blog.

    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: Metadata in single without an image #47763
     sharmstr
    Moderator

    Hi Laura,

    They are not having issues displaying an image. What they are saying is the author meta doesnt display correctly on text only posts (no media posts). I’m looking into 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: Buddypress Bots #47761
     sharmstr
    Moderator

    Have you asked the BP developers? https://buddypress.org/support/search/bots/

    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: >> SOCIAL ICONS #47760
     sharmstr
    Moderator

    Hard to guess what “visual isn’t correct” means. We need to see what you’re 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: display of the archive article with ACF fields #47758
     sharmstr
    Moderator

    There isnt a way to filter 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: Pay for order form bug/issue WC 2.3.4 #47752
     sharmstr
    Moderator

    Open /kleo/woocommerce/checkout/form-checkout.php and change

    COPY CODE
    
    <div class="order-review-wrap">
    

    to

    COPY CODE
    
    <div id="order_review" class="order-review-wrap">
    

    It will be in the next udpate

    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: Pay for order form bug/issue WC 2.3.4 #47682
     sharmstr
    Moderator

    And just so you dont think I’m a complete idiot, it was due to the fact that the link was to a check out plugin and you’re having problems with checkout. 🙂

    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: Pay for order form bug/issue WC 2.3.4 #47681
     sharmstr
    Moderator

    Got it. Sorry. The links to plugins completely confused me. I’ll look at it in the morning.

    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: Pay for order form bug/issue WC 2.3.4 #47669
     sharmstr
    Moderator

    But you’re not telling me HOW it injects the loop. What add_action or filter are they using? Again, its nearly impossible to figure this out without the plugin and see its code. Does that 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: Pay for order form bug/issue WC 2.3.4 #47642
     sharmstr
    Moderator

    Okay cool. Do you know how it injects the accordion? Its really hard to help without 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

     sharmstr
    Moderator

    I think you’re right about the conflict, but its not with Kleo. I copied your code and it works perfectly for me. Its probably with some other woo plugin 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

    in reply to: Linking KLEO pop up login screen to custom made image. #47627
     sharmstr
    Moderator

    Why dobt you just put the kleo login in the menu? I dont understand why you’re trying to do all this customization?

    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: Linking KLEO pop up login screen to custom made image. #47623
     sharmstr
    Moderator

    You can temporarily switch to one of the WP theme to see if its a Kleo issue or not (doubtful) and/or ask the plugin devs http://revolution.themepunch.com/#

    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: using FancyBox with Kleo theme #47616
     sharmstr
    Moderator

    Did you try this? https://archived.seventhqueen.com/forums/topic/i-want-to-disable-magnific-popup

    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 deactivate second lightbox? #47615
     sharmstr
    Moderator

    did you try this https://archived.seventhqueen.com/forums/topic/i-want-to-disable-magnific-popup

    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 - 8,441 through 8,480 (of 11,328 total)

Log in with your credentials

Forgot your details?