Forum Replies Created

Viewing 40 posts - 2,041 through 2,080 (of 11,328 total)
  • Author
  • in reply to: Email Notifications #94148
     sharmstr
    Moderator

    Can you clarify what you mean by “The SMTP plugin is installed but that is not working either.” Are you saying the plugin isnt working or it didnt fix the issue. 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: BG gradient, image quality and read more links #94145
     sharmstr
    Moderator

    Hmmm. In \buddypress\members\single\member-header.php add some text, save it and see if it shows up on your site. I want to see if it loading that file or a different one.

    It definitely works (see attached) so I’m thinking its a caching issue on your site. (I know you said you cleared 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: Blog Page Grid Masonry View Refreshing My Web Site #94138
     sharmstr
    Moderator

    That solution is here: https://archived.seventhqueen.com/forums/topic/how-to-deactivate-the-effects-on-post-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: Email Notifications #94136
     sharmstr
    Moderator

    Couple of things..

    Do you have email notifications turned off in your profile: Your profile > Settings > Email

    It depends on what notifications they are. There a plugins out there that will add a notification to the bp notification table, but dont send emails. Is the notification you’re not receiving via email listed in Your profile > Settings > Email?

    Could be a server smtp issue. If this is the case, installing an SMTP plugin usually fixes it. Here’s one that I use: https://wordpress.org/plugins/wp-mail-smtp/

    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 see the code. See attached.

    In any case, here it is

    COPY CODE
    
    //Add me to child theme functions.php
    function kleo_title()
    {
    	$output = "";
     
    	if ( is_category() )
    	{
    		$output = __('Archive for category:','kleo_framework')." ".single_cat_title('',false);
    	}
    	elseif (is_day())
    	{
    		$output = __('Archive for date:','kleo_framework')." ".get_the_time('F jS, Y');
    	}
    	elseif (is_month())
    	{
    		$output = __('Archive for month:','kleo_framework')." ".get_the_time('F, Y');
    	}
    	elseif (is_year())
    	{
    		$output = __('Archive for year:','kleo_framework')." ".get_the_time('Y');
    	}
    	elseif (is_search())
    	{
    		global $wp_query;
    		if(!empty($wp_query->found_posts))
    		{
    			if($wp_query->found_posts > 1)
    			{
    				$output =  $wp_query->found_posts ." ". __('search results for:','kleo_framework')." ".esc_attr( get_search_query() );
    			}
    			else
    			{
    				$output =  $wp_query->found_posts ." ". __('search result for:','kleo_framework')." ".esc_attr( get_search_query() );
    			}
    		}
    		else
    		{
    			if(!empty($_GET['s']))
    			{
    				$output = __('Search results for:','kleo_framework')." ".esc_attr( get_search_query() );
    			}
    			else
    			{
    				$output = __('To search the site please enter a valid term','kleo_framework');
    			}
    		}
     
    	}
    	elseif (is_author())
    	{
    		$curauth = (get_query_var('author_name')) ? get_user_by('slug', get_query_var('author_name')) : get_userdata(get_query_var('author'));
    		$output = __('Author Archive','kleo_framework')." ";
     
    		if(isset($curauth->nickname)) $output .= __('for:','kleo_framework')." ".$curauth->nickname;
     
    	}
    	elseif (is_tag())
    	{
    		$output = __('Tag Archive for:','kleo_framework')." ".single_tag_title('',false);
    	}
    	elseif(is_tax())
    	{
    		$term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) );
    		$output = __('Archive for:','kleo_framework')." ".$term->name;
     
    	} elseif ( is_front_page() && !is_home() ) {
    					$output = get_the_title(get_option('page_on_front'));
     
    	} elseif ( is_home() && !is_front_page() ) {
    					$output = get_the_title(get_option('page_for_posts'));
     
    	} elseif ( is_404() ) {
    					$output = __('Error 404 - Page not found','kleo_framework');
    	}
    	else {
    		$output = get_the_title();
    	}
     
    	if (isset($_GET['paged']) && !empty($_GET['paged']))
    	{
    		$output .= " (".__('Page','kleo_framework')." ".$_GET['paged'].")";
    	}
     
    	return $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

    Attachments:
    You must be logged in to view attached files.
    in reply to: BG gradient, image quality and read more links #94131
     sharmstr
    Moderator

    No need to apologize 🙂

    I’m locked out of 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: BG gradient, image quality and read more links #94121
     sharmstr
    Moderator

    That’s the one. Did you keep the same directory structure?

    \buddyapp-child\buddypress\members\single\member-header.php

    Also, can you please start new topics for new questions? It makes searching the forum so much easier. Thank 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: post default page #94120
     sharmstr
    Moderator

    That depends. What do you have set in Settings > Reading?

    For the share buttons, turn them off: Theme Options > 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: post default page #94116
     sharmstr
    Moderator

    Wordpress doesnt allow you to do that. They reserve the page and do all the display processing using PHP. Its similar to buddypress in that way.

    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: Background Colour #94115
     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: How Do I Accomplish the Following #94109
     sharmstr
    Moderator

    here’s the screenshots

    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: How Do I Accomplish the Following #94106
     sharmstr
    Moderator

    Glad to hear it 🙂

    *** removed the first part of my response as it didnt apply to you ***

    You dont need to be a coder. Go to WP Admin -> Appearance > Widgets. Put a text widget in one of your footers and add [kleo_social_icons]. Then go to Theme Options > General and paste the css I gave you into your quick css field.

    I have no idea if that plugin will work. I dont see that it will block users to certain buddypress groups. All it says is that it syncs the account info. You need to speak with 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: Background Colour #94103
     sharmstr
    Moderator

    I like your site 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: SLL Problems: Login, Slider Revolution #94102
     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: Keep menu open when menu item is active #94100
     sharmstr
    Moderator

    This would require custom jquery code that is beyond the scope of support. If you’d like to get a quote on the required code, please contact dev@seventhqueen.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: SLL Problems: Login, Slider Revolution #94098
     sharmstr
    Moderator

    Exactly. I mentioned that in my vary first response. 🙂

    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: Blog Page Grid Masonry View Refreshing My Web Site #94097
     sharmstr
    Moderator

    It probably has something to do with your cloudfare settings. It looks like its causing a delay in loading the jquery that processes the animations.

    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: Background Colour #94095
     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: Background Colour #94094
     sharmstr
    Moderator

    That’s correct. Its called “Main Section” which means it will only change the main content area. Pop this into your quick css and you should be good.

    COPY CODE
    
    body {
        background-color: #282828 !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: Dropdown Hover possible? #94093
     sharmstr
    Moderator

    This isnt possible without adding custom jquery. I’ll move this to the feature request 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: New Forum add from a User and i cant chance cover Photos #94090
     sharmstr
    Moderator

    I’m waiting for the developers to get back to me. Please be patient.

    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: BP-WP Reviews plugin #94089
     sharmstr
    Moderator

    I cant really debug since its a paid plugin. Instead of the css I gave you, can you try this in your child theme’s functions.php file?

    COPY CODE
    
    add_filter( 'kleo_theme_settings', 'add_review_icon' );
    function add_review_icon( $kleo ) {
    
        $kleo['set'][] = array(
            'id' => 'bp_nav_reviews',
            'title' =>  esc_html__( 'Reviews', 'buddyapp' ),
            'type' => 'select',
            'default' => 'panorama-fisheye',
            'choices' => kleo_icons_array(),
            'section' => 'kleo_section_bp_icons',
            'customizer' => true,
            'transport' => 'refresh'
        );
    
        return $kleo;
    }
    

    After you add it, go back into customizer and try to set a new icon.

    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 #94086
     sharmstr
    Moderator

    You need to increase the amount of memory allocated to WP. At present, you only have 64MB (the default). You need at least 128M and possibly more depending on how many/which plugins you’ll be using. Here are directions for increasing the memory: 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: Users Login Issue when forget their password #94085
     sharmstr
    Moderator

    You probably have a plugin that locks the IP address, not 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: Require Membership Pages #94084
     sharmstr
    Moderator

    Sounds like those two pages aren’t the default buddypress pages. The settings in Theme Options > Memberships work on whatever pages you have set in Settings > Buddypress > Pages.

    If that’s the case, you can use the standard way of locking down pages using PMPro by editing the page and selecting the appropriate 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: SLL Problems: Login, Slider Revolution #94082
     sharmstr
    Moderator

    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: SLL Problems: Login, Slider Revolution #94080
     sharmstr
    Moderator

    You still havent published the app.

    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: Dock Fill for Component #94079
     sharmstr
    Moderator

    Edit the row settings and set Inner Container to No.

    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: why the Portfolio page that i delete is not gone ? #94077
     sharmstr
    Moderator

    Wordpress does that with any page you delete. Purge your trash.

    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 havent tried this plugin but looks promising: https://wordpress.org/plugins/woocommerce-product-sort-and-display/

    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 make the Bag totals to be only “Totals” ? #94074
     sharmstr
    Moderator

    Looks like you’ve translated ‘cart’ to ‘bag’. If that’s the case, go into your whatever program you’ve used for translation and change ‘Bag Totals’ to ‘Totals’.

    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 Do I Accomplish the Following #94072
     sharmstr
    Moderator

    1 – You can add the social links you’ve set in theme options by adding [kleo_social_icons] to one of the footer widgets. Then add this to your quick css.

    COPY CODE
    
    #footer .kleo-social-icons li {
        display: inline;
        font-size: 20px;
    }
    #footer .kleo-social-icons .ts-text {
        display: none;
    }
    

    2 – Buddypress doesnt have group categories by default. You’ll have to find a plugin for that. I found this, but have never used it: http://wptavern.com/new-plugin-adds-taxonomies-to-buddypress-groups

    3 – You can use whatever size you want. The logo will be downsized to fit depending on how you’ve set up your header. By default, it will be 88px tall.

    4 – There’s nothing built into PMPro for that. It will require either a plugin or custom code.

    5 – You’ll need a plugin for that. Try Invite Anyone. Its written by the same people who work on the buddypress plugin.

    6 – http://www.yoursite.com/members Unless you’ve set a different page in Settings > Buddypress > Pages

    7 – Same answer as 4.

    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 remove top menü?! #94068
     sharmstr
    Moderator

    Theme Options > Header > Display Top Bar

    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

    Add the code in that link to your child theme’s functions.php file. Delete the text “Archive for category:” and whatever other text you dont want to show.

    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 individual page title #94065
     sharmstr
    Moderator

    I miss-spoke earlier. I just tested it an you can remove just the title for buddypress pages like members and activity by editing the page and enabling Hide The Title in Theme General Settings.

    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: SLL Problems: Login, Slider Revolution #94064
     sharmstr
    Moderator

    Here’s what I think you’re not understanding. Those messages are coming from Facebook, not Kleo. It means you haven’t set up your application correctly on Facebook. It has nothing to do with your settings in Theme Options. Go back to your facebook developer page and correct the error. Its telling you that the website URL that you have set up in facebook is wrong. Perhaps you didnt change it after moving 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: Hide individual page title #94063
     sharmstr
    Moderator

    Are you talking about 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: Menu child items not showing on mobile #94062
     sharmstr
    Moderator

    According to your source code you are.

    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: Default filter for activity stream? #94011
     sharmstr
    Moderator

    try changing it to new_blog_comment

    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: Menu child items not showing on mobile #94010
     sharmstr
    Moderator

    Probably has something to do with the page speed code you’re using. Disable it and see if that fixes is.

    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,041 through 2,080 (of 11,328 total)

Log in with your credentials

Forgot your details?