Forum Replies Created
-
Author
-
Kieran_SQ
ModeratorHi,
Thanks for contacting us about importing events from Facebook. This is not a theme related question and is specific to the plugin you’re using, you should direct this question to the plugin author for their input.
With that said, I believe the easiest way to do this would be via Zapier. You can build a zap that will import any event from a Facebook page and turn it into a WordPress post – in your case a custom post type within your plugin. It would take a little while to setup as you will need to connect the data sources but it should work.
https://zapier.com/apps/facebook-pages/integrations
Hope this helps,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
June 16, 2018 at 16:23 in reply to: Restrict non members from accessing buddy press, user profiles #200934Kieran_SQ
ModeratorNot marked as solutionJune 16, 2018 at 16:17 in reply to: BBpress notifications don’t appear in the Buddypress member page #200933Kieran_SQ
ModeratorHi,
Thanks for contacting us about the notifications in BuddyPress for bbPress. Can you please update this ticket, in a private reply, with login details so I can check this out. Please make sure the account in question will have bbPress notifications to view.
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
June 16, 2018 at 16:10 in reply to: rtmedia images in Profile Tab gallery-carousel is not clickable in Mobile version #200932Kieran_SQ
ModeratorHi,
Thanks for bringing this to our attention, I will forward this ticket directly to one of our developers for review. They’ll be in touch with you as soon as they can, Monday to Friday, East European Time.
Thank you,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQ
ModeratorHi,
The custom code for the field embed was indeed in the functions.php file. It’s for a field titled ‘Intro video’, replace any instances of this term if the name of your field has changed (case sensitive).
COPY CODEfunction set_video_field( $field_value ) { $bp_this_field_name = bp_get_the_profile_field_name(); //$bp_this_field_id = bp_get_profile_field_data($bp_displayed_user_id, 'Intro video'); // field name (case sensitive) if ($bp_this_field_name == 'Intro video' && isset($field_value)) { //$val = xprofile_get_field_data('1083', $bp_displayed_user_id); //$val = bp_get_profile_field_data($bp_displayed_user_id, 'Intro video'); // building the HTML and h/w of the iframe //$field_value = wp_oembed_get($field_value, array('width'=>640,'height'=>320)); //parse_str( parse_url($field_value, PHP_URL_QUERY), $my_array_of_vars ); //$video_id = $my_array_of_vars['v']; $url = parse_url($field_value); if($url['host'] == 'youtube.com' || $url['host'] == 'www.youtube.com' || $url['host'] == 'youtu.be'): $field_value = preg_match("/^(?:http(?:s)?:\/\/)?(?:www\.)?(?:m\.)?(?:youtu\.be\/|youtube\.com\/(?:(?:watch)?\?(?:.*&)?v(?:i)?=|(?:embed|v|vi|user)\/))([^\?&\"'>]+)/", $field_value, $matches); $video_id = $matches[1]; $field_value = '<iframe width="640" height="360" src="https://www.youtube.com/embed/'.$video_id.'" frameborder="0" allowfullscreen></iframe>'; echo $field_value; elseif($url['host'] == 'vimeo.com' || $url['host'] == 'www.vimeo.com'): $field_value = preg_match("https?://(?:www\.)?vimeo\.com/([0-9]{6,10})", $field_value, $matches); $video_id = $matches[1]; $field_value = '<iframe width="640" height="360" src="https://player.vimeo.com/video/'.$video_id.'" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>'; echo $field_value; //$field_value = wp_oembed_get( $field_value, array( 'width' => 640 , 'height' => 360) ); else: echo $field_value; endif; } return $field_value; //return wp_oembed_get( $field_value ); } add_filter('bp_get_the_profile_field_value','set_video_field',1);
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQ
ModeratorHi,
Yes, your database will almost certainly be located at the same place your hosting is. They should have a few backups available of your files and database. If you used a plugin to backup your website it likely made a backup of your database at the same time as the files – check the archive folder for any database .sql or .csv files.
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQ
ModeratorHi,
User profiles and pages are all database items and should exist if you left your database intact or restored it from a valid backup.
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQ
ModeratorHi,
The WordPress code editor is disabled on the back-end of that site so I cannot check the KLEO Child theme’s functions.php. Can you please download the functions.php, add it to a .zip archive and upload it to this ticket so I can check it.
Please do not paste the contents of the file here if there is a lot of content. If there is only a small amount of code please paste it here but make sure to use the code tag before and after the code so that the formatting is correct.
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQ
ModeratorHi,
It looks like you’re running BuddyApp 1.5.3 with BuddyPress 3.0 – for BuddyPress 3.0 compatibility you will need to update BuddyApp to 1.5.6
https://archived.seventhqueen.com/buddyapp/article/changelog
If you haven’t setup updates for BuddyApp yet you can do so by following this quick guide https://archived.seventhqueen.com/buddyapp/article/theme-plugins-updates
Once you have updated BuddyApp make sure you clear all website caching, CDN and local cache to get the latest files locally.
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
June 10, 2018 at 18:54 in reply to: Members profile background and option for private messaging #200481Kieran_SQ
ModeratorHi,
I can’t check as the account I have on your site is not an administrator, but, I think you may have turned off activity in the BuddyPress options. The @mention name in the profile header is dependent on this functionality being enabled.
I will have to refer this ticket to a higher support level to assist you with removing the timestamp from the online indicator on the members profile. Someone will be in touch with you tomorrow or Tuesday to assist you further in your query.
Thank you for your patience,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
June 10, 2018 at 18:36 in reply to: Members profile background and option for private messaging #200479Kieran_SQ
ModeratorHi,
Please add the below custom CSS to your KLEO Child theme’s style.css by going to WP Admin > Appearance > Editor > KLEO Child > Style.css or via Theme Options > General Settings > Scroll to: ‘Quick CSS’
COPY CODEdiv#buddypress #item-nav .item-list-tabs ul.responsive-tabs { margin: 0 auto !important; display: inline-block; } #buddypress div.item-list-tabs#subnav ul{ margin: 0 auto !important; text-align: center; display: inline-block; }
Make sure to clear your website cache, CDN and front-end cache (Ctrl+F5) to see the changes.
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
June 10, 2018 at 18:17 in reply to: Members profile background and option for private messaging #200476Kieran_SQ
ModeratorHi,
I’d need to see the layout settings you’ve chosen for the BuddyPress profile to generate the correct CSS for you. Could you share login credentials for an account that has an appropriate membership level to see profiles on your site please?
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
June 10, 2018 at 16:36 in reply to: Members profile background and option for private messaging #200471Kieran_SQ
ModeratorHi,
We have a plugin that provides that functionality in the WordPress.org plugin repository. You can find it here https://wordpress.org/plugins/buddypress-cover-photo/ or by going to WP Admin > Plugins > Add New > Search: ‘BuddyPress Cover Photo’.
I do not know of any plugin that allows a user to turn off or on the messaging functionality. It’s an interesting idea, but it would be a lot of code to write and therefore would be outside the scope of the support we can offer you via the support forum. If you find something regarding this then please let me know.
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQ
ModeratorHi,
You’re welcome, feel free to open a new ticket any time with any other questions and we’ll be happy to assist.
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQ
ModeratorHi,
The privacy options comes from rtMedia. With rtMedia installed go to WP Admin > rtMedia > Settings > Section: ‘Privacy’ > Option: ‘Enable privacy’ and configure according to your needs.
I can see from your other ticket that you have several plugins installed that provide media uploads in BuddyPress. Using more than one will cause issues and conflicts on your site.
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQ
ModeratorHi,
Great to hear! Feel free to open a new ticket any time and we’ll be happy to assist.
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQ
ModeratorHi,
If you can share access to this site I can take a look for you. I cannot promise that I will find it as it could realistically be anywhere, but, if it’s in the right place then I may be able to help.
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQ
ModeratorHi,
That would require custom code to achieve I think, but I cannot find a suitable off the shelf plugin for you.
We have just released an update of a once defunct plugin called Buddypress XProfile Custom Field Types Reloaded which adds a ton of custom field types to the BuddyPress profile.
Currently embeds are not an option but I think it would be worth opening a topic in the support tab for the WordPress.org plugin and asking our core developer to look into including this for you. Let them know in the topic that you have the KLEO theme.
Plugin: https://wordpress.org/plugins/bp-xprofile-custom-fields/
Plugin Support: https://wordpress.org/support/plugin/bp-xprofile-custom-fields
Side note: For YouTube embeds to work properly in BuddyPress it must be the full youtube.com URL and not youtu.be (shortened) URL used in your example.
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
-
AuthorPosts