Forum Replies Created

Viewing 40 posts - 321 through 360 (of 11,328 total)
  • Author
  • in reply to: user register not allowed #108564
     sharmstr
    Moderator

    Please respond privately with credentials and I’ll have a look at your setup.

    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

    Man, that took forever to track down. Here’s whats happening. By default, BP doesnt display private message buttons in the members loop. Kleo adds that functionality in both the members directory and in your friends list located in your profile. In order to do that, it has to filter the message button arguments. Long story short, edit the following to get it to work.

    In /kleo/buddypress/buddypress-functions.php… starting around line 2074, you’ll see Private message in Members directory loop. Replace everything from that line to the bottom of the file with this.

    COPY CODE
    
    /* Private message in Members directory loop */
    function filter_message_button_link( $link = '' ) {
        $bp_user_id = (bp_get_member_user_id() ? bp_get_member_user_id() : bp_displayed_user_id() );
    	$link = wp_nonce_url( bp_loggedin_user_domain() . bp_get_messages_slug() . '/compose/?r=' . bp_core_get_username( $bp_user_id ) );
    	return $link;
    }
    function kleo_bp_dir_send_private_message_button() {
    	if( bp_get_member_user_id() != bp_loggedin_user_id() ) {
    		add_filter('bp_get_send_private_message_link', 'filter_message_button_link', 1, 1 );
    		add_filter('bp_get_send_message_button_args', 'kleo_bp_private_msg_args');
    		bp_send_message_button();
    	}
    }
    
    
    /**
     * Override default BP private message button to work on Friends tab
     * @since 2.2
     * @param array $btn
     * @return array
     */
    function kleo_bp_private_msg_args( $btn ) {
    
        if ( ! is_user_logged_in() ) {
            return false;
        }
    
        $btn['link_href'] = filter_message_button_link();
    
        return $btn;
    }
    

    I’m submitting this code change to the developers and I’m also copying them on this just incase this change breaks something. I dont think it will.

    Also, you dont need to edit template files to inject your carousel code. Just use the kleo_before_main hook.

    COPY CODE
    
    add_filter( 'init', 'check_member_profile');
    function check_member_profile() {
        if (bp_is_user()) {
            add_action('kleo_before_main', 'add_members_carousel', 10);
        }
    }
    
    function add_members_carousel() {
        echo '<div class="member_avatars">';
        echo do_shortcode('[kleo_bp_members_carousel type="active" number="5" min_items="2" max_items="7" image_size="thumb" rounded="rounded" autoplay="yes" online="noshow" class="customclass"]');
        echo '</div>';
    }
    

    Let me know if everything is sorted.

    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 register not allowed #108507
     sharmstr
    Moderator

    Do you have your buddypress pages set correct in the Settings > buddypress > pages?

    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 register not allowed #108491
     sharmstr
    Moderator

    Do you have registration enabled in Wp Admin > Settings > General?

    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 customise primary menu #108489
     sharmstr
    Moderator

    1 – I’ve never heard of that problem. Perhaps an issue with another plugin?

    2 – Why do you need to change it? It just checked your site and its correctly going to your register 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: Go Pricing not updating #108486
     sharmstr
    Moderator

    Please check to see if go_pricing.zip is in /wp-content/themes/kleo/lib/inc on your server.

    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: Hide posts in forum activities #108436
     sharmstr
    Moderator

    When did you turn it off? Its not an on/off switch for display. Its an on/off switch for recording the activity. In other words, if you recently turned off site tracking, it will still show posts that were recorded before you turned it off. It wont show post created after turning it off because it wont even record the activity to the db. In your image the post says its a week old.

    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 not updating #108435
     sharmstr
    Moderator

    I appologize. I had just got in and didnt realize that they released Kleo 4.0.2. If you have that installed, then go to Appearance > Install Plugins and you’ll be able to update to Go Pricing 3.2.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: Go Pricing not updating #108434
     sharmstr
    Moderator

    Again, because its bundled. GoPricing updated their plugin AFTER the latest release of Kleo was posted. The Go Pricing version you should have installed is 3.2.0

    Hope that helps.

    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 size is too small #108323
     sharmstr
    Moderator

    Strange that it works perfectly on my site.

    Add this to it

    COPY CODE
    
    #logo_img {
        max-height: 250px !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: Logo size is too small #108319
     sharmstr
    Moderator

    Did you reset the main menu height to 88px?

    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 size is too small #108311
     sharmstr
    Moderator

    Try this instead

    COPY CODE
    
    @media (min-width: 991px) {
        .header-centered .navbar-header, .logo {
            height: 250px !important;
            line-height: 250px !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: how hide sidebar on mobile and tablet #108300
     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: Votes #108298
     sharmstr
    Moderator

    and this https://wordpress.org/plugins/wp-idea-stream/

    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: Votes #108296
     sharmstr
    Moderator

    That’s been discussed here: https://archived.seventhqueen.com/forums/topic/vote-topic#post-89365

    With that said here is something similar: https://wordpress.org/plugins/idea-factory/

    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 size is too small #108292
     sharmstr
    Moderator

    Change the main menu height to 250px in theme options > header 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: Installation #108276
     sharmstr
    Moderator

    moving because 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: Installation #108275
     sharmstr
    Moderator

    You’re not installing the correct file: https://archived.seventhqueen.com/forums/topic/the-theme-cant-install-complaining-of-style-css-not-found

    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 hide sidebar on mobile and tablet #108274
     sharmstr
    Moderator

    A few issues –

    1 – Your logic is wrong/backwards. Your code is saying “if its not mobile, show full width. if it is mobile, show the sidebar”.

    2 – You’ve misspelled right.

    3 – According to WP you shouldn’t be using it in themes: https://codex.wordpress.org/Function_Reference/wp_is_mobile

    But to answer your question, by the time it gets to right-sidebar.php its too late. You could have tested that by merely changing ‘right’ to ‘no.

    If you look in the kleo_prepare_layout function, you’ll see that you can filter it. So its as simple as putting this in your child theme.

    COPY CODE
    
    add_filter( 'kleo_page_layout' , 'remove_sidebar_mobile' );
    function remove_sidebar_mobile() {
    
        if ( wp_is_mobile() ) {
            $layout = 'no';
        }else{
           $layout = 'right';
        }
        return $layout;
    }
    
    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 hide sidebar on mobile and tablet #108260
     sharmstr
    Moderator

    That was discussed here: https://archived.seventhqueen.com/forums/topic/mobile-sidebars-and-menu#post-73978

    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

    How are you adding the carousel? Need to see your exact code in order to 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

    in reply to: "Create Topic Field" in Form at the top #108252
     sharmstr
    Moderator

    If you look at the code in /kleo/bbpress/content-single-forum.php, you’ll see that it adds a form to the page using <?php bbp_get_template_part( 'form', 'topic' ); ?> Just move that wherever you want. Probably into /kleo/bbpress/content-archive-forum.php or /kleo/bbpress/content-single-forum.php. The file names are self explanatory.

    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 resize featured images? #108249
     sharmstr
    Moderator

    Please refer to this topic: https://archived.seventhqueen.com/forums/topic/size-of-featured-image-top-of-post

    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

    That wouldnt be a function of a theme, but it sounds like you need 2 things. 1 – A plugin or custom BP code that will allow members to send a mass message to other members. And 2 – You dont specifically say, but assuming you’re using Paid Membership Pro, you’ll need custom code to restrict it from non paying 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

     sharmstr
    Moderator

    You’re probably trying to install the full zip file. You need to unpack the zip file you get from the download. Instructions are in the documentation. Refer to Step 1 here: https://archived.seventhqueen.com/documentation/kleo#installing-the-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: Theme general settings in custom post type #108245
     sharmstr
    Moderator

    Refer to this topic: https://archived.seventhqueen.com/forums/topic/add-kleo-meta-box-to-custom-post-type

    Note that its quite old, but the concept is still the same. As a starting point, you’ll want to grab updated metabox code from /kleo/lib/metaboxes.php . Then wrap it in a custom function as described in the link above.

    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: Invalide Purchase code with Revolution Slider #108244
     sharmstr
    Moderator

    Revslider is bundled, therefore you dont get a purchase code for 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: Limit Group Creation to only admin #108243
     sharmstr
    Moderator

    Buddypress has a setting for that. No need to edit files: Settings > Buddypress > Settings: Group creation.

    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 not updating #108242
     sharmstr
    Moderator

    Because its a bundled plugin. You need to run the version of the plugin that comes with the 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: Hide posts in forum activities #108241
     sharmstr
    Moderator

    I’m assuming you mean the buddypress activity feed and not forum activity. If by “posts” you mean blog posts, then you can turn off Site Tracking in WP Admin > Setttings > Buddypress to keep new posts from showing up in the BP activity feed.

    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: Captcha & Sidebar removal #108239
     sharmstr
    Moderator

    Disable any plugins that didnt come with Kleo until you find the plugin causing it.

    You can switch to full with profile pages in Theme Options > Buddypress

    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: Keymaster unable to change “Forum Role” #108238
     sharmstr
    Moderator

    This isnt a bug and its not a function of the theme. Its a function of bbpress and woocommerce:

    https://codex.bbpress.org/getting-started/before-installing/bbpress-user-roles-and-capabilities/
    https://docs.woothemes.com/document/roles-capabilities/

    Please ask on their forums.

    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

    Please refer to the sticky topic on the subject: https://archived.seventhqueen.com/forums/topic/what-plugin-are-you-using-to-show-ticket-status

    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: Arranging portfolio items #108236
     sharmstr
    Moderator

    The list is sorted by date, so change the date of the stand. Make it older than the tablet.

    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: Registration #108234
     sharmstr
    Moderator

    1 – After activation you can send them to their profile page by installing Peter Login Redirect plugin and setting the post-registration link to http://yoursite.com/members/[variable]username[/variable]

    2 – Install a SMTP plugin. More info: https://archived.seventhqueen.com/forums/topic/problems-with-contact-forms#post-71765

    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

    @colab665: http://www.wpbeginner.com/wp-tutorials/fix-wordpress-memory-exhausted-error-increase-php-memory/

    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: Homepage menu items #108113
     sharmstr
    Moderator

    Its that like us on FB thing you have. Once I closed that and reloaded the page, the fb button on the login modal worked.

    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: Homepage menu items #108102
     sharmstr
    Moderator

    Yep. How about the caching question?

    Respond privately with credentials and I’ll have a look around.

    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: Homepage menu items #108098
     sharmstr
    Moderator

    Couple of things to check

    – Do you have some sort of caching enabled that could be causing this?

    – Do you have a custom menu assigned to your home 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

    Attachments:
    You must be logged in to view attached files.
    in reply to: Homepage menu items #108084
     sharmstr
    Moderator

    Thats not clear from your images. I dont see them in your image of the logged in user. In any case, you need to use the kleo menu items. 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 - 321 through 360 (of 11,328 total)

Log in with your credentials

Forgot your details?