Forum Replies Created

Viewing 40 posts - 2,281 through 2,320 (of 2,796 total)
  • Author
  • in reply to: Simply, how do i create a signup page? #82988
     Laura
    Moderator

    Hello, please add this to style.css of child theme 🙂

    COPY CODE
    
    div#field-visibility-settings-toggle-1 {
        display: none;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Missing Topic Forums Reorganized? #82962
     Laura
    Moderator

    Hello, yes it is, let me paste it here for you:
    1- Install shortcodes ultimate plugin
    2- Go to child theme folder using ftp or your hosting file manager.

    Create a new folder, name it members
    Now, paste the file attached there, in your new folder. ( the members-loop.php )

    Finally, add this css to style.css or quick css ( IMPORTANT: The css may need some changes, such as colors…)

    COPY CODE
    
    .su-spoiler-style-fancy > .su-spoiler-title {
      /* border-bottom: 0px; */
      -webkit-border-radius: 10px;
      -moz-border-radius: 10px;
      /* border-radius: 0px; */
      background: #905CA5 !important;
      font-size: 0.9em;
      color: white;
    }
    .two.columns.bglabel.hz-checkbox label {
      text-align: left;
    }
    #horizontal_search {
      padding-bottom: 30px;
      padding-left: 100px;
    }
    .search2 #search-bar {
      display: block !important;
    }
    #search-bar {
    display:none;
    }
    .two.columns.bglabel label {
      text-align: left;
    }
    .custom.dropdown.expand a {
      text-align: left;
    }
    form#horizontal_search label {
      text-align: left;
    }
    

    Let me know if it works 🙂

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    Attachments:
    You must be logged in to view attached files.
    in reply to: Integrating Aweber Into Registration Page #82957
     Laura
    Moderator

    Hello, if you want a custom register page, you shouldnt use the buddypress setitngs for page register… but as this would require to edit a lot of links that points to buddypress register page, then maybe its better to just copy the register.php inside of wp-content/registration of main theme to the child theme (create registration folder and paste it inside)
    Then edit the register.php
    Maybe replace the content with this
    And add your gravity form shortcode like [shortcode] where it says GRAVITY-FORM-SHORTCODE-HERE

    COPY CODE
    
    <?php get_header( 'buddypress' ); ?>
    
    <!-- MAIN SECTION
    ================================================ -->
    <section>
        <div id="main">
            <div class="row">
                <div class="twelve columns">
      
    		<?php do_action( 'bp_before_register_page' ); ?>
    
    		<div id="register-page">
    
    		<?php echo do_shortcode( 'GRAVITY-FORM-SHORTCODE-HERE' ); ?>
    
    		</div>
            
    		<?php do_action( 'bp_after_register_page' ); ?>
                    <div class="clearfix"></div>
            <br><br>
        </div><!--end twelve-->
        
        </div><!--end row-->
      </div><!--end main-->
    
    </section>
    <!--END MAIN SECTION-->
    
    <?php get_footer( 'buddypress' ); ?>
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Few question related to theme layout #82955
     Laura
    Moderator

    Hello, for 2 you could check out http://mycred.me/support/forums/topic/mycred-and-paid-memberships-pro/
    For 3: i added the following code to your quick css under styling section, you should add it in style.css of child theme.

    COPY CODE
    
    #members-list .four.columns:nth-child(4n+1) {
        clear: left;
    }
    div#members-dir-list .four, .row .four {
        width: 23.33333% !important;
    }
    #members-list .four.columns:nth-child(3n+1) {
        clear: right !important;
    }
    

    Let me know if you need more help 🙂

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Profile page landing page #82896
     Laura
    Moderator

    Hello, please try by adding this to bp-custom.php in plugins folder

    COPY CODE
    
    /**
     * Change BuddyPress default Members landing tab.
     */
    define('BP_DEFAULT_COMPONENT', 'profile' );
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

     Laura
    Moderator

    Hello, for the admin:
    Add this to child theme functions.php
    1. – Deny access to admins profile

    COPY CODE
    
    // deny access to admins profile. User is redirected to the homepage
    function bpfr_hide_admins_profile() {
    	global $bp; 
    	if(bp_is_profile && $bp->displayed_user->id == 1 && $bp->loggedin_user->id != 1) :
    		wp_redirect( home_url() );
    	exit;
    	endif;
    }
    add_action( 'wp', 'bpfr_hide_admins_profile', 1 );
    

    2. – Remove admin from the member directory and recount members

    COPY CODE
    
    // Remove admin from the member directory
    function bpdev_exclude_users($qs=false,$object=false){
        
        $excluded_user='1'; // Id's to remove, separated by comma
    	
        if($object != 'members' && $object != 'friends')// hide admin to members & friends 
        return $qs;
    	
        $args=wp_parse_args($qs);
    
        if(!empty($args['user_id']))
        return $qs;	
    	
        if(!empty($args['exclude']))
    		$args['exclude'] = $args['exclude'].','.$excluded_user;
        else
    		$args['exclude'] = $excluded_user;
    	
        $qs = build_query($args);
    
        return $qs;
    	
    }
    add_action('bp_ajax_querystring','bpdev_exclude_users',20,2);
    
    // once admin is removed, we must recount the members !
    function bpfr_hide_get_total_filter($count){
        return $count-1;
    }
    add_filter('bp_get_total_member_count','bpfr_hide_get_total_filter');
    

    3. – Hide admin’s activities from all activity feeds

    COPY CODE
    
    // hide admin's activities from all activity feeds
    function bpfr_hide_admin_activity( $a, $activities ) {	
    	
    	// ... but allow admin to see his activities!
    	if ( is_site_admin() )	
    		return $activities;	
    	
    	foreach ( $activities->activities as $key => $activity ) {	
    		// ID's to exclude, separated by commas. ID 1 is always the superadmin
    		if ( $activity->user_id == 1  ) {			
    			
    			unset( $activities->activities[$key] );			
    			
    			$activities->activity_count = $activities->activity_count-1;			
    			$activities->total_activity_count = $activities->total_activity_count-1;			
    					$activities->pag_num = $activities->pag_num -1;				
    		}		
    	}		
    	// Renumber the array keys to account for missing items 	
    	$activities_new = array_values( $activities->activities );		
    	$activities->activities = $activities_new;	
    	
    	return $activities;
    	
    }
    add_action( 'bp_has_activities', 'bpfr_hide_admin_activity', 10, 2 );
    

    For the premium accounts this would require some extra time and development, i suggest to hire a developer to do it for you 🙂

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Hide and Show Section #82828
     Laura
    Moderator

    Hello, changed 🙂
    To add this to any other website, you should paste it in text editor as:

    COPY CODE
    
    [vc_accordion collapsible="" disable_keyboard="" icons_position="to-left" active_tab="false"][vc_accordion_tab icon="play-circled" icon_closed="play-round-circled" tooltip_position="left" tooltip_action="hover" title="Explore the Woodbriar Advantage" el_id="videorow"][vc_raw_html]
    
    JTNDZGl2JTIwY2xhc3MlM0QlMjJ2aWRlb2QlMjIlM0UlM0NpZnJhbWUlMjB3aWR0aCUzRCUyMjg1MyUyMiUyMGhlaWdodCUzRCUyMjQ4MCUyMiUyMHNyYyUzRCUyMmh0dHBzJTNBJTJGJTJGd3d3LnlvdXR1YmUuY29tJTJGZW1iZWQlMkZGdG9tX2U3TFJpQSUyMiUyMGZyYW1lYm9yZGVyJTNEJTIyMCUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRSUzQyUyRmlmcmFtZSUzRSUzQyUyRmRpdiUzRQ==
    
    [/vc_raw_html][vc_raw_html]
    
    JTNDZGl2JTIwY2xhc3MlM0QlMjJtb2JpbGV2JTIyJTNFJTNDaWZyYW1lJTIwd2lkdGglM0QlMjI4NTMlMjIlMjBoZWlnaHQlM0QlMjIxMDAlMjUlMjIlMjBzcmMlM0QlMjJodHRwcyUzQSUyRiUyRnd3dy55b3V0dWJlLmNvbSUyRmVtYmVkJTJGRnRvbV9lN0xSaUElMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0UlM0MlMkZkaXYlM0U=
    
    [/vc_raw_html][/vc_accordion_tab][/vc_accordion]
    

    And in the page CSS

    COPY CODE
    
    .panel1 .panel-title a {
        color: white !important;
    
    }
    .panel1 .wpb_wrapper {
        background-color: #236a95;
    }
    .panel1 .panel {
        background-color: #236a95 !important;
    }
    .panel1 .panel {
        margin-left: 2%;
    }
    .panel1 .panel {
        border: none !important;
    }
    span.icon-closed.icon-play-round-circled:before {
    margin-top: 3%;
        position: absolute;
        margin-left: 46.6% !important;
        color: white;
        font-size: 23px;
    }
    .panel-heading {
        height: 80px;
    }
    span.icon-opened.icon-play-circled:before {
    margin-top: 3%;
        position: absolute;
        margin-left: 46.6% !important;
        color: white;
        font-size: 23px;
    }
    .wpb_video_wrapper {
        width: 70%;
        margin-left: 13%;
    }
    .panel-body {
        border: none !important;
    }
    .text4 a:hover {
        color: #236A95 !important;
    }
    .testimonial-meta {
    font-size: 14px !important;
    }
    .post-meta {
        display: none !important;
    }
    .news-highlight article {
        width: 49% !important;
        float: left;
        padding-right: 15px;
    }
    @media (max-width: 991px) {
    span.icon-closed.icon-play-round-circled {
        margin-top: 8% !important;
        margin-left: -5% !important;
    }
    span.icon-opened.icon-play-circled {
        margin-top: 8% !important;
        margin-left: -5% !important;
    }
    .mobilev {
        display:block !important;
    }
    .videod {
        display:none;
    }
    span.icon-closed.icon-play-round-circled:before {
        margin-top: -3% !important;
    }
    span.icon-opened.icon-play-circled:before {
    margin-top: -3%;
    }
    }
    .mobilev {
        display:none;
    }
    

    Also attached as a text file

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    Attachments:
    You must be logged in to view attached files.
    in reply to: Few question related to theme layout #82783
     Laura
    Moderator

    Hello, try by adding this to your functions.php :

    COPY CODE
    
    if( is_user_logged_in() ) {  } else {
    echo '
    <style>
    ul#menu-sweetdate {
        display: none !important;
    }
    </style>
    ';
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Main menu background transparent #82537
     Laura
    Moderator

    Hello 🙂
    Try by adding this to style.css of child theme

    COPY CODE
    
    @media (max-width: 991px) {
    .kleo-navbar-fixed.navbar-transparent.on-light-bg #header {
        background-color: rgba(115, 59, 59, 0);
    }
    .wpb_revslider_element.wpb_content_element {
        margin-top: -29%;
    }
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: boxed layout – rounded corners #82535
     Laura
    Moderator

    Hello, please add this to child theme style.css

    COPY CODE
    
    .page-boxed {
        box-shadow: none !important;
    }
    

    The border corners woudnt be visible as now there shouldnt be a shadow in the page, so make a white page rounded in a white background doesnt do nothing, let me know if you want to do something else 🙂

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Customize Button Styles #82484
     Laura
    Moderator

    Hello, sorry for the delay, please try with:

    COPY CODE
    
    a.btn.btn-see-through.btn-large {
        background-color: #ff9900;
        border-color: #ff9900 !important;
    }
    a.btn.btn-see-through.btn-large:hover {
        background-color: #efa43b;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Theme Questions: Can you help me with these theme edits? #82181
     Laura
    Moderator

    Hello, do not worry, those fields are private.

    • I have added the recommended CSS to redirect buddypress users to login before they can view appropriate pages. Is there a way to make this the KLEO login pop-up instead of the wp-login page?

    That would require some development, you could redirect them to homepage instead.

    • How do I redirect users to their account activity page after login?

    May use https://es.wordpress.org/plugins/buddypress-login-redirect/

    – Homepage:
    • How can I hide/remove the words [Public Group] from the groups masonry on the homepage?

    By adding this to style.css of child theme

    COPY CODE
    
    #buddypress #groups-list li div.meta {
        display: none !important;
    }
    

    • How do I add real-time metrics to the homepage ticker?

    You can add bbpress stats by KLEO shortcodes found in page edit visual section

    – Profile Page:

    • How do I remove/hide “View” link from header area?

    By adding this to style.css of child theme

    COPY CODE
    
    div#latest-update a {
        display: none !important;
    }
    

    • How do I rename “My Articles” to “My Blogs”?

    By translating the social articles plugin using Loco Translate plugin

    • Can I move the messaging buttons to higher up on profile page instead of below the profile pic area?

    By adding this to style.css in child theme

    COPY CODE
    
    div#item-buttons {
        margin-top: -19%;
        position: absolute;
        margin-left: 40%;
    }
    

    Hope it helped 🙂

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Top-Bar Height Not Same As Nav Menu’s #82180
     Laura
    Moderator

    Hello, try by adidng this to style.css of child theme

    COPY CODE
    
    .kleo-main-header.header-normal.header-scrolled {
        height: 50px !important;
    }
    .kleo-main-header.header-normal.header-scrolled.kleo-main-header.header-normal .navbar-collapse {
        padding-top: 5px;
    }
    .kleo-main-header.header-normal.header-scrolled .logo img {
        width: 150px !important;
        height: 150px !important;
    }
    .kleo-main-header.header-normal.header-scrolled .logo {
        height: 50px;
    }
    

    Let me know if it helps 🙂

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: background-size not properly applied #82166
     Laura
    Moderator

    Hello, please try by adding this to style.css

    COPY CODE
    
    #main>.main-color {
        background-size: cover !important;
        background-repeat: no-repeat;
        background-color: #ffc !important;
        background-attachment: fixed;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Position post update button #82160
     Laura
    Moderator

    Hello, please try by adding this to style.css

    COPY CODE
    
    select#activity-privacy {
        margin-left: -65%;
    }
    input#aw-whats-new-submit {
        margin-left: 45%;
        margin-top: -20%;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Edit website registration options #81960
     Laura
    Moderator

    Hello, for the modal, try by adding this to style.css

    COPY CODE
    
    .kleo-pop-title-wrap.main-color {
        display: none;
    }
    form#login_form {
        display: none;
    }
    div#kleo-login-modal .gap-20 {
        display: none;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: a few easy questions #81881
     Laura
    Moderator

    Hello, please try by adding this to style.css

    COPY CODE
    
    #logo img {
        width: 512px !important;
        height: 104px;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Several issues slowing my website #81729
     Laura
    Moderator

    Hello, the only error i seen was

    COPY CODE
    
    You have included the Google Maps API multiple times on this page. This may cause unexpected errors.
    

    And it may be caused by a plugin
    I suggest deactivating some plugins one by one and testing again, sometimes errors appear because of plugin conflicts 🙂

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Home Page on mobile #81645
     Laura
    Moderator

    Hello, try by adding this to style.css of child theme 🙂

    COPY CODE
    
    @media only screen and (max-width: 940px) {
    section.section.with-border {
        display: none;
    }
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: redirect login/register link to popup window #81517
     Laura
    Moderator

    Hello, try to wrap the button with this

    COPY CODE
    
    <a href="#"><i class="icon-user hide-for-medium-down"></i> LOG IN</a>
    

    It should reveal the modal, let me know if it works 🙂

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Glossy header #81183
     Laura
    Moderator

    Hello, try this replacing the other code

    COPY CODE
    
    body.page.page-id-816 #header {
        background: rgba(255, 255, 255, 0.07);
        border-bottom: 1px rgba(255, 255, 255, 0.37) solid;
        height: 100px;
    }
    @media only screen and (max-width: 940px) {
    body.page.page-id-816 .top-bar > ul .name h1 a {
        background: #000000 !important;
    }
    body.page.page-id-816 .top-bar ul > li.has-dropdown .dropdown li.has-dropdown > a li a:hover, .top-bar ul > li.toggle-topbar {
        background: #000000 !important;
    }
    body.page.page-id-816 nav.top-bar a {
        color: white !important;
    }
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Footer Sections #80992
     Laura
    Moderator

    Hello, the regular license is only for 1 domain and can not be used or duplicated for other websites. The extended license does allow it i think up to 15 domains.

    About the copyright, its done in General settings of theme options, scroll down to find Footer text, i added:

    COPY CODE
    
    <p style="text-align: left;float:left;"><strong>©[current-year] Woodbriar Health Center</strong> part of the <a href="http://synergyhc.org" target="_blank">Synergy Health Centers</a></p> <p style="text-align: right;float:right;"><a href="http://synergyhc.org" target="_blank">Synergy Health Centers</a> /  <a href="http://synergyhc.org" target="_blank">Synergy Health Centers</a>  /  <a href="http://synergyhc.org" target="_blank">Synergy Health Centers</a></p>
    

    You will need to change the text and links of each site.
    Footer color is already #252525

    About ” the text that says “OUR OTHER HEALTH CENTERS” stretches and becomes unreadable. Anything to do about that? ” i did not see that, could you explain a bit more so i can see it?

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Buddypress profile cover plugin #80703
     Laura
    Moderator

    Hello, changed with

    COPY CODE
    
    @media screen and (min-width: 800px) {
    section.alternate-color.bp-full-width-profile div#item-header-avatar {
        margin-left: -40% !important;
        position: absolute !important;
        margin-top: 5% !important;
    }
    section.alternate-color.bp-full-width-profile div#item-header {
        height: 400px !important;
    }
    div#item-header-content a {
        margin-left: -50%;
    }
    section.alternate-color.bp-full-width-profile div#item-header-avatar {
        margin-left: -40% !important;
        position: absolute !important;
        margin-top: 15% !important;
    }
    .buddypress.bbp-user-page.single.singular section.alternate-color.bp-full-width-profile div#item-header-content {
        margin-top: 17%;
    }
    .single-item.groups div#item-meta {
        background-color: rgba(48, 69, 79, 0.43);
        padding: 20px;
        padding-left: 50px;
        padding-right: 400px;
    }
    .single-item.groups div#item-meta {
        margin-top: 15.2% !important;
        position: absolute;
        margin-left: 18%;
    }
    }
    
    section.alternate-color.bp-full-width-profile div#item-header-content h4 {
        display: none !important;
    }
    section.alternate-color.bp-full-width-profile div#item-header-content .activity {
        display: none;
    }
    .buddypress.bbp-user-page.single.singular section.alternate-color.bp-full-width-profile div#latest-update {
        display: none;
    }
    .group-admins.col-sm-12 {
        display: none;
    }
    

    Is that what you wanted?

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Glossy header #80685
     Laura
    Moderator

    Hello, for the glossy header try adding this to style.css of child theme and need to find a good slider image that creates the contrast of dark and white like attached.

    COPY CODE
    
    div#header {
        background: rgba(255, 255, 255, 0.07);
        border-bottom: 1px rgba(255, 255, 255, 0.37) solid;
        height: 100px;
    }
    

    For mobile menu white color:

    COPY CODE
    
    @media only screen and (max-width: 940px) {
    .top-bar > ul .name h1 a {
        background: #000000 !important;
    }
    .top-bar ul > li.has-dropdown .dropdown li.has-dropdown > a li a:hover, .top-bar ul > li.toggle-topbar {
        background: #000000 !important;
    }
    nav.top-bar a {
        color: white !important;
    }
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    Attachments:
    You must be logged in to view attached files.
    in reply to: getting rid of spaces in members page #80683
     Laura
    Moderator

    Hello, please add this style.css of child theme

    COPY CODE
    
    body.directory.members.buddypress.page #main {
        padding-top: 0px !important;
    }
    div#members-dir-list {
        margin-top: -5%;
    }
    .search-item .author {
        margin-bottom: -2%;
    }
    

    For extra information you could use this code in functions.php
    https://archived.seventhqueen.com/forums/topic/about-us-info-not-show-in-member-listing/#post-66413

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Member Listing page (pictures, text, and space) .. #80675
     Laura
    Moderator

    Hello, did 2,4 and 5 in style.css of child theme, changes wont be lost as you only need to update main theme.
    About 1, you will need to change the name field to something else so users dont write their full name there
    About 3, you will need to hire a developer as that requires editing theme files.

    Here is the css i added for 2,4 and 5

    COPY CODE
    
    #members-list .four.columns:nth-child(4n+1) {
        clear: left;
    }
    div#members-dir-list .four, .row .four {
        width: 23.33333% !important;
    }
    #members-list .four.columns:nth-child(3n+1) {
        clear: right !important;
    }
    .search-item .avatar {
        width: 185px;
        height: 164px;
    }
    .search-item .avatar img {
        width: 185px;
        height: 155px;
    }
    .search-body {
        display: none;
    }
    .bp-member-dir-buttons {
        display: none;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Change Menue Text color #80498
     Laura
    Moderator

    Hello, you could try with:

    COPY CODE
    
    nav.top-bar a {
        color: black !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

     Laura
    Moderator

    Hello, could not login, can you try by adding this to wp-config.php?

    COPY CODE
    
    define('WP_MEMORY_LIMIT', '296M');
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Membership Level display #80477
     Laura
    Moderator

    Hello, please add this to style.css of child theme

    COPY CODE
    
    .row.just-after-header {
        margin-left: 16%;
    }
    

    Can you share ftp? There is an issue in your functions.php

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Signup button link to Memberships Levels #80235
     Laura
    Moderator

    Hello, you can change that button padding using this css

    COPY CODE
    
    #login_panel a.radius.secondary.small.button {
        padding: 10px;
    }
    

    In style.css

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Transparent menu / Transparent button hover color #80233
     Laura
    Moderator

    Hello, yes, you can select by menu item or all menu items
    All menu items:

    COPY CODE
    
    ul#menu-top li:hover {
        background-color: black;
    }
    ul#menu-top li a:hover {
        color: white;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Members Not Appearing #80231
     Laura
    Moderator

    Hello, they will appear once they login for the first time 🙂 As they are dummy users you could try adding this to functions.php of child theme

    COPY CODE
    
    add_action('bp_core_activated_user', 'kleo_add_member_activity');
    function kleo_add_member_activity($user_id)
    {
    	add_user_meta( $user_id, 'last_activity', date("Y-m-d H:i:s"));
    }
    

    And go to Tools > Buddypress then check all options

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Membership Level display #79979
     Laura
    Moderator

    Hello, credentials are no longer working, please share again, the memory error can be solved if you add this to wp-config.php Just below the “That’s all…”

    COPY CODE
    
    define('WP_MEMORY_LIMIT', '296M');
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Transparent menu / Transparent button hover color #79635
     Laura
    Moderator

    Hello, for that button style, the css is

    COPY CODE
    
    a.btn.btn-see-through.btn-lg:hover {
        background-color: red;
        color: white;
    }
    

    For the menu, you want it to be transparent in what page? And the hover just for the transparent menu or for all

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Activity not updating #79281
     Laura
    Moderator

    Hello, could you try deactivating some plugins and testing again? it could be a conflict.
    If not, maybe try adding this to wp-config.php below “That’s all…”

    COPY CODE
    
    define('WP_MEMORY_LIMIT', '296M');
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Activity stream disappears in WordPress dashboard #79280
     Laura
    Moderator

    Hello, it may be a memory limit issue, could you try adding this to wp-config.php ? Under “that’s all..”

    COPY CODE
    
    define('WP_MEMORY_LIMIT', '296M');
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

     Laura
    Moderator

    Hello, in the child theme you should have a header.php empty if not copy the main file and paste it there. Right not there is no function for that.
    Yes, if you want to hide any other menu item just add it to the code like:

    COPY CODE
    
    li#menu-item-3112 {
        display: none !important;
    }
    

    Inside the <style> </style> where the other one is
    Just change the menu item id

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Blog carousel on frontpage is cut off #78936
     Laura
    Moderator

    Hello, used this in style.css

    COPY CODE
    
    @media screen and (min-width: 800px) {
    .carousel-stories.responsive {
        width: 1500px;
        height: 1000px;
    }
    .carousel-stories {
        overflow: hidden;
        max-height: 594px;
        clear: both;
        padding-top: 20px;
    }
    .kleo-carousel {
        height: 600px;
        width: 1400px;
        margin-left: -30%;
    }
    .caroufredsel_wrapper {
        height: 600px !important;
        width: 1550px;
    }
    ul.feature-stories li {
        width: 594px;
    }
    .carousel-stories li {
        text-align: center;
        max-width: 526px;
        padding: 0 8px;
        display: block;
        float: left;
    }
    a.imagelink {
        width: 494px;
    }
    img.attachment-blog_carousel.wp-post-image.lazyloaded {
        width: 494px;
        height: 394px;
    }
    }
    @media only screen and (max-width: 940px) {
    .caroufredsel_wrapper {
        height: 600px !important;
    }
    }
    

    Do you like it?

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Icons and underlining the column below. #78923
     Laura
    Moderator

    Hello, about the icons i can see them, check out your plugin, maybe one was creating a conflict, i deactivated some to test and its working
    For the line, please add this to style.css of child theme

    COPY CODE
    
    .hr-title.hr-full.hr-center {
        padding-top: 30px;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    Attachments:
    You must be logged in to view attached files.
    in reply to: News focus bug #78918
     Laura
    Moderator

    Hello, please try adding this to style.css of child theme

    COPY CODE
    
    ul.kleo-carousel {
        height: 400px !important;
    }
    .caroufredsel_wrapper {
        height: 400px !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

Viewing 40 posts - 2,281 through 2,320 (of 2,796 total)

Log in with your credentials

Forgot your details?