Forum Replies Created

Viewing 40 posts - 1,041 through 1,080 (of 2,655 total)
  • Author
  • in reply to: Sign Up Homepage Login #4890
     SQadmin
    Keymaster

    Hi, Please come with more details and a link to your site because is the exact same question as the topic initiator and we responded already.
    Members need to activate profiles by their email to show in site,

    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 can I add a link to the horizontal search? #4889
     SQadmin
    Keymaster

    In that case follow @strikewebsolutions solution.
    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: Urgent! Can't login/register anymore through modal.. #4888
     SQadmin
    Keymaster

    I see this in your site: Invalid App Id: Must be a number or numeric string representing the application id.

    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: different fields #4873
     SQadmin
    Keymaster

    Hi, You can try this plugin: BuddyPress user account type PRO (allows different user types)
    By default the theme can’t do that

    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? #4872
     SQadmin
    Keymaster

    All I get is “Coming soon”

    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: Unable to change sidebar #4870
     SQadmin
    Keymaster

    That is related to all buddypress pages that can be changed from Sweetdate – Buddypress
    If you want to edit the template: sweetdate/members/index.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 fields to Member Directory #4861
     SQadmin
    Keymaster

    This is the code that should be added, with you changes on the field names:

    COPY CODE
    
    
    add_action('after_setup_theme',' kleo_my_member_data');
    function kleo_my_member_data()
    {
    	global $kleo_config;
    	//this is the details field, right now it take the “About me” field content
    	$kleo_config['bp_members_details_field'] = 'About me';
    	//this display the fields under the name, eq: 36 / Woman / Divorced / Berlin. Modify with the names of the fields you want to appear there
    	$kleo_config['bp_members_loop_meta'] = array(
    	'I am',
    	'Type',
    	'City'
    	);
    } 
    

    Because it does a caching on those fields you can add this also to sweetdate-child/functions.php and remove it once the new fields appear:

    COPY CODE
    
    delete_transient( 'kleo_bp_meta_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: Tab name from user field data #4860
     SQadmin
    Keymaster

    Try with them in the first function:

    COPY CODE
    
    add_action(‘bp_after_member_header’,'kleo_my_custom_tab’, 0);
    
    function kleo_my_custom_tab()
    {
    global $bp_tabs;
    $bp_tabs = array();
    /* Change About me to About Us & Add Our Photos tab on profile */
    $bp_tabs['base'] = array(
    ‘type’ => ‘regular’,
    ‘name’ => apply_filters(‘kleo_extra_tab2′,__(‘About Us’, ‘kleo_framework’)),
    ‘group’ => ‘About Us’,
    ‘class’ => ‘regulartab’
    );
    
    
    $bp_tabs[] = array(
    ‘type’ => ‘regular’,
    ‘name’ => bp_get_member_profile_data( ‘field=Partner 1: First Name’ ),
    ‘group’ => ‘Partner1′,
    ‘class’ => ‘regulartab’
    );
    
    $bp_tabs[] = array(
    ‘type’ => ‘regular’,
    ‘name’ => bp_get_member_profile_data( ‘field=Partner 2: First Name’ ),
    ‘group’ => ‘Partner2′,
    ‘class’ => ‘regulartab’
    );
    
    
    
    /* rtMedia tab – only if plugin installed */
    if (class_exists(‘RTMedia’))
    {
    $bp_tabs['rtmedia'] = array(
    ‘type’ => ‘rt_media’,
    ‘name’ => __(‘Our photos’, ‘kleo_framework’),
    ‘class’ => ‘mySlider’
    );
    }
    /* Bp-Album tab – only if plugin installed */
    elseif (function_exists(‘bpa_init’) AND sq_option(‘bp_album’, 1) == 1)
    {
    $bp_tabs['bp-album'] = array(
    ‘type’ => ‘bp_album’,
    ‘name’ => __(‘Our Photos’, ‘kleo_framework’),
    ‘class’ => ‘mySlider’
    );
    
    }
    
    

    Seems the code didn’t copied well. Do the changes in your existing code

    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: Cometchat plugin compatibility #4859
     SQadmin
    Keymaster

    Yes it is, don’t worry. Maybe you did something wrong.
    Provide us with temp access to your FTP please

    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: Slider Issues #4858
     SQadmin
    Keymaster

    Hi @gavinthompson,
    My code above had a dot missing. Sorry for that. Also you haven’t set the slider right. I modified the height of the slider to 520px

    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: Revolution Slider #4855
     SQadmin
    Keymaster

    Send them here: themesupport@seventhqueen.com

    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: Membership Level Expiration Date #4853
     SQadmin
    Keymaster

    Hi, As it says in the field description:
    “Set the duration of membership access. Note that the any future payments (recurring subscription, if any) will be cancelled when the membership expires.”
    So the counter starts from the date the membership is enabled regardless of the recurring options you set.

    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: Accordion close or half open #4850
     SQadmin
    Keymaster

    Nope. Copy them directly to the main theme since the next version will contain those changes and you won’t loose them.

    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 export the user profile? #4849
     SQadmin
    Keymaster

    Hi, There are some plugins out there. Just search
    Example: http://wordpress.org/plugins/wp-users-exporter/

    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: Create An account. #4845
     SQadmin
    Keymaster

    Hi, Try this: 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: Check if user is online #4844
     SQadmin
    Keymaster

    Have you tried my suggestion with adding some random text to the template and see if it displays to make sure you are editing the right one or the file is in place?

    Probably you Sweetdate Child shows 2.0 which is good because the child theme doesn’t get updated

    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: New Update Breaking my Header #4842
     SQadmin
    Keymaster

    Hi @Tenshi, Try my version: http://pastebin.com/17p1jb9c

    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 Memberships Page like in theme demo #4839
     SQadmin
    Keymaster

    Hi, Thank you for the kind words
    That should work by default. There is no need for any customizations. Make sure you are using the latest version

    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: Change the colour of the matching number #4838
     SQadmin
    Keymaster

    That can be changed from sweetdate/assets/scripts/app.js around line 244 ‘fgColor’: ‘#ffffff’,

    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: Register Button Leads to Blank Page #4835
     SQadmin
    Keymaster

    Great. Glad you figured it out

    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: Woocommerce #4833
     SQadmin
    Keymaster

    Hi,
    It has nothing to do with the theme. Are you doing this from the Plugins menu?
    You can try deleting the plugin folder and installing it again

    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: Search result are not showing #4831
     SQadmin
    Keymaster

    We can’t guess where your problem comes from..
    You definitely did something wrong. Give us a link, credentials for access, etc

    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? #4829
     SQadmin
    Keymaster

    Hi , To translate the BP-Album you need to add the translated .mo/.po to this location wp-content/themes/sweetdate/framework/inc/bp-album/includes/languages
    You need to translate in into your language using the Poedit software

    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: Terms page in "create an account" #4828
     SQadmin
    Keymaster

    Hi, There is no option to add the Terms checkbox to the registration. I think there is a plugin for that. Try searching the wordpress repository

    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, That is not possible by default. You can achieve it by modifying the default template registration/register.php probably with a javascript code to match your needs.

    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: Full width menu and body #4825
     SQadmin
    Keymaster

    To change the layout width you need to edit in app.css around line 38 like this example:

    COPY CODE
    
    .row { width: 1170px; margin: 0 auto; }
    

    Regards.

    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: Plugins used by other members #4823
     SQadmin
    Keymaster

    We haven’t tested it yet, but if you buy it and it doesn’t work we will try and repair 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
    in reply to: Move Join for FREE button (kleo button) #4822
     SQadmin
    Keymaster

    Hi,
    With php you can put any shortcode like this:
    <?php echo do_shortcode('[kleo_button url="register" style="standard" size="large" round="radius" icon="0,before" target="_self"] Join us for FREE [/kleo_button]');?>

    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: Google Fonts Custom Character Problem #4821
     SQadmin
    Keymaster

    Hi, Please see this topic: https://archived.seventhqueen.com/forums/topic/missing
    You should add your required subset if it is available for the font you choose. Check them like this:
    http://www.google.com/fonts#QuickUsePlace:quickUse/Family:

    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: Upload photos from My photos tab #4818
     SQadmin
    Keymaster

    Hi, That is not possible. Is just for bringing something important up.

    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: Full width menu and body #4817
     SQadmin
    Keymaster

    Him
    You can see this topic on putting the login/sign-up button on the main menu: https://archived.seventhqueen.com/forums/topic/log-in-signup-button

    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 #4816
     SQadmin
    Keymaster

    Don’t know what you are talking about. Provide details, links, screenshots. etc

    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 log in signup button to menu #4815
     SQadmin
    Keymaster

    Add this code to sweetdate-child/functions.php to have those 2 buttons in the main menu: http://d.pr/n/vd5S
    They will also show in the regular menu.

    You can remove the existing ones and leave only the ones in the main menu by editing 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: date fields restriction #4811
     SQadmin
    Keymaster

    Hi,
    Similar topic here: https://archived.seventhqueen.com/forums/topic/change-min-age-year-profile-fields-should-be-updated-automatically

    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: User rating plugin? #4810
     SQadmin
    Keymaster

    Hi,
    I found this google-ing: http://spoonjab.com/bp-wp-profile-reviews/

    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? #4809
     SQadmin
    Keymaster

    Hi,
    The name field searches only in that field. Searching by username is not possible right now.
    We don;t have a database of country/city.

    The ajax pagination should be fixed in v2.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: Revolution Slider #4808
     SQadmin
    Keymaster

    Hi, Do you have a link to see what you are talking about?

    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: Différent homepage for login people #4806
     SQadmin
    Keymaster

    If you are talking about the home slider that is not added with a shortcode, you can add this to sweetdate-child/functions.php

    COPY CODE
    
    add_action('after_setup_theme','my_slider_mod');
    function my_slider_mod() {
    	remove_action('kleo_after_header', 'kleo_home_revslider') ;
    	if (sq_option('home_rev',0) == 1 && function_exists('putRevSlider') && !is_user_logged_in())
    	{
    		add_action('kleo_after_header', 'kleo_home_revslider') ;
    	}
    }
    
    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: Slider Issues #4803
     SQadmin
    Keymaster

    Hi, It looks you haven’t added the code or done changes to the slider height in Revolution slider settings. Give us temporary access so we we quickly help you. Mark the reply as private

    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 Lightbox on pages #4802
     SQadmin
    Keymaster

    Hi,
    You can add this functionality for all links inside a page or post by putting this code in footer.php, somewhere before the wp_footer() line:

    COPY CODE
    
    <script>
    jQuery(document).ready(function() {
    	jQuery(".article-content a").prettyPhoto();
    });
    </script>
    
    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 - 1,041 through 1,080 (of 2,655 total)

Log in with your credentials

Forgot your details?