Forum Replies Created

Viewing 40 posts - 961 through 1,000 (of 2,655 total)
  • Author
  • in reply to: Modifying Members Display #5146
     SQadmin
    Keymaster

    Thanks for your suggestion. We can;t put it in the next update but we will note it down

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Home page image #5145
     SQadmin
    Keymaster

    Hi, In our demo we set the Image to none from Sweetdate- HOmepage and selected our slider from the dropdown.
    Maybe your image is too big?
    You could use the slider in conjunction with the background image from Sweetdate – Buddypress if you have the same background in all slides and only add the animations in slider

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Add new description – Membership Levels #5144
     SQadmin
    Keymaster

    Hi,
    You can add this to sweetdate-child/functions.php. This won’t actually add a restriction but it will allow you to display the text in front-end and customize the setting from Sweetdate – Memberships like other restrictions

    COPY CODE
    
    
    add_filter('kleo_pmpro_level_restrictions', 'my_restriction_option');
    function my_restriction_option($settings) {
    	$settings[] =     array(
            'title' => __('Restrict users from adding media to their profile using rtMedia or bpAlbum','kleo_framework'),
            'front' => __('Add media to your profile','kleo_framework'),
            'name' => 'my_setting_alias'
        );
    	
    	return $settings;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: BP-WP-profile-reviews #5143
     SQadmin
    Keymaster

    Hi,
    I customized it to match the theme structure. You need to do the following steps to fix all styling:
    – Add this code to sweetdate-child/functions.php

    COPY CODE
    remove_action('bp_after_member_header','prorevs_add_star_loop_header');
    add_action('bp_before_member_header_meta','prorevs_add_star_loop_header');
    
    remove_action('bp_directory_members_actions','prorevs_add_star_loop_content');
    add_action('bp_members_meta','prorevs_add_star_loop_content', 11);
    
    function my_prorevs_member_header()
    {
    	if ($GLOBALS['bp']->current_component == "reviews") {
    		return false;
    	} else {
    		?>
    		<div class="generic-button">
    			<a class="add-reviews button" title="Add reviews for this user."
    				href="<?= bp_get_displayed_user_link() ?>reviews/">Add Review</a>
    		</div>
    		<?php
    	}
    }
    remove_action('bp_member_header_actions', 'prorevs_member_header');
    add_action('bp_member_header_actions', 'my_prorevs_member_header');

    – Add this code to WP Admin – Sweetdate – Styling options – Quick css:

    COPY CODE
    
    #profile .rating-top {margin-top:15px;clear:left; display:block}
    #profile .rating-top img {vertical-align: middle;}
    .activity-inner .ratingtop {display:block}
    .activity-inner .ratingtop img {display:inline-block;}
    .activity #activity-stream div.activity-avatar { float: left; position: relative; z-index: 1; }
    .activity #activity-stream li { border-left: 1px solid #e5e5e5; list-style: none outside none; margin: 0 0 0 25px; padding: 30px 0 0;float:left; }
    #activity-stream div.activity-avatar img {     border-radius: 50%; -moz-border-radius: 50%; -webkit-border-radius: 50%; display: inline-block; }
    #activity-stream div.activity-avatar img {width:60px;}
    #activity-stream div.avatar, #activity-stream div.activity-avatar { height: 60px;width: 60px; left: -30px; margin-bottom: 20px;overflow: hidden; position: relative; z-index: 1;border: 2px solid #fff;border-radius: 50%; -moz-border-radius: 50%; -webkit-border-radius: 50%;-webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2); -moz-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2); box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: See what user accounts are activated and which not. #5110
     SQadmin
    Keymaster

    Oh, this could be a start: http://wordpress.org/plugins/buddypress-pending-activations/

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Horizontal Search Field Bacground Color #5097
     SQadmin
    Keymaster

    I changed the code for that background. see 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
     SQadmin
    Keymaster

    Hi, Where exactly are you referring? Please give us more details.
    On the Home page there are the shortcodes that show Woman/man online. See this topic: https://archived.seventhqueen.com/forums/topic/big-bug-with-manwoman-number-and-search

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: See what user accounts are activated and which not. #5093
     SQadmin
    Keymaster

    Maybe try a plugin. We haven’t seen this on forum or developed it

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: remove group count #5092
     SQadmin
    Keymaster

    ok no problem. Add it in WP admin – Sweetdate – Styling options – Quick css box(bottom of the page)

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Reveal Modals #5091
     SQadmin
    Keymaster

    As I said, you have there all you need, just copy/paste operation. Here it is just in case..

    COPY CODE
    
    <div id="myModal2" class="reveal-modal">
      <h2>Awesome. I have it.</h2>
      <p class="lead">Your couch.  It is mine.</p>
      <p>Im a cool paragraph that lives inside of an even cooler modal. Wins</p>
      <a class="close-reveal-modal">×</a>
    </div>
    
    
    <a href="#" class="button" data-reveal-id="myModal2">Click Me For A Modal</a>
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Can't change language #5090
     SQadmin
    Keymaster

    You need to download wordpress in your language, copy wp-content/languages to your site and change the setting in wp-config.
    That should do it.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: City Field #5089
     SQadmin
    Keymaster

    Hi, I am glad you like our theme. We are constantly improving it and we are releasing things related to the importance and user requests.
    This is one of the features we are working on for next update but we do not have a time estimate. Probably a month or more until this update.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: myCRED Modification Commission #5088
     SQadmin
    Keymaster

    Hi,
    Send us an email at themesupport@seventhqueen.com with more details and we will come back with an answer.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Adding 728X90 Banner #5087
     SQadmin
    Keymaster

    HI, You can add it at the end of header.php. If you have a shortcode to render, use it with php like this:

    <?php echo do_shortcode('[my_shortcode]');?>

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Custom Button Redirection #5086
     SQadmin
    Keymaster

    You can’t do this from the menu since the links are dynamic.
    See: http://wordpress.stackexchange.com/questions/35163/add-buddypress-profile-and-messages-link-to-wordpress-menu

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

    Fields are added only from Users – Profile fields

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: How to search by username? #5055
     SQadmin
    Keymaster

    The files to edit are registration/register.php and page-parts/general-register-modal.php

    You can’t make Buddypress to check those.. you must come with a Javascript or something for the check,

    Cheers

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Adding States #5054
     SQadmin
    Keymaster

    You can take a look on how we generated them in sweetdate/custom_buddypress/bp-functions.php lines 286 – 509

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: remove group count #5053
     SQadmin
    Keymaster

    By css:

    COPY CODE
    
    #groups .group-item .circular-item {display:none;}
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Log in – front page #5052
     SQadmin
    Keymaster

    Oh, Sorry.
    There is no login form that you can paste. You can inspire from page-parts/general-login-modal.pgp

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Reveal Modals #5051
     SQadmin
    Keymaster

    Hi,
    Sweetdate is built on Zurb Foundation Framework. See this page for modals: http://foundation.zurb.com/old-docs/f3/reveal.php

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Hide Profile tab #5050
     SQadmin
    Keymaster

    You are getting an 404 error on all site? I don’t understand. This code will remove the “Profile” tab from the navigation menu in a member profile(not your own so you can still edit it):

    This snippet added to sweetdate-child/functions.php

    COPY CODE
    
    function my_remove_profile_nav() {
    	global $bp;
        if (!bp_is_my_profile()) {
            bp_core_remove_nav_item( 'profile' );
        }
    
    }
    add_action( 'bp_setup_nav', 'my_remove_profile_nav' );
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Horizontal Search Field Bacground Color #5048
     SQadmin
    Keymaster

    If you mean the dropdown fields:

    COPY CODE
    
    form.custom div.custom.dropdown ul li.selected {
        background: none repeat scroll 0 0 #CDEBF5;
        color: #000000;
    }
    form.custom div.custom.dropdown ul li {
        background: #ffffff;
        color: #555555;
    }
    .form-search.custom div.custom.dropdown a.current {
        background-color: #FFFFFF;
        border: 1px solid #DDDDDD;
        color: #141414;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Guest Account #5047
     SQadmin
    Keymaster

    Hi,
    There isn’t a way of forcing the member to register. Normally if the trial expires he won’t have acces to some features and he will probably upgrade

    If the trial elapses the the user will be seen like a user with no membership

    In Sweetdate – memberships you have all settings related to budypress restrictions

    You can follow this logic how I gave a solution to restrict Cometchat https://archived.seventhqueen.com/forums/topic/cometchat-plugin-compatibility

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Sweetdate WP Feature Requests #5046
     SQadmin
    Keymaster

    Thanks for your suggestions. We will take them in consideration

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: set up groups #5045
     SQadmin
    Keymaster

    Hi,
    You can create your landing pages, groups and links and when you send someone to login you can send him to wp-login.php?redirect_to=http://mydomain.com/mygroupurl

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Modifying Members Display #5043
     SQadmin
    Keymaster

    Hi, In next theme version you will be able to accomplish that with a shortcode to display members carousel like this:
    [kleo_members_carousel width=94 type=new total=10]
    You need to edit your Home page and remove all other shortcodes from it.

    To increase avatar size in members directory add this css to Sweetdate – Styling options – Quick css:

    COPY CODE
    
    #members-list .search-item .avatar { 
    width: 120px; height:120px;
    }
    

    Then you need to add you custom size also to this template file: sweetdate/members/members-loop.php around line 28:
    <?php bp_member_avatar(&#039;type=full&width=94&height=94&class=&#039;); ?>

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Urgent! Can't login/register anymore through modal.. #5041
     SQadmin
    Keymaster

    Hey man:

    Invalid App Id: Must be a number or numeric string representing the application id.
    all.js…xfbml=1 (line 56)
    FB.getLoginStatus() called before calling FB.init().
    all.js…xfbml=1 (line 56)
    FB.init has already been called – this could indicate a problem

    See those in Console from Firefox Firebug

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: V2.2 #5040
     SQadmin
    Keymaster

    🙂
    html in the page-parts/general-register-modal.php
    js,css in header.php

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: add a "spam" button for groups mods #5039
     SQadmin
    Keymaster

    Hi, This can be a start: https://gist.github.com/3815688

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Where to translate bp-album? #5038
     SQadmin
    Keymaster

    Correction. Sorry if will be fixed in v.2.3 of the theme. This will allow you to translate it:

    bpAlbum translation files reside in sweetdate/lib/bp-album/languages
    You need to copy the bp-album folder to your computer and translate it with Poedit.

    To fix temporary translation issue please replace this file: wp-content/themes/sweetdate/framework/inc/bp-album/includes/bpa.core.php
    with the content form this one:
    https://archived.seventhqueen.com/files/bpa.core.txt

    If you are using a child theme put the .mo and .po in sweetdate-child/languages/
    The file name should follow this example: bp-album-en_US.mo or bp-album-fr_FR.mo

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Translating, frontpage and search form #5037
     SQadmin
    Keymaster

    Hi,
    1. bpAlbum translation files reside in sweetdate/framework/inc/bp-album/languages
    You need to copy the bp-album folder to your computer and translate it with Poedit.
    Thanks for noticing this, I see that it doesn’t get translated. To fix it please replace this file: wp-content/themes/sweetdate/framework/inc/bp-album/includes/bpa.core.php
    with the content form this one:
    https://archived.seventhqueen.com/files/bpa.core.txt

    If you are using a child theme put the .mo and .po in sweetdate-child/languages/
    The file name should follow this example: bp-album-en_US.mo or bp-album-fr_FR.mo

    2. That won’t work for anyone so you need to make yourself this customization. You can read this topic to redirect users to their profile: https://archived.seventhqueen.com/forums/topic/redirect-user-to-their-profile-after-login
    search wordpress forums for extra info or try microlancer for custom work

    Thanks

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: How to translate this? #5035
     SQadmin
    Keymaster

    Hi,
    See the above answer related to those 2 phrases in the checkout page. You should not replace the strings in files when translating. Please use Codestyling Localization plugin to translate your theme.
    Thanks
    It should not be a nightmare 🙂 Plugin strings, even if we have some templates to override original ones from the plugin, are translated in the plugin folder. If we modify some default strings in the template(like is the case here with those 2 phrases from the checkout page) then those should have the ‘kleo_framework’ domain and should be translated in out theme.
    We just missed to change the domain from pmpro to kleo_framework.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: How to translate this? #5034
     SQadmin
    Keymaster

    Hi @twoshoes,
    You are right, those two sentences from the checkout page have been modified and they will be translated form the theme strings within the “kleo_framework” domain. Please replace your wp-content/themes/sweetdate/paid-memberships-pro/pages/checkout.php file with this https://archived.seventhqueen.com/files/checkout.txt and then using Codestyling Localization rescan the files and you will be able to translated those 2 sentences.

    I see what you mean by “View members directory”. Those are added by our theme in conjunction with the PMPRO plugin so you will find those strings in Sweetdate strings under the kleo_framework domain.

    Cheers

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Responsive Design off -> strange behave #5020
     SQadmin
    Keymaster

    Hi MarkNilsson, as a quick fix until the next update you can put the following line in Sweetdate/Styling options/Quick css box:

    COPY CODE
    
    .kleo-page { display: inherit;}
    

    Regards,
    Robert

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Blog Post Error & Replying Box #5015
     SQadmin
    Keymaster

    Hi,
    – You have to save them as draft or something miss-configured
    – General setting is under Settings – Discussions. Per page setting under the page you are editing in the Discussions sections(enable it from top page Screen options)
    – The widgets are site wide.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Bugs – rtMedia #5014
     SQadmin
    Keymaster

    I think it is obvious that if BP Default theme behaves the same way can’t really be a theme bug 🙂
    We’ll take a look at the Twenty Thirteen theme to see what is different

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Log in – front page #5013
     SQadmin
    Keymaster

    The code from the search form 🙂
    wp-content/themes/sweetdate/page-parts/home-search-form.php

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Private-Group request – No buttons! #5012
     SQadmin
    Keymaster

    Hi, I went to a private group, being logged in as Administrator, then to Admin -> Requests.
    Buttons are there

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: No Date Available… #5011
     SQadmin
    Keymaster

    Hi, You can remove them from Users – Profile fields.
    Clicking the reset to default doesn’t affect the created profiles, just the Theme options.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
Viewing 40 posts - 961 through 1,000 (of 2,655 total)

Log in with your credentials

Forgot your details?