Forum Replies Created

Viewing 40 posts - 8,161 through 8,200 (of 8,607 total)
  • Author
  • in reply to: Issues making rtMedia unusable #9269
     Abe
    Keymaster

    now it is updated to 3.4.6 and edit page is ok. Login as demo:demo at http://seventhqueen.com/demo/sweetdatewp

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: How to change matching system #9268
     Abe
    Keymaster

    You have missed my function above: https://archived.seventhqueen.com/forums/topic/match-numbers#reply-9025
    I added it and all works 😉

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: How to change matching system #9266
     Abe
    Keymaster

    You need to follow the example and you need basic PHP knowledge

    COPY CODE
    
    add_action('after_setup_theme','kleo_my_match');
    function kleo_my_match() {
      global $kleo_config;
      $kleo_config['matching_fields']['starting_score'] = 1;
    $kleo_config['matching_fields']['sex_match'] = 1;
      /*required for initial match. If the sex preference matches it will continue to the specified fields below*/
      $kleo_config['matching_fields']['sex'] = 'I am a';
      $kleo_config['matching_fields']['looking_for'] = 'Looking for'; 
      //sex percentage
      $kleo_config['matching_fields']['sex_percentage'] = 99;
      //single value fields like select, textbox,radio
      $kleo_config['matching_fields']['single_value'] = array ("Status", "City", "Drinking Habits","Dietary Preferences","Smoking Habits","For" ); 
      //multiple values fields like multiple select or checkbox 
      $kleo_config['matching_fields']['multiple_values'] = array ("Interests");
    }
    

    FTP access isn’t correct. Please add it yourself

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Profile name appears twice #9265
     Abe
    Keymaster

    No it won’t cause issues. It is strange. Some plugin could add this Name field

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Notification/Message Number Color Change #9264
     Abe
    Keymaster

    Hi, Inspect the elements in your browser with Firebug for Mozilla Firefox or Chrome browser
    You need to add this css:

    COPY CODE
    
    .kleo-message-count {
        background: none repeat scroll 0 0 #F00056;
    }
    .kleo-friends-req {
        background: none repeat scroll 0 0 #01A8DA;
    }
    li span.unread-count, tr.unread span.unread-count {
    background: none repeat scroll 0 0 #FF0461;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Member page social stream #9263
     Abe
    Keymaster

    Hi, we haven’t seen such plugin but you can try google-ing it

    Cheers

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Translating the theme #9262
     Abe
    Keymaster

    Hi, It is a normal behaviour to have strings belonging to different plugins since those files in the theme are in fact template files from plugins that are overriding default plugin functionality and their strings are kept

    Let us know what strings you can’t find

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Translating the theme #9261
     Abe
    Keymaster

    Hi,
    – “Registering for this site is easy, just fill in the fields below and we’ll get a new account set up for you in no time.” is found in Buddypress plugin. Just go to Buddypress plugin from Codestyling localization, add you language, rescan files, search for the string, translate and click to generate the .mo file.
    – “Add friend” also belongs to Buddypress

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: My photos tab non appear with rtmedia #9260
     Abe
    Keymaster

    wow great 🙂

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Hide Specific About Me Profile Fields #9259
     Abe
    Keymaster

    You won’t find much in member-header.php since most of them are generated with functions
    oh… that change is affecting the user profile when you go to the Profile tab. See my reply here: https://archived.seventhqueen.com/forums/topic/hide-members-real-names#reply-8625

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

     Abe
    Keymaster

    Hi, Those tabs that display user info are in fact profile field groups found in WP admin – USers – Profile fields. Change those groups/fields there

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Adding States #9257
     Abe
    Keymaster

    Hi, I don’t think they have localized names. You can search on their site maybe you find some info on that.
    This is the file responsible for the integration of geonames: wp-content/themes/sweetdate/custom_buddypress/kleo-bp-city-auto.php

    You have a list of countries at the end, try to remove them from that array

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: bp chat and user level restriction #9256
     Abe
    Keymaster

    Hello,
    Thanks for the purchase. We did a little code to interact smoothly with bp chat. Enable the sweetdate-child theme and add this code to sweetdate-child/functions.php and customize the levels which can use the chat(now levels 1,2 are allowed)

    COPY CODE
    
    // In this example we are allowing levels 1 and 2 to use the chat and restricting all other users
    add_action('init', 'kleo_bp_chat_restrictions');
    function kleo_bp_chat_restrictions() {
    	if ( !pmpro_hasMembershipLevel(array(1,2))) {
    		add_filter('bpchat_is_disabled', create_function('', 'return true;'));
    	}
    }
    

    Please don’t forget to rate our theme if you like our work.

    Cheers

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Mark members as favorites #9252
     Abe
    Keymaster

    Well it is quite a functionality and there is not a simple solution for this. You need to hire a developer to build it for you or search a plugin that already does this and it is compatible with Buddypress.

    Cheers

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: search Select Matching Fields not working #9251
     Abe
    Keymaster

    Hi, You Need to set the Age in order for the Birthdate field to look like a From – To select and in Matching Fields make sure to select you I am a and Looking for translated fields

    Just tested this and works

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Homepage Search Text #9249
     Abe
    Keymaster

    Hello, Inside the search form settings in WP admin – Sweetdate – Buddypress

    Cheers

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Global Change "Groups" #9248
     Abe
    Keymaster

    hi @hughm
    I just retested it and the breadcrumb takes the Groups page link so make sure to rename the Groups page and link

    your pasted link isn’t right.. i see that this is a group page: http://uberon.net/groups/film-crew/
    and you haven’t changed the page name and link

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

     Abe
    Keymaster

    Hi
    Could be a problem with bp-user-profile-map or bp-resume-page plugins. Try to disable them to see if anything changes

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

     Abe
    Keymaster

    Hi @studiblog
    you can redirect users to the registration page by adding this code to sweetdate-child/functions.php and manipulate the redirect

    COPY CODE
    
    // redirect to registration page instead of membership levels page
    add_filter('kleo_pmpro_url_redirect', 'my_custom_redirect');
    
    function my_custom_redirect() {
    	if (is_user_logged_in()) {
    		return pmpro_url("levels");
    	} else {
    		return bp_get_signup_page();
    	}
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: My photos tab non appear with rtmedia #9211
     Abe
    Keymaster

    No it won;t change with rtMedia
    You are having something that is interfering, maybe this jquery
    script type=”text/javascript” src=”http://www.sex4fun.it/s4fchat/includes/js/jquery.js.pagespeed.jm.qkvfzc5jGC.js”

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Translating the theme #9210
     Abe
    Keymaster

    Yeah we have been told, that is why we removed it from 2.3.1. Please contribute if you have a good version

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Alternatives for rtMedia #9209
     Abe
    Keymaster

    Yes, Just disable rtMedia and add images to album

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: !Urgent Editing #9207
     Abe
    Keymaster

    Hi, that string is 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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Translation contribution #9206
     Abe
    Keymaster

    Hi, See this link https://archived.seventhqueen.com/files/languages.zip

    We have been told it is not very good translated and removed it for now. It came from a contribution

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Activity Stream – Post In Dropdown is not displaying #9205
     Abe
    Keymaster

    And from the screenshot I don’t know if you are using Sweetdate

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Activity Stream – Post In Dropdown is not displaying #9204
     Abe
    Keymaster

    You need to click the textarea to appear

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Profile name appears twice #9200
     Abe
    Keymaster

    I don’t think it is related to the update. Check your fields under Users – Profile fields or any other customizations

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: How to remove notifications tab? #9199
     Abe
    Keymaster

    Hi, Settings – Buddypress

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Are these features? #9198
     Abe
    Keymaster

    Great. Glad I could help.

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: RTmedia styling #9197
     Abe
    Keymaster

    I can’t figure how to reproduce that button. You should inspect your element from Chrome or Firefox with Firebug and add a CSS rule to change the color attribute

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Alternatives for rtMedia #9196
     Abe
    Keymaster

    Hi, Yes you can enable the plugin from Sweetdate – Buddypress

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Hide Members Without Avatars #9195
     Abe
    Keymaster

    Hi, not so easy.. you need to modify the default shortcode in a way to include only members with avatar

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: How to change matching system #9194
     Abe
    Keymaster

    give me some FTP access to take a look at your code if it still not working

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: How to change matching system #9192
     Abe
    Keymaster

    Hi @daniellemarie
    If you only want to match I am a with Looking for fields this is the code:

    COPY CODE
    
    add_action('after_setup_theme','kleo_my_match');
    function kleo_my_match() {
      global $kleo_config;
      $kleo_config['matching_fields']['starting_score'] = 1;
    $kleo_config['matching_fields']['sex_match'] = 1;
      /*required for initial match. If the sex preference matches it will continue to the specified fields below*/
      $kleo_config['matching_fields']['sex'] = 'I am a';
      $kleo_config['matching_fields']['looking_for'] = 'Looking for'; 
      //sex percentage
      $kleo_config['matching_fields']['sex_percentage'] = 99;
      //single value fields like select, textbox,radio
      $kleo_config['matching_fields']['single_value'] = array (); 
      //multiple values fields like multiple select or checkbox 
      $kleo_config['matching_fields']['multiple_values'] = array ();
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Home page slider #9191
     Abe
    Keymaster

    Hello,
    Please add this css to match your needs to Sweetdate – Styling options – Quick css:

    COPY CODE
    
    .page-template-page-templatesfront-page-php .rev_slider_wrapper {
        min-height: 450px;
    }
    

    Thanks

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: User Profile Section Missing #9190
     Abe
    Keymaster

    Hello, If they are missing then you probably renamed the default groups defined by us. See this topic on changing those tabs: https://archived.seventhqueen.com/forums/topic/how-to-add-more-tabs-next-to-the-profile-image

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Activation Key page #9189
     Abe
    Keymaster

    Hi, They should receive a link that they have to click. The key is in that link and when you access that it will activate.

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: SweetCaptcha #9188
     Abe
    Keymaster

    Funny 🙂 I don’t think it works for BUddypress registration page from the description

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: 404 Error #9180
     Abe
    Keymaster

    Please see this topic:
    https://archived.seventhqueen.com/forums/topic/404-page-error
    Your hosting probably has and older version of PHP

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Revolution Slider Update #9178
     Abe
    Keymaster

    Hi, To be safe make a database backup. You update the plugin from WP admin – Revolution slider. You won’t lose your sliders that you added or changes to them

    Cheers,
    Please rate the theme if you appreciate our work. Thanks

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

Viewing 40 posts - 8,161 through 8,200 (of 8,607 total)

Log in with your credentials

Forgot your details?