Forum Replies Created
-
Author
-
Abe
Keymasterhm.. I don’t know what to say since on my testing server it works with 2.1.1
I still think is related to some changes you didHi 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
KeymasterHmm… well all that cropping and uploading is part of Buddypress and Sweetdate does not touch that …
We will look over the buddypress site but try to look also and maybe post a topic
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@Splendor youd don’t need a FREE level since the registered user can be considered a free level. Add only paying memberships and don’t make people subscribe for a FREE level which doesn’t make sense
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
KeymasterHi, can’t see something attached.
Please subscribe to this topic and you will get notified when we come with the fix https://archived.seventhqueen.com/forums/topic/all-members-in-members-directory-have-44-years#post-32903
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
Keymasterhello, yes we plan to do that in next theme update, adding a header widget area for ADs and stuff.
How does the Ubermenu plugin 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.Abe
KeymasterHi, where you added the padding from? that should be related to revslider settings
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
KeymasterHi Andrew,
there are some 3rd party plugins you can go for.
For chat I know Arrowchat, cometchat and for the gifts I seen some also that integrate with Buddypress.Thanks for your suggestion. We will consider them
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
KeymasterHi, We can’t say when that will be added since we try to stick with basic theme functionality and that suits best as a plugin. There are some plugins you can try like Social login
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
KeymasterHi, you need to enable ssl in your wp site. Try a plugin. not theme related, sorry
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
Keymasterplease try to disable codes and plugins you have added since that should be 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.Abe
KeymasterHi, translations are done in the theme or in plugins or in wordpress itself.
You need to translate the plugins that generate strings in the front-end, so yours are:– No new notifications: THEME
– YOUR SHOPPING BAG IS EMPTY.: WOOCOMMERCE
– go to the shop: WOOCOMMERCE probably
– start typing to search: THEMEin breadcrumbs is HOME (i need to stranslate this to); THEME
BuddyPress – there is translation of buddypress in my language sk_SK and this names like NOTIFICATION, GROUPS, FRIENDS are translated. but not on the site (Attachment)
use Codestyling Localization where you can rescan files for strings for theme and plugins
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
KeymasterHi, there are already similar questions like yours so please search before posting new questions.
Slow responses are mostly related to your type of hosting since the theme acts well and doesn’t have something really heavy. Also the plugins add extra loading times.
Install W3 Total Cache plugin to speed site upHi 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@sharmstr I will email you a beta of 2.2 if you like to see the new features as in https://archived.seventhqueen.com/forums/topic/kleo-updates-change-log#post-19544
it should also have the functionality to set a page as portfolio archive. It was a bit tricky but works nice.
ThanksHi 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
KeymasterI have also added an option in Theme options – Portfolio to show/hide it. Also now it will say Back to .. the name defined in the page.
I will look for a solution to override the archive and replace it maybe with a 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.Abe
Keymasterhello, did you had time to test this? Hope is fine now 🙂
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
KeymasterHello, right now users need to register first and then apply for a membership. We will try to optimize the process in the future. You can assign a level at registration like this :
This is the function you need to add in order to assign a specific membership level to a newly registered user. Add it into your sweetdate-child/functions.php
COPY CODEadd_action('user_register', 'kleo_pmpro_default_level'); function kleo_pmpro_default_level($user_id) { pmpro_changeMembershipLevel(1,$user_id); }
This one assigns level with ID 1
Also this code checks for a specific profile value and add only those users to the membership level. Does not apply with Facebook registration
COPY CODE/** * When registering, add the member to a specific membership level * based on the field value he has selected * * @global object $wpdb * @global object $bp * @param integer $user_id */ function kleo_pmpro_default_level($user_id) { global $wpdb, $bp; //Change this with your field name $field_name= "I am a"; //Change the field value $value_to_match = "Woman"; //Membership level id $membership_level = 1; //Done editing $field_id = $wpdb->get_var( $wpdb->prepare( "SELECT id FROM {$bp->profile->table_name_fields} WHERE name = %s", $field_name ) ); if ($_POST['field_'.$field_id] == $value_to_match) { pmpro_changeMembershipLevel($membership_level, $user_id); } } function kleo_mu_pmpro_default_level($user_id, $password, $meta) { global $bp, $wpdb; //Change this with your field name $field_name= "I am a"; //Change the field value $value_to_match = "Woman"; //Membership level id $membership_level = 1; //Done editing $field_id = $wpdb->get_var( $wpdb->prepare( "SELECT id FROM {$bp->profile->table_name_fields} WHERE name = %s", $field_name ) ); $field_value = $meta['field_'.$field_id]; if ( $field_value == $value_to_match ) { pmpro_changeMembershipLevel($membership_level, $user_id); } } if (is_multisite()) { add_action( 'wpmu_activate_user', 'kleo_mu_pmpro_default_level', 10, 3); } else { add_action('user_register', 'kleo_pmpro_default_level'); }
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
KeymasterHi Angela, I will work today on your site as on our agreement, so closing this topic
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
KeymasterHi, we use normal buddypress hooks, probably the code is wrong. Try bp_after_directory_groups_list instead of bp_directory_groups_item
As for the menu to accept shortcodes in the title, try replacing the content of functions.php from the theme with the content attached.
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.Attachments:
You must be logged in to view attached files.October 30, 2014 at 11:28 in reply to: How do I change the Days, Months and Years in Date Selector? #33593Abe
KeymasterPlease see this topic that changes to 14 years old limit instead of 18 https://archived.seventhqueen.com/forums/topic/change-min-age-year-profile-fields-should-be-updated-automatically#post-2043
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
Keymasterthanks @sharmstr for the help
so you figured it out @Dietmar?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
KeymasterI think Catalin’s answer above is the solution
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
KeymasterHi, Send me a link to take a look and maybe can 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.Abe
Keymasterhaha, no problem @sharmstr you can post it here, we are a community after all 🙂
Yes we will include it next update. I will post it for testing next week
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
KeymasterHi, i can’t imagine why that would happen. Disable any plugins you installed and might cause this
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
KeymasterHi, Sure we already added the file changes.
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.Abe
Keymaster@moosemanmedia then probably they are not fully translated
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
KeymasterHi, thank you very much
Add this CSS to hide them
COPY CODE.pagination-sticky { display: none; } li#members-all { display: none; }
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
Keymasterhi, do you have a list 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---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.Abe
Keymaster@Kookidooki we haven’t made any changes to the admin bar. You can disable it from Theme options – Miscellaneous
The login button should open the login popup and not to go to wp-login.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.Abe
KeymasterThis one is related to Buddypress wp-content/themes/sweetdate/registration/activate.php even though you see it in Sweetdate. That is normal since we override plugins templates.
Related to the _e( “Print”, “kleo_framework” ); button
since we added it in a theme translation function you are able to translate it inside the theme
If you say there is a translated string in pmpro named “Print” then replace the above declaration with
_e( “Print”, “pmpro” );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
KeymasterHi, thank you very much.
In next version 2.2 we will added microdata for the breadcrumb and also will see about those notices. Droping in google can’t be related to the theme and maybe you have changed your permalinks and have not found links or other reasons.
The update should come next week
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
KeymasterHi, check the codes you have added or any other plugins if this happens with your profile only
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
KeymasterPlease read https://codex.wordpress.org/Child_Themes
yes you copy the files there keeping the folder structure as in the parent for the copied filesHi 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
KeymasterHi, you should try search the pmpro site for resources. the function used sets the membership manually
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
KeymasterHi, this is buddypress related. See https://codex.buddypress.org/getting-started/guides/change-members-profile-landing-tab/
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.October 30, 2014 at 01:28 in reply to: How do I change the Days, Months and Years in Date Selector? #33560Abe
KeymasterHi, what you need to change there? Those are automatically generated by 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.Abe
KeymasterHi, I have updated the response https://archived.seventhqueen.com/forums/topic/displaying-fields-under-nameavatar-in-member-list/#post-3572
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
KeymasterHi, that should not happen. Indeed the categories and tags are shown one after another in the meta. You could disable the tags to show by editing functions.php and commenting this line: $cat_tag[] = $tag_list;
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
KeymasterTry adding this CSS:
COPY CODE.main-color .article-content {background: none;}
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
KeymasterHi,
1. no, maybe you have caching enabled.
2. that should be done by CSSCOPY CODE.rtmedia-container .rtmedia-item-title, .rtmedia-activity-container .rtmedia-item-title, #buddypress div.rtmedia-activity-container .rtmedia-item-title { text-align: left; } #buddypress div.rtmedia-activity-container ul.rtmedia-list li .rtmedia-item-thumbnail { margin: initial; }
3. Yes that is how Buddypress works. Try looking on their forum for a hack
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. -
AuthorPosts