Forum Replies Created
-
Author
-
SQadminKeymaster
Thanks for sharing. Glad it works.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi, There are lots of places where that appears. Please specify the page you are referring to
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterWhen you are not logged in the register form appears so you have to modify this template like the one with the search form: page-parts/home-register-form.php
http://d.pr/n/hU5OHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterThank you. Appreciate it
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterPlease follow the instructions I sent and it will work. Map the buddypress register component with your Register page and it will look like on our demo.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterSure. You can follow video tutorial for an initial setup: https://archived.seventhqueen.com/video-tutorials
You need to match Buddypress component pages from Settings -> Buddypress -> PagesHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterYes the code was made to match @sv1aud need where he had 3 separate fields for the date.
We will see if we can do something to render the normal date fieldHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterI replied above: https://archived.seventhqueen.com/forums/topic/blog-posts#reply-3044
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
There was a problem when non-alphanumeric characters were in the button text. Please replace the contents of the file from sweetdate/framework/shortcodes/shortcodes.php with this https://archived.seventhqueen.com/files/shortcodes.txtHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterNow it shows on the home page. I had to add id like this:
[do_widget id=kleo_recent_posts-3]
Where the id is the widget id took from the debugHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSeptember 18, 2013 at 13:48 in reply to: Changes in the Profile page – which file(s) to tweak? Cant find.. #3043SQadminKeymasterThank you. We greatly appreciate it!
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
Yes it can be done.
Add this code to wp-content/plugins/bp-custom.php to make Buddypress not generate the links:COPY CODEfunction remove_xprofile_links() { remove_filter( 'bp_get_the_profile_field_value', 'xprofile_filter_link_profile_data', 9, 2 ); } add_action( 'bp_init', 'remove_xprofile_links' );
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterYes, on Chrome seems to be the problem. Will check and let you know.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterWe wanted to release the update this week so I don’t think it will be available in this one.
This one will include Revolution slider as the main featureHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi, Similar topic here: https://archived.seventhqueen.com/forums/topic/forum-visibility
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
You question is not so clear but I’ll try to guess what you meant.
Profile fields can be set from WP admin -> Users -> Profile fields. Fields that appear on the registration page are the ones from the Base group.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 have a look. Use the “Set as private reply” checkbox if you want just us to see the info.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterFixed. Thanks for letting us know
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
First you should go to Sweetdate -> HOmepage and choose your form type. If you choosed Search or Mixed you need to configure the search form in Sweetdate -> Buddypress
You also have this telling you what to do on homepage: “Please configure your form fields under Sweetdate -> Buddypress”Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
Add this css to Sweetdate -> Styling options -> Quick css:COPY CODE.top-links, .top-links a {color:red}
modify it with your color.
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
Please add the following code to your sweetdate-child/functions.php file. It replaces the heart with a camera icon.
To view all possible icons available:
http://fortawesome.github.io/Font-Awesome/icons/
Make sure to have the child theme activatedCOPY CODEadd_action('after_setup_theme','kleo_replace_heart'); function kleo_replace_heart() { /* Replace the heart over images */ add_filter('kleo_img_rounded_icon', 'my_custom_icon'); } /* Replace the heart with a camera icon function */ function my_custom_icon () { return 'camera'; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterRevert the previous solution if it didn’t worked and try editing the buddypress/bp-xprofile/bp-xprofile-template.php and replace:
line 513COPY CODE$html .= apply_filters( 'bp_get_the_profile_field_options_select', '<option' . $selected . ' value="' . esc_attr( stripslashes( $options[$k]->name ) ) . '">' . esc_attr( stripslashes( __($options[$k]->name )) ) . '</option>', $options[$k], $field->id, $selected, $k );
line 552
COPY CODE$html .= apply_filters( 'bp_get_the_profile_field_options_multiselect', '<option' . $selected . ' value="' . esc_attr( stripslashes( $options[$k]->name ) ) . '">' . esc_attr( stripslashes( __($options[$k]->name )) ) . '</option>', $options[$k], $field->id, $selected, $k );
line 578
COPY CODE$html .= apply_filters( 'bp_get_the_profile_field_options_radio', '<label><input' . $selected . ' type="radio" name="field_' . $field->id . '" id="option_' . $options[$k]->id . '" value="' . esc_attr( stripslashes( $options[$k]->name ) ) . '"> ' . esc_attr( stripslashes( __($options[$k]->name )) ) . '</label>', $options[$k], $field->id, $selected, $k );
line 618
COPY CODE$html .= apply_filters( 'bp_get_the_profile_field_options_checkbox', '<label><input' . $selected . ' type="checkbox" name="field_' . $field->id . '[]" id="field_' . $options[$k]->id . '_' . $k . '" value="' . esc_attr( stripslashes( $options[$k]->name ) ) . '"> ' . esc_attr( stripslashes( __($options[$k]->name )) ) . '</label>', $options[$k], $field->id, $selected, $k );
The lines might not be the same but you’ll see something similar that gets replaced
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
That happens because of the title being too long and goes on 2 lines. This css will fix it. Add the code to Sweetdate -> Styling options -> Quick css:COPY CODE#groups .group-item:nth-child(2n+1) { clear: left;}
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterStrange. Thanks for sharing this with us. We will try too.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
From the Contact Form 7 plugin page copy the code for your form. It shows like this:
http://d.pr/i/XBhzHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymaster🙂 the S2 worked. with default browser and Dolphin
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHm.. I tested it on Android and worked. Will test on other devices and see what happens
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSeptember 18, 2013 at 01:36 in reply to: Changed Buddypress fields and now profile doesn't show #3010SQadminKeymasterHi, You need to define your group name like in this topic: 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 solutionSQadminKeymasterHi, The “Read more” from Homepage carousel?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
Please wait for a stuff member to respond to your question. Topics are responded in the order they arrive.
You added the next reply after just 5 minutes of waiting…That is simply done from our options panel: Sweetdate -> Buddypress -> Sidebar
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
Please add this css to Sweetdate -> Styling options -> Quick css box:COPY CODE.activity-content span.time-since {display:none;}
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi, Thank you for noticing this and telling us about it.
Please add this css that will fix the alignment. We will include the fix in next update.
div.activity-comments form.ac-form {clear:both;}Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterWe are checking what’s wrong with it and will fix it. Thanks
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterGive me acces to your site to take a look,. I think is quicker. Send a reply and check “Set as private reply”
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSeptember 17, 2013 at 18:41 in reply to: Changes in the Profile page – which file(s) to tweak? Cant find.. #2994SQadminKeymasterHi,
Here goes;
1. Copy sweetdate/members/member-header.php to sweetdate-child/members/member-header.php and remove line 35 and 36.
You need to activate the sweetdate-child theme2. Another file to copy to sweetdate-child in the same location as in the parent theme: members/single/profile/change-avatar.php
Rename the avatar string in the file with the one you desire
There are some other avatar strings that come from Buddypress core that could be changed following this url:
http://codex.buddypress.org/developer/customizing/customizing-labels-messages-and-urls/3. This is also handled by Buddypress. Add this code to wp-content/plugins/bp-custom.php. If the file doesn’t exit create it:
COPY CODEfunction bbg_change_subnav() { global $bp; $bp->bp_options_nav['activity']['friends']['name'] = 'Connections'; } add_action( 'bp_setup_nav', 'bbg_change_subnav', 999 );
Cheers.
PS: Please rate our theme and work if you likeHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi, I think it is a matter of choise. If you think the extra things in the professional version will help you then its worth. I think talking with Facebook friends and an unbranded version would be nice for the users to have. You should see what it means to have an active Cometchat license to be able to use Facebook chat
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi, First one should work fine since it uses wigdets, shortcodes. Second one has just widget so you can only display in sidebar.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
I don’t have a solution for the counting members unfortunately. For your second question this link has the solution: http://codex.buddypress.org/developer/loops-reference/the-activity-stream-loop/
the file is located in sweetdate/activity/activity-loop.phpHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterFixed it in this week upcoming version
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHide the title with this css added to Quick css box from Sweetdate -> Styling options:
COPY CODE.directory.members.buddypress .search-result h2 {display:none}
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts