Forum Replies Created

Viewing 40 posts - 1,561 through 1,600 (of 4,912 total)
  • Author
  • in reply to: How to remove profile navigation #200936
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: Integrating Facebook posts and posts on kleo site #200935
     Kieran_SQ
    Moderator

    Hi,

    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 solution

    If 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
    Moderator
    Not marked as solution
     Kieran_SQ
    Moderator

    Hi,

    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 solution

    If 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
    Moderator

    Hi,

    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 solution

    If 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.

    in reply to: Profile Field Embed Code #200931
     Kieran_SQ
    Moderator

    Hi,

    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 CODE
    function 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 solution

    If 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.

    in reply to: Modify widget #200853
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: Theme Update #200641
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: My website has disappeared #200589
     Kieran_SQ
    Moderator

    Hi,

    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 solution

    If 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.

    in reply to: What is Sticky Main Menu? #200577
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: import option doesn’t work #200561
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: import option doesn’t work #200559
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: import option doesn’t work #200556
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: My website has disappeared #200553
     Kieran_SQ
    Moderator

    Hi,

    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 solution

    If 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.

    in reply to: Theme Update #200552
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: What is Sticky Main Menu? #200496
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: Profile Field Embed Code #200495
     Kieran_SQ
    Moderator

    Hi,

    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 solution

    If 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.

    in reply to: What is Sticky Main Menu? #200491
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: In what country are you – block countries #200489
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: In what country are you – block countries #200486
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: Member register issue #200484
     Kieran_SQ
    Moderator

    Hi,

    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 solution

    If 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
    Moderator

    Hi,

    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 solution

    If 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
    Moderator

    Hi,

    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 CODE
    div#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 solution

    If 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
    Moderator

    Hi,

    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 solution

    If 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.

    in reply to: Portfolio title #200472
     Kieran_SQ
    Moderator
    Not marked as solution
     Kieran_SQ
    Moderator

    Hi,

    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 solution

    If 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.

    in reply to: How to get privacy for activity #200469
     Kieran_SQ
    Moderator

    Hi,

    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 solution

    If 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.

    in reply to: The submenu is not auto refreshing #200467
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: How to get privacy for activity #200466
     Kieran_SQ
    Moderator

    Hi,

    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 solution

    If 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.

    in reply to: The submenu is not auto refreshing #200464
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: The submenu is not auto refreshing #200460
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: All text appearing as link #200459
     Kieran_SQ
    Moderator

    Hi,

    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 solution

    If 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.

    in reply to: Issue with facebook login from mobile #200458
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: Profile Field Embed Code #200457
     Kieran_SQ
    Moderator

    Hi,

    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 solution

    If 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.

    in reply to: Delete both theme + child theme? #200441
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: Delete both theme + child theme? #200439
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: Delete both theme + child theme? #200436
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: Delete both theme + child theme? #200434
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: Profile Field Embed Code #200433
     Kieran_SQ
    Moderator

    Hi,

    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 solution

    If 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.

    in reply to: Users name not showing up on profile page #200431
     Kieran_SQ
    Moderator
    Not marked as solution
Viewing 40 posts - 1,561 through 1,600 (of 4,912 total)

Log in with your credentials

Forgot your details?