Forum Replies Created

Viewing 40 posts - 2,721 through 2,760 (of 11,328 total)
  • Author
  • in reply to: redirect to member profile page #87790
     sharmstr
    Moderator

    You cant do that in Theme Options. Use Peters Login Redirect 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: Show members list in messagefunction #87712
     sharmstr
    Moderator

    By default, the username suggestion list only shows your friends. Search the buddypress forum for the code to override that and suggest all users.

    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: Change Header Profile Member #87708
     sharmstr
    Moderator

    In the same place you did before. I gave you updated code that uses bp_displayed_user_id to get the userid. So delete the old code and add the 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: Change Header Profile Member #87705
     sharmstr
    Moderator

    bp_displayed_user_id() will return the userid of the profile you are viewing. So, you can try the following. If it doesnt work, you’ll have to hire someone to get it working for you.

    COPY CODE
    // Removing public message option
    
    function remove_public_message_button() {
        remove_filter( 'bp_member_header_actions','bp_send_public_message_button', 20);
        // Add chat button
        add_action( 'bp_member_header_actions','add_chat_button',20);
    
    }
    add_action( 'bp_member_header_actions', 'remove_public_message_button' );
    
    function add_chat_button() {
        echo '<div class="generic-button"><a href="javascript:void(0)" onclick="javascript:jqcc.cometchat.chatWith(' . bp_displayed_user_id() . ');">Chat with me</a></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: Change Header Profile Member #87700
     sharmstr
    Moderator

    Perhaps because of their code. How are they getting ‘userid’?

    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: I can change the color of my fontello #87695
     sharmstr
    Moderator

    .socialfoot:hover:before works. use !important if you need to.

    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: Go Pricing Tables #87693
     sharmstr
    Moderator

    try this

    COPY CODE
    
    ul.gw-go-body li .gw-go-body-cell {
    text-align: center !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: Change Header Profile Member #87689
     sharmstr
    Moderator

    I obviously cant test this, but something like this should work. Put it in your child theme’s functions.php file.

    COPY CODE
    // Removing public message option
    
    function remove_public_message_button() {
        remove_filter( 'bp_member_header_actions','bp_send_public_message_button', 20);
        // Add chat button
        add_action( 'bp_member_header_actions','add_chat_button',20);
    
    }
    add_action( 'bp_member_header_actions', 'remove_public_message_button' );
    
    function add_chat_button() {
        echo '<div class="generic-button"><a href="javascript:void(0)" onclick="javascript:jqcc.cometchat.chatWith(userid);">Chat with me</a></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: I can change the color of my fontello #87688
     sharmstr
    Moderator

    Add this

    COPY CODE
    
    .socialfoot:before {
        color: yellow;
    }
    
    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: Tab Content #87687
     sharmstr
    Moderator

    You’re running Kleo 3.1.1 but haven’t upgraded VC which should be 4.8.0.1. Go to Appearance > Install Plugins and upgrade VC. Let me know if that fixes 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: Site is being bombarded with spam users. #87686
     sharmstr
    Moderator

    A lot of us use Wangguard: https://wordpress.org/plugins/wangguard/

    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 @mentions #87683
     sharmstr
    Moderator

    That’s a buddypress question:

    https://buddypress.org/support/topic/disabling-mentions/
    https://buddypress.org/support/topic/disable-mentions-links-completely/

    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: Cover and profile photo are duplicated on pages #87682
     sharmstr
    Moderator

    Probably because you have Buddypress Wall installed? If you search here, its been discussed.

    In the future when you are seeing issues with functionality or display, you should disable your plugins to see if it fixes it. If it does, then enable them one-by-one until you find the conflicting 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: Can i change or add some features? #87681
     sharmstr
    Moderator

    No problem.

    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 v.2.4.10 #87676
     sharmstr
    Moderator

    I wasnt asking if its enabled now. I’m asking if you tried it with the 2015 theme and if it also has the issue. Testing with the 2015 theme is common practice since all plugins *should* work with the 2015 Theme. Please try it and let us know. In my testing, I cant reproduce this issue. Friendships are requested and accepted without issue. I’m testing with Kleo 3.1.1, Buddypress 2.4 and Woo 2.4.10. See attached files to show my testing process and the result.

    Kleo isnt BP 2.4 compatible yet. You should downgrade BP until Seventhqueen releases a Kleo update that is compatible.

    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: Can i change or add some features? #87670
     sharmstr
    Moderator

    You must have misread what I wrote. I said you CANT use it with Buddyapp.

    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: Like Button for Activity Stream #87669
     sharmstr
    Moderator

    I was looking into doing it but decided not to because of that plugin. Also, I tested the beta version of BP Like and they have finally fixed the multiple ajax calls issue.

    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 v.2.4.10 #87668
     sharmstr
    Moderator

    I understand. I was asking if it happens with the 2015 Theme enabled. Also, what version of Buddypress 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

     sharmstr
    Moderator

    Yes

    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

    https://archived.seventhqueen.com/forums/users/strategicblend

    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: Is there any PHP shortcode for the social share buttons? #87615
     sharmstr
    Moderator

    That’s going to take some custom coding by you. The links are generated in the posts-social-share.php 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: Is there any PHP shortcode for the social share buttons? #87613
     sharmstr
    Moderator

    probably because the first few lines of code check to see if you’ve enabled social sharing for that post type.

    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: Is there any PHP shortcode for the social share buttons? #87610
     sharmstr
    Moderator

    Try including the template

    COPY CODE
    
    get_template_part( 'page-parts/posts-social-share' );
    
    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: Logo for Mobile Page #87606
     sharmstr
    Moderator

    Moving topic since this isnt a bug.

    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: Logo for Mobile Page #87605
     sharmstr
    Moderator

    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: There is no shortcode Kleo Posts :( #87602
     sharmstr
    Moderator

    @abe – Can you take a look at this? I disabled every extension except k-elements and VC. I even tried to reinstall k-elements and vc. Still cant get the Kleo Posts shortcode to register (show up) in VC. I dont see any errors in the console either.

    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: There is no shortcode Kleo Posts :( #87600
     sharmstr
    Moderator

    I’m going to assign this to one of the developers. You can enable your plugins again until they are ready to look at your 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: There is no shortcode Kleo Posts :( #87599
     sharmstr
    Moderator

    If you installed it from the zip that you downloaded from Themeforest, then it must have been an old version of it. Installing it from Appearance > Install Plugins will install the latest version.

    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: There is no shortcode Kleo Posts :( #87597
     sharmstr
    Moderator

    You installed K-elements 3.08. I cant delete it. Can you please delete the k-element folder so we can install K-elements 3.1.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: Woocommerce v.2.4.10 #87593
     sharmstr
    Moderator

    Does this happen with the 2015 theme enabled as well?

    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: There is no shortcode Kleo Posts :( #87591
     sharmstr
    Moderator

    Can I go in and disable things or is this a live 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: Can i change or add some features? #87589
     sharmstr
    Moderator

    You cant use k-elements (where the particle shortcode comes from) in Buddyapp.

    The login page (if you’re using the Buddyapp one) can use VC.

    The register page template can be copied to your child theme and you can edit whatever you want. Its under /buddyapp/buddypress/members/register

    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: Logo for Mobile Page #87587
     sharmstr
    Moderator

    Great. Let me know what you find.

    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: Modal login background #87585
     sharmstr
    Moderator

    If you havent already, import the Login page (Appearance > Theme Demo Data > Specific Page). Then edit the login page. The field that @keyandcee was referring to is there under Theme General Options.

    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: Logo for Mobile Page #87583
     sharmstr
    Moderator

    You dont have to edit kleo files to override 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

    in reply to: Name instead of Username #87579
     sharmstr
    Moderator

    This has been discussed on the buddypress forum many times. Search 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: There is no shortcode Kleo Posts :( #87574
     sharmstr
    Moderator

    The vc_map change code for that shortcode is in /k-elements/compat/plugin-js-composer/config.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

    Attachments:
    You must be logged in to view attached files.
    in reply to: Logo for Mobile Page #87568
     sharmstr
    Moderator

    I dont think so. Look at the code thats being generated in mobile view (see attached – your-site.jpq). This is not coming from Kleo. See the code that kleo normally generates (see attached – normal-site.jpg)

    Do you have a plugin that changes the header on mobile screens?

    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: Cant access page #87551
     sharmstr
    Moderator

    I can see that link tooooo 🙂

    I’ll assign this to someone who has access to fix 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

    Attachments:
    You must be logged in to view attached files.
    in reply to: Save options on Kleo Options Panel #87549
     sharmstr
    Moderator

    Add this to your child theme’s functions.php file.

    COPY CODE
    
    add_filter( 'kleo_theme_options_ajax', '__return_false' );
    
    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 - 2,721 through 2,760 (of 11,328 total)

Log in with your credentials

Forgot your details?