Forum Replies Created
-
Author
-
SQadminKeymaster
Hi Adam,
I think the easiest way is using http://wordpress.org/plugins/menu-items-visibility-control/
And the condition should be: pmpro_hasMembershipLevel(array(1,2)))Cheers,
AbeHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterWhat membership page? paid membership pro levels doesn’t have navigation. Any color change is done via CSS. You should use Chrome inspect tool or Mozilla Firebug to inspect your elements and see the class or what needs to be changed
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterSee pending activations: 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 solutionSQadminKeymasterHi, All form fields are User profile fields defined in WP Admin – Users – Profile fields
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterAdd this to sweetdate-child/functions.php:
COPY CODEfunction kleo_copyright_text() { return; {
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterI don’t think it can function anywhere else since it is built to show for the displayed buddypress user
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi, Logging in with Facebook just refreshes the page. You need to edit a theme file and specify you redirect url.
File is: wp-content/themes/sweetdate/framework/functions/facebook_login.php
Search for:
window.location.reload();
replace with:
window.location = ‘http://mysite.com/redirect_url’;Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterFirst you need to have some friends to be able to send invites. Then go to the link /groups/test/send-invites/ and choose those friends to send invites
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterOk frien337, If it was something with the theme we would resolved it quickly but digging into the plugin is not so easy
CheersHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterSend the header.php or what file you have modified. Send it trough pastebin.com
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterI don’t think it is an easy task. We will let you know if we find something but I don’t promise anything 🙂
Cheers.
AbeHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi, Who’s online is generated by Cometchat and you should ask them since we don’t support third party plugins and don’t know how their functionality is built. The requests implies custom work and it needs to be applied to the cometchat plugin.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHello,
Please download v.2.3 that will be available at the end of the month since it has addressed some fixes and see if it happens. https://archived.seventhqueen.com/files/sweetdate_2.3.zipHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterIndeed 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterThanks @adam
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterGlad you solved it. Strange though
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterTake the almost finished 2.3 version which includes the carousel shortcode(find it in visual shortcodes icon – Buddypress) https://archived.seventhqueen.com/files/sweetdate_2.3.zip
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi, That requires some big changes. You can use the horizontal form that appears under the members page.
You can modify the homepage form with the horizontal one by editing by FTP the file wp-content/themes/sweetdate/page-parts/home-search-form.php
and replace:COPY CODEdo_action('kleo_bp_search_form', (sq_option('home_search_members', '1') ==1?true:false) );
with:
COPY CODEdo_action('kleo_search_form_horizontal', true);
cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterWe have added to v.2.3 theme that will be available at the end of the month the option for three columns template. I don’t know what is the code you added. You can wait for the new version or have the testing version right now: seventhqueen.com/support/files/sweetdate_2.3.zip
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterAlso looking at the code you added you should have three Profile field groups: Social, Base and Looking for
Modify the code accordingly if you have other names for the groups
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
Wow 🙂
What browser are you using or maybe you have done something to the site links after intall?Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi, Even though the links show fine, Buddypress sends some ajax requests with a “scope” attribute taken from the id of the li tag, example: members-personal, and it will always return all members since it doesn’t know how to interpret the links
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi, Aren’t you referring to the unread messages button? Put a print-screen please. Use a service like droplr.com
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 redefine this function: kleo_bp_member_dir_view_button() in your sweetdate-child/functions.php Search the function in wp-content/themes/sweetdate/custom_buddypress/bp-functions.php
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
Try disabling plugins one by one to find the one that is interfering. Also try resaving the options from Settings – PermalinksHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
1. You need to modify each:
while ( bp_members() ) : bp_the_member();
with:
$i=0;while ( bp_members() ) : bp_the_member(); $i++;
if ($i%4 == 0) { echo “MY AD”; }2. That is not paginated and doesn’t support infinit scroll
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionNovember 27, 2013 at 01:14 in reply to: Show normal select instead of the Foundation custom selects #7326SQadminKeymasterHi, You can do it by CSS:
.kleo-selectbox .custom.dropdown.expand {display:none;} .kleo-selectbox select { display: block !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi, We are not aware of such plugin. Buddypress online status is based on his activity on the site..so if there is no activity for some time the user will be seen as offline
PS: Please try to make the subject of the topic more suggestive in case other users are searching for something similar.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterWell a link to your site always helps not to shoot in the dark
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterI think is more of a Cometchat problem or I didn’t understand your question.
Regards,
AbeHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
This topic contains useful info on adding your own restrictions. You need basic PHP and WordPress knowledge: https://archived.seventhqueen.com/forums/topic/extra-membership-restrictions-how-toHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi, Under wp-content/themes/sweetdate/framework/theme_options.php
$args[‘menu_icon’] = SQUEEN_OPTIONS_URL . ‘/img/sweetdate_menu_icon.jpg’;
$args[‘menu_title’] = __(‘Sweetdate’, ‘kleo_framework’);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 edit the file located in sweetdate/members/single/member-header.php and add the field under the img that that sits under the div item-header-avatar
The php code to get a profile value is:
<?php echo xprofile_get_field_data(“I am a”, bp_displayed_user_id());?>Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterIf that is not workin try with the absolute a bit above:
COPY CODE<div class="row" style="position: absolute;"> <div class="four columns"> <?php echo do_shortcode('[gmw form="1"]'); ?> </div> </div><!–end row–>
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterThe editor added some extra closing tag, so instead of:
class=”four columns”
put
style=”position: absolute;” class=”four columns”Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi, Try with this css added to Sweetdate – Styling options – Quick css:
COPY CODEul.tabs-content > li:not(.active) { display: block !important; visibility: hidden; height: 0; } ul.tabs-content > li:not(.active) p { margin-bottom: 0; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterWe expect to have the update until the end of the month. Download the updated revslider from this temporary link: https://archived.seventhqueen.com/files/revslider.zip
Cheers
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 copied them to the exact folder structure and it should have worked.
We also tried the css again and it works. Try adding important to the css:
#pmpro_account .bordered { color: #1FA8D1 !important; }Regards,
AbeHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionNovember 26, 2013 at 23:35 in reply to: Mixded mode not displaying search form for logged in members #7309SQadminKeymasterHello,
Make sure you haven’t added any code to interfere with that. The default behaviour is to display the search box, see the demo: http://seventhqueen.com/demo/sweetdatewp-modern/You can restrict menu items with this plugin: http://wordpress.org/plugins/menu-items-visibility-control/
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterI don’t understand the problem or if there is a problem 🙂
Maybe illustrate with some pictures if you need anything else from us.
CheersHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts