Forum Replies Created

Viewing 40 posts - 20,521 through 20,560 (of 25,000 total)
  • Author
  • in reply to: Large space between header and page heading #82948
     Laura
    Moderator

    Hello, took off all the padding of your content as you wanted, there is not much more i can do

    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 #82899
     Laura
    Moderator

    It was a pleasure 🙂

    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: Search quantity in form and add another social network #82898
     Laura
    Moderator

    Hello, seems to be a bit complicated, i would suggest to stay as is or maybe buy the ajax search pro plugin

    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: Sidebar for buddypress pages #82897
     Laura
    Moderator

    Hello, in theme settings you should be able to select the buddypress slider layout, all buddypress pages share the same sidebar, Buddypress sidebar

    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 🙂

    in reply to: Buddypress Header #82895
     Laura
    Moderator

    Hello, this would require some 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 🙂

     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: Formatting gone askew post theme update #82893
     Laura
    Moderator

    Hello, you could check the post revisions to see what changed or to restore one
    If not working let me know and i will check it out

    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: All memberships show the same #82891
     Laura
    Moderator

    Hello, will assign the ticket to a higher support lever who can help and advise you in your query.
    Thanks! 🙂

    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 question #82889
     Laura
    Moderator

    Hello, glad you could resolve 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: PMPro and messages #82888
     Laura
    Moderator

    Hello, right now that is not possible, maybe in a future update, or by hiring a developer 🙂 The restrictions of sweetdate menu are controlled by the sweetdate pmpro functions

    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 search #82887
     Laura
    Moderator

    Hello, i see the issue, its because of the man and woman field
    In i am a, you have 2 options, man and woman
    So in looking for a, you should have THE SAME options (same name) of i am a, so the script can work correctly

    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 you please let me know how do you example “disable buddypress” Because the issue is again related to the database, the database is broken again, how do you exacly disable buddypress? By editing the database?
    Please let me know so i can help you on this.
    Buddypress doesnt change nothing in the database to broke it, it seems like something changed it.
    The way to disable a plugin by cpanel is going to ftp files and renaming the plugin folder inside wp-content/plugins
    To resolve this issue i need to know what did you do to disable the plugin, exactly, so i can fix it and then check out why buddypress doesnt let you go to backend

    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: Hide and Show Section #82812
     Laura
    Moderator

    Hello, understood 🙂 Working on it now

    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: Too much items in the menu #82811
     Laura
    Moderator

    Hello, i could fix the menu issue for that size if you prefer, changing the mobile menu to appear early would be a lot of work

    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 #82809
     Laura
    Moderator

    Hello, for 3 i think its a cache or browser issue because i do not see it, have you tried with another device?
    for 1, Envato handle the licenses, we cannot do nothing, so to have the same theme for 15 sites you do need the extended license.

    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: "Like" For BuddyPress Activity Stream #82808
     Laura
    Moderator

    Hello, i see… hmm maybe this https://wordpress.org/plugins/voter-plugin/
    Or you could test with ratings instead of votes like https://wordpress.org/plugins/rating-widget/

    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: Add Google Custom Search to theme header #82807
     Laura
    Moderator

    Hello, your test is private, you can go ahead and post your ftp credentials 🙂

    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: How to take off this? #82806
     Laura
    Moderator

    Hello, it seems to be related to the slider background image, i could check it out for you, can you share admin credentials in a private reply?

    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: Username #82804
     Laura
    Moderator

    Hello, have you tested the following plugin? https://wordpress.org/plugins/buddypress-usernames-only/
    It should do it 🙂
    Let me know

    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: revolution slider #82803
     Laura
    Moderator

    Hello, please let me know more details so i can help you.
    To edit sliders you should go to Revolution Slider
    And a list of sliders should appear, then you will be able to edit, delete, import 🙂

    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 link to become member #82801
     Laura
    Moderator

    Hello, i am very sorry that you encountered this issue, it could have been related to the child theme modifications, so the solution would have been deleting the file.
    I understand how you feel, but i would encourage you to continue using this support forum if you have any issue, because we will be glad to help you, if you prefer to be helped by someone else i will also understand.
    Thanks 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: missin icons more issues please to action #82784
     Laura
    Moderator

    Hello, will assign the ticket to a higher support lever who can help and advise you in your query.
    Thanks! 🙂

    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 #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: Just HTML/CSS/JS #82782
     Laura
    Moderator

    Hello, yes we have an HTML version at http://themeforest.net/item/sweet-date-premium-landing-page-for-lovers/4285315?ref=KGuMiHo

    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: message on the background picture #82781
     Laura
    Moderator

    Hello, i do not see that message, i suppose you could resolve 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: boxed layout – rounded corners #82780
     Laura
    Moderator

    Glad it helped! 🙂 I will be here if you need anything 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: EDIT BUTTONS #82778
     Laura
    Moderator

    Hello, deleted the cart icon 🙂
    For the products, sadly you can only link 1 woocommerce product to your courses, not 2, please see attached

    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: Buddypress Activity Posting/Comments background #82768
     Laura
    Moderator

    Hello, glad you could resolve it! I will be here if you need anything more, just start a topic and call me 🙂

    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: Featured Product – WooCommerce #82767
     Laura
    Moderator

    Hello, the feature product should enable the products to appear in the feature product slider, what kind of badge do you want it to have?

    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: User and Friends only in activity stream #82766
     Laura
    Moderator

    Hello, please let me know once i can check it out 🙂

    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: search form field name changes.. #82764
     Laura
    Moderator

    Hello, i see, it may be related to the php email, try by installing this plugin (attached) and configure it with your server smtp settings:

    Go to your hosting account cpanel, to email, create an email for your domain if you still dont have one, next to the options of the email, you should see a More button (or something like that ) Select configure mail, a new window should appear, scroll down to find your email server credentials, one should be secure and the other non secure, first try the secure one, find “SMTP PORT” now in your plugin settings, in server add the email server (appears in the page we were before) the email username ( usually is the full email) and the email password ( usually cpanel password )
    Finally add the SMTP PORT and save, try now a test email or create an user and see if it shows. If it doesnt, try the steps again but with non secure section

    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: Search quantity in form and add another social network #82603
     Laura
    Moderator

    Hello, for search i will need wp admin credentials 🙂
    I have added the tripadvisor icon, now you would need to go to Child theme > page-parts > general-header-section.php

    Edit that file and change the links below:
    1- The image source for the icon
    2- The link where the icon points to

    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: Possible to add new fields to the membership table #82602
     Laura
    Moderator

    Hello, glad you could find a solution 🙂

    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: Transfer member from existing site #82601
     Laura
    Moderator

    Hello, for 1: this is not possible right now.
    2: Did you add them to social info section? About footer you will need to add a widget 🙂
    3: Check out: https://archived.seventhqueen.com/forums/topic/fake-number-of-members

    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: Privacy #82600
     Laura
    Moderator

    Hello, the theme adds a style to buddypress plugin, it doesnt add the members functionality or register functionality, it just styles it. As for paid support, we sell the theme not the support, it was optional for us to offer support to our customers, so its actually free 🙂

    I will try to help you on this as much as i can with the resources that wordpress gives, right now we need to focus on plugins and those are the ones available.

    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 search #82599
     Laura
    Moderator

    Hello, could you share admin credentials so i can check it out? 🙂

    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: input grew-up on the click and we got a button problem #82597
     Laura
    Moderator

    Hello, no problem, i will be here if you need anything 🙂

    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: getting rid of spaces in members page #82596
     Laura
    Moderator

    Hello, can you link me to the page so i can inspect 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 🙂

Viewing 40 posts - 20,521 through 20,560 (of 25,000 total)

Log in with your credentials

Forgot your details?