Forum Replies Created
-
Author
-
SQadminKeymaster
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 solutionSQadminKeymasterHello,
Try disabling any plugins that might interfere because it should display only the number it reports.Let me know if you find anything.
CheersHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterYou 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 solutionSQadminKeymaster2013 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 enabledFiles 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.cssHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterOh, 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 solutionSQadminKeymasterHi,
THis code added to sweetdate-child/functions.php does the trick:COPY CODEfunction 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 solutionSQadminKeymasterHi,
You should have a Members page which you need to map to buddypress component from WP ADmin – Settings – Buddypress – PAgesHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterYou 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 solutionSQadminKeymasterHi, You need to add this code to sweetdate-child/functions.php
For the total members:COPY CODEadd_filter( 'bp_get_total_member_count', 'kleo_my_total_members' ); function kleo_my_total_members($number) { return 1000; }
For online users:
COPY CODEadd_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 solutionSQadminKeymasterHi,
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 solutionSQadminKeymasterHi,
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.phpHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterPlease 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 solutionSQadminKeymasterAdd 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 solutionSQadminKeymasterHi, 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 solutionSQadminKeymasterHi, 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 solutionSQadminKeymasterYou 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 solutionSQadminKeymasterHi, 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 fileHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi, 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,
RobertHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
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-siteHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi, 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 solutionSQadminKeymasterHi,
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 solutionSQadminKeymasterGreetings 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-sidebarHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterNormally 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 solutionSQadminKeymasterHi, 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 solutionSQadminKeymasterHi, 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 solutionSQadminKeymasterYou 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 formHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterProbably 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 solutionSQadminKeymasterHi, 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 solutionSQadminKeymasterAdd 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 solutionSQadminKeymasterHi,
To show the button:
<?php do_action('kleo_search_form_horizontal', true);?>
Give me a link to look pleaseHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterNo 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 solutionSQadminKeymasterWe love ***** ratings 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterI 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 solutionSQadminKeymasterHi, All good Ron?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi, 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 solutionSQadminKeymasterWe 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 solutionSQadminKeymasterGive 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 solutionSQadminKeymasterWe 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 solutionSQadminKeymasterI 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 fileHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi
Seems to be related to this: buddypress-instabanHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts