Forum Replies Created

Viewing 40 posts - 7,201 through 7,240 (of 11,328 total)
  • Author
  • in reply to: OUR RECOMMENDATION #57123
     sharmstr
    Moderator

    Import the home shop page and have a look at how that section was built

    Appearance > KLEO demo data > Specific Page > Home Shop.

    Basically its a row split into 4 columns. Each column has the Widgetised Sidebar shortcode.

    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

    Theme options > Buddypress:

    1 – Member profile layout: either default or right sidebar depending on what your site default is

    2 – Enable full width profile header: On

    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: Button 2 is not working #57120
     sharmstr
    Moderator

    Looks like the Visual Composer team fixed this in VC 4.5. That version will be available in the next Kleo update. Unfortunately I dont have an ETA for you. In the meantime use “Button”. URLs work with that one.

    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: Integrating Zopim Live Chat to Kleo #57118
     sharmstr
    Moderator

    If you copied the code from a web page, make sure you dont have fancy quote marks (left and right).

    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: Integrating Zopim Live Chat to Kleo #57085
     sharmstr
    Moderator

    Unless you want it to run if they are NOT logged in, then you’d change it to !is_user_logged_in(). The ! means 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: Integrating Zopim Live Chat to Kleo #57084
     sharmstr
    Moderator

    Yep. That’s how you tell if a user is logged in or not. Beyond that you’ll have to ask them because I have no idea what their code does.

    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: Members Search Bar Results #57083
     sharmstr
    Moderator

    Your image doesnt show results of all sorts of things. If you’re talking about the autocomplete suggestions that show up in the search form when you start to type (what you have circled), those aren’t ajax results. Your browser does that unless your put autocomplete=off on the search element.

    In order to do that you’d have to override the bp_directory_members_search_form function located in the buddypress plugin. You should ask on their forum how to filter that form. I’m not sure how to do 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: Next User on Sides of Screen #57081
     sharmstr
    Moderator

    Put this is quick css

    COPY CODE
    
    nav.pagination-sticky.members-navigation {display: none;}
    
    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: User restriction #57070
     sharmstr
    Moderator

    I’m not aware of a built in way. There may be a plugin that will do that for you. You would be better off asking on the Buddypress forum since there is a bigger audience there.

    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 4.51 incompatibilities #57067
     sharmstr
    Moderator

    Because latest version of Kleo was released before VC 4.5. The latest version of VC will be in the next Kleo update. I dont have and ETA for 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: Create projects where people can collaborate #57064
     sharmstr
    Moderator

    There are several project management plugins for WP out there, not sure if they will meet your requirement or not.

    You might be better off asking in the buddypress forum. Bigger audience over there.

    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: User restriction #57063
     sharmstr
    Moderator

    Kleo doesnt handle any of that, so there is no built in way within Kleo.

    Assuming you’re talking about WP Posts and not BP activity….

    How are the users creating posts? If you’re using social articles, you might want ask them how to restricting posting.

    If they are posting in the backend, then you might be able to use a plugin like User Role Editor or Adminimize.

    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 rid of related product display #57062
     sharmstr
    Moderator

    Try this css

    COPY CODE
    
    .single-product .related.products {
      display: none;
    }
    
    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: BBpress Topics Widget #57061
     sharmstr
    Moderator

    Its throwing off the entire page because you’re using and * which tells the css to do it for all Before and Afters.

    Assuming you mean after each topic, try this.

    COPY CODE
    
    .widget_display_topics li {
      margin-bottom: 10px;
    }
    

    If you mean after the widget, try this.

    COPY CODE
    
    .widget_display_topics {
      padding-bottom: 10px;
    }
    
    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: Unstable VC Galleries / broken #57060
     sharmstr
    Moderator

    Looks fine to me.

    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 page and additional info. #57057
     sharmstr
    Moderator

    There are several topics explaining how to add information to the header:

    https://archived.seventhqueen.com/forums/topic/kleo-features-requests/page/5/#post-42714

    https://archived.seventhqueen.com/forums/topic/how-to-display-social-networks-to-buddypress-member-profile#post-41692

    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 page and additional info. #57054
     sharmstr
    Moderator

    Moving this request to the Feature Request section.

    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 Marketplace function? #57053
     sharmstr
    Moderator

    http://www.woothemes.com/products/product-vendors/

    https://wordpress.org/plugins/wc-vendors/

    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: Edit Profile upload text #57052
     sharmstr
    Moderator

    Log into your host and change the permissions.

    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: Home simple issue #57050
     sharmstr
    Moderator

    Click on the red part I’ve highlighted and change to 1 column.

    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: Edit Profile upload text #57041
     sharmstr
    Moderator

    You can either translate that message or you can copy /kleo/buddypress/members/single/profile/change-avatar.php to your child theme and edit the message. I suggest translating 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: Members Search Bar Results #57040
     sharmstr
    Moderator

    Are the results going back to your custom search page? https://codex.wordpress.org/Creating_a_Search_Page

    (there’s not image attached, btw)

    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: Next User on Sides of Screen #57039
     sharmstr
    Moderator

    Sticky members?

    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: Restrict entire site except home page #57038
     sharmstr
    Moderator

    There are several plugins, this one looks promising https://wordpress.org/plugins/jonradio-private-site/

    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: Integrating Zopim Live Chat to Kleo #57037
     sharmstr
    Moderator

    As the link says, you use

    COPY CODE
    
    if (is_user_logged_in()) {
    
    }
    

    Just put you function inside 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 Not Finding RT Media uploads #56970
     sharmstr
    Moderator

    Because rtMedia doesnt have a search function to tap into. This may help you: http://community.rtcamp.com/t/search-feature/2992

    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: Image instead of slidereffects #56968
     sharmstr
    Moderator

    You’re posting in the wrong section. Moving this topic.

    To answer your question, try going into slider settings and click on Loop Progress then turn off loop single slide

    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: Multisite shopping cart issue. #56967
     sharmstr
    Moderator

    I havent seen that mentioned here before, so I doubt you’ll get much help. Since you’ve identified that it an issue with Woocommerce and not Kleo by testing on a WP theme, have you asked on the Woocommerce 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: Post Login URL #56963
     sharmstr
    Moderator

    How so?

    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: "Send Invites" page isn't showing anything #56945
     sharmstr
    Moderator

    Does the account you are using have any friends? Only people that you are friends with that dont already belong to the group will show up there.

    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: Members Directory Edit #56944
     sharmstr
    Moderator

    Try this

    COPY CODE
    
    #members-list .action {
      display: none;
    }
    
    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: Sticky sidebar in activity page #56943
     sharmstr
    Moderator

    @iza has reported that they are using a plugin that will works well for this: https://archived.seventhqueen.com/forums/topic/floating-sticky-sidebar#post-56933

    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: Floating (sticky) sidebar #56942
     sharmstr
    Moderator

    Thank you @iza!

    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: BBpress replies/notification #56923
     sharmstr
    Moderator

    Excellent. 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: STEPS TO UPDATE KLEO THEME AND PLUGINS #56918
     sharmstr
    Moderator

    Make sure you are putting in the API key that you set up on theme forest and NOT your license key. You have to create the API key in your profile on the themeforest site. That seems to be the common mistake.

    Also, when uploading via FTP a common mistake is that people upload the wrong kleo after unziping the file. Their dir structure ends up being /themes/kleo/kleo/ instead of /themes/kleo/

    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: Button 2 is not working #56915
     sharmstr
    Moderator

    What is button 2? I’m assuming you mean the button shortcode but maybe I’m wrong.

    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: Floating (sticky) sidebar #56914
     sharmstr
    Moderator

    https://archived.seventhqueen.com/forums/topic/sticky-sidebar-in-activity-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: Demo Content Not Working #56912
     sharmstr
    Moderator

    I cant recall people getting a 404 when they error out, but what usually helps is making sure you have enough memory allocated to WP. https://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_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: BBpress replies/notification #56911
     sharmstr
    Moderator

    The logging of the notification is handled by bbpress. Kleo merely checks the db for any new notifications. Kleo doesnt do the actual logging.

    I cant remember off the top of my head, but I think the link is the same type of situation. Kleo reads the notification from the db which already has the link. I’ll have to verify that by looking in the db.

    For the most part, since Kleo is a theme, most of what you see comes from functions of either WP and the specific plugin. Kleo just makes it look nice. In saying that, the live notification in the menu IS a Kleo function, but again, I believe its only making the notifications, which were written to the db, look nice. Its not making any determination on where the link should point to.

    You can verify that my enabling the WP Admin bar and looking at the notifications in the buddypress menu to see where those links point.

    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 updates #56910
     sharmstr
    Moderator

    Well, I suppose there’s a 50/50 chance at being right. LOL.

    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 - 7,201 through 7,240 (of 11,328 total)

Log in with your credentials

Forgot your details?