Forum Replies Created

Viewing 40 posts - 1,121 through 1,160 (of 2,655 total)
  • Author
  • in reply to: Activity tab #4537
     SQadmin
    Keymaster

    That is generated by Buddypress so I don’t think it is easy changeable

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

    Hello,
    Try disabling any plugins that might interfere because it should display only the number it reports.

    Let me know if you find anything.
    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: edit profile #4535
     SQadmin
    Keymaster

    You can hide it with css:

    COPY CODE
    
    .field-visibility-settings-toggle {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: Sweetdate Updates Change log #4533
     SQadmin
    Keymaster

    2013 10 15 – Version 2.2

    + NEW SHORTCODE: Members – Display members list just like Members directory page anywhere you like
    + NEW SHORTCODE: Toggle
    + NEW FUNCTIONALITY: Ajax login from the popup window
    – Fixed rtMedia plugin compatibility
    – Fixed profile page rtMedia tab privacy in some cases
    – Fixed button from the register modal
    – Optimized restrictions altgorithm that works with Paid Memberships Pro
    – Fixed visual shortcodes white popup on some environments
    – Fixed some Strict standard notices
    – Groups page – fixed styling when group title was very long
    – Fixed Add Friend, Public Message and Private message buttons, for not logged in users, to appear only when those components are activated
    – Fixed Ajax pagination on members profile when search is active
    – Added action to show extra social icons
    – Fixed Admin bar overlapping the sticky Main Menu when both were enabled
    – Fixed revolutions sliders dropdown on theme options page when WPMU enabled

    Files changed:
    assets/scripts/app.js
    assets/styles/app.css
    custom_buddypress/_inc/css/default.css
    custom_buddypress/_inc/global.js
    custom_buddypress/bp-functions.php
    custom_buddypress/class-bp-tabs.php
    custom_buddypress/kleo-bp-search.php
    framework/classes/SQueen.php
    framework/constants.php
    framework/functions/facebook_login.php
    framework/frontend.php
    framework/inc/bp-album/includes/bpa.classes.php
    framework/inc/bp-album/includes/bpa.template.tags.php
    framework/shortcodes/shortcodes.php
    framework/shortcodes/tinymce/get_wp.php
    framework/shortcodes/tinymce/plugin.js
    framework/theme_options.php
    framework/widgets/widget_about_us.php
    functions.php
    functions-pmpro.php
    header.php
    languages/en_US.mo
    languages/en_US.po
    members/index.php
    members/members-loop-mini.php
    page-parts/general-login-modal.php
    page-parts/general-register-modal.php
    rtmedia/main.php
    – Removed rtmedia/* except for main.php
    style.css

    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 Results mismatch #4532
     SQadmin
    Keymaster

    Oh, I see what you mean… We will take a look but it is normal behaviour

    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: Disabling public Message #4531
     SQadmin
    Keymaster

    Hi,
    THis code added to sweetdate-child/functions.php does the trick:

    COPY CODE
    
    function remove_public_message_button() {
    remove_filter( 'bp_member_header_actions','bp_send_public_message_button', 20);
    
    }
    add_action( 'bp_member_header_actions', 'remove_public_message_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: Mobile Not Working #4530
     SQadmin
    Keymaster

    Hi,
    You should have a Members page which you need to map to buddypress component from WP ADmin – Settings – Buddypress – PAges

    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: email domain restriction on top page form #4521
     SQadmin
    Keymaster

    You can edit that registration form template form sweetdate: wp-content\themes\sweetdate\page-parts\home-register-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: Manual number of members change #4520
     SQadmin
    Keymaster

    Hi, You need to add this code to sweetdate-child/functions.php
    For the total members:

    COPY CODE
    
    add_filter( 'bp_get_total_member_count', 'kleo_my_total_members' );
    function kleo_my_total_members($number) {
    	return 1000;
    }
    

    For online users:

    COPY CODE
    
    add_filter( 'kleo_online_users_count', 'kleo_my_online_users');
    function kleo_my_online_users($number) {
    	return $number+100;
    }
    
    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 profile default tab #4519
     SQadmin
    Keymaster

    Hi,
    That is a global settings and it is set before knowing who you are in the 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: Check if user is online #4518
     SQadmin
    Keymaster

    Hi,
    The editor modified the code and probably generating an error.

    File is: Copy it from sweetdate/members/members-loop.php

    Copy it from sweetdate/members/members-loop.php
    to
    sweetdate-child/members/members-loop.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: Change private message to message #4514
     SQadmin
    Keymaster

    Please see this link on accomplishing that: http://codex.buddypress.org/developer/customizing/customizing-labels-messages-and-urls/

    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 colour of notification buttons #4513
     SQadmin
    Keymaster

    Add this css to Sweetdate – Styling options – QUick css:

    COPY CODE
    
    .kleo-message-count {
    background: #f00056;
    }
    
    .kleo-friends-req {
    background: #01a8da;
    }
    

    NOTE: Please use the inspect tool from the Chrome browswe of Mozilla Firebug to find the CSS styles on your own because is not that hard.

    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 profile – Suggested Members #4512
     SQadmin
    Keymaster

    Hi, You should do the same operation to the files inside sweetdate/members/single/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: Translation Problems #4511
     SQadmin
    Keymaster

    Hi, You should take your backed up .mo and .po files and put them in in the languages folders of the main theme because the update probably deleted them. The new ones are probably from Codestyling plugin

    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 the menu #4510
     SQadmin
    Keymaster

    You can try:

    COPY CODE
    
    .top-bar ul.left {float:right}
    
    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 Text #4508
     SQadmin
    Keymaster

    Hi, It should be easy to enable the child theme. You just activate it and copy the template to the same folder structure.
    However you can use a trick and change buddypress words with your own by translating the buddypress english strings to… english 🙂
    You can use Codestyling localization and go to edit Buddypress english strings. Find “Registering for this site is easy…” phrase and translate it to what you want. Then generate the .mo file

    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: About Us Widget "icon-heart" #4506
     SQadmin
    Keymaster

    Hi, if you want to hide temporary you can simply add in admin/Sweetdate/Styling options/Quick css box the following line:

    COPY CODE
    
    .widget_kleo_about_us .icon-heart {display: none;}
    

    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: Membership and profiles #4494
     SQadmin
    Keymaster

    Hi,
    I created this topic for hiding members that don’t have a membership level you specify:
    https://archived.seventhqueen.com/forums/topic/hide-non-paying-members-from-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: City Field #4489
     SQadmin
    Keymaster

    Hi, There isn’t yet a solution for this.

    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: Psychological matching #4488
     SQadmin
    Keymaster

    Hi,
    It is not really that easy but it can be achieved 🙂
    That code doesn’t help much and you need to consider a serious integration if you want to accomplish this.
    You need to save the results to the DB, for example “sensitive introvert” and then you need to define the matching between the result profiles. After you have that you need to create a “Compatibility” page to show all compatible members which needs to query and show those exact compatible users.
    If you need custom development we have a colleague that can help.

    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: Advanced Search #4486
     SQadmin
    Keymaster

    Greetings from Romania 🙂
    You can follow this topic to add a sidebar to Members directory page and you can put a search widget in that sidebar to filter members: https://archived.seventhqueen.com/forums/topic/members-directory-page-with-sidebar

    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 Results mismatch #4485
     SQadmin
    Keymaster

    Normally when you click a link it will take you to the top of that page. This should happen only when you refresh the page and it stay on the same location as you were.

    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: email domain restriction on top page form #4477
     SQadmin
    Keymaster

    Hi, The registration page takes care of all the validation so the front form is just a middle step

    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: Track Visitors #4476
     SQadmin
    Keymaster

    Hi, See
    http://wordpress.org/plugins/yd-profile-visitor-tracker/
    http://buddydev.com/plugins/recent-visitors-for-buddypress-profile/

    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: [HELP ]Registration Form Question #4474
     SQadmin
    Keymaster

    You need to add you input add it passes to the registration page by the name of the input (eq: name=”signup_password_confirm” )
    You need to inspect the field name in registration page and add the exact name to the front form

    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: Modal register form changes. #4472
     SQadmin
    Keymaster

    Probably 1-2 hours of works,depends on how complicated you want 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: Field Values not passing to registration #4470
     SQadmin
    Keymaster

    Hi, We tested it on our demo site and values go trough. Please do a test on the demo site and maybe try with different browsers.

    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 box #4469
     SQadmin
    Keymaster

    Add css to Sweetdate – Styling options – Quick css:

    COPY CODE
    
    #search-bar {
    background: #f8f8f8
    }
    
    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 Bar on other pages #4467
     SQadmin
    Keymaster

    Hi,
    To show the button:
    <?php do_action('kleo_search_form_horizontal', true);?>
    Give me a link to look 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: Revolution slider 2.2 fixed #4444
     SQadmin
    Keymaster

    No problem. Glad it works.

    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: Awesome (Thank You) #4435
     SQadmin
    Keymaster

    We love ***** ratings 🙂

    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: DEAD SITE #4434
     SQadmin
    Keymaster

    I am glad it works.

    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: DEAD SITE #4432
     SQadmin
    Keymaster

    Hi, All good Ron?

    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: PMP Pro error #4431
     SQadmin
    Keymaster

    Hi, Did you manage to solve your problems Ron?

    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 Results mismatch #4430
     SQadmin
    Keymaster

    We tested it, searched for Woman, got 34 pages. Clicked all pages and only Woman and it shows still 34 pages so it is ok. This isn’t the issue you were 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: Search Results mismatch #4428
     SQadmin
    Keymaster

    Give us a link to your 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: Search Results mismatch #4426
     SQadmin
    Keymaster

    We tested it and it should be fixed. Make sure you changed all theme files and cleared cache

    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 2.2 fixed #4425
     SQadmin
    Keymaster

    I asked because we fixed another thing related to the back-end.
    That should be fixed. Take a look at our demos. We modified header.php. If you are overriding it in child theme then then apply your changes to the new file

    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 – Java Pop-Up #4424
     SQadmin
    Keymaster

    Hi
    Seems to be related to this: buddypress-instaban

    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,121 through 1,160 (of 2,655 total)

Log in with your credentials

Forgot your details?