BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25218

    No problem. Please do let me know if you need any further assistance.

  • Keymaster
    (BuddyDev Team)
    Posts: 25218

    Hi Jay,
    Thank you.

    As I suspected, The error is due to notices being generated by divi theme for non super admins.
    here is what I see

    
    <br />
    <b>Warning</b>:  preg_replace_callback(): Requires argument 2, '_et_pb_sanitize_code_module_content_regex'
    , to be a valid callback in <b>wp-content/themes/Divi/includes/builder
    /core.php</b> on line <b>703</b><br />
    <br />
    <b>Warning</b>:  preg_replace_callback(): Requires argument 2, '_et_pb_sanitize_code_module_content_regex'
    , to be a valid callback in <b>wp-content/themes/Divi/includes/builder
    /core.php</b> on line <b>704</b><br />
    
    

    Please post this message to elegantthemes foum, They should be able to help in removing notices.

    This notice causes the reponse json to be corrupted that’s why you are seeing problem.

    A temporary fix that may work is by disabling WP_DEBUG if it is enabled.

  • Keymaster
    (BuddyDev Team)
    Posts: 25218
    Brajesh Singh on in reply to: BP Autologin at activation #2813

    Hi Jon,
    I am sorry for the inconvenience. Can you please ask one of those users to forward the activation email to you so that we can check the url and see if there is something to do with that?

    are you using any registration related plugin?

  • Keymaster
    (BuddyDev Team)
    Posts: 25218

    Hi Jay,
    I logged in. Since I am superadmin, I can not see the error. Both uploader Works for me.

    Can you please make my account admin of a sub site and I will be able to test better.

    PS: Please remove my super admin privilege and just make it admin of one of the site.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25218

    Hi Jay,
    My mistake. I thought It was MediaPress issue.

    1. It seems there are some notices being generated when you are uploading from post/page screen that is causing the json response to be corrupted. That’s why Media is being uploaded bu response is not correct.

    Can you please check in console if that is the case?

  • Keymaster
    (BuddyDev Team)
    Posts: 25218

    Hi Devin,
    Please give this plugin a try
    https://wordpress.org/plugins/custom-post-type-permalinks/

    It allows editing permalinks for custom post type. That will fix the issue.

  • Keymaster
    (BuddyDev Team)
    Posts: 25218
    Brajesh Singh on in reply to: [Resolved] Custom Gallery From BuddyPress Fields #2805

    Hi Paul,
    Thank you for the deails.

    Here is an example how we add the media

    
    $media_data = array(
    				'title'				=> $title,
    				'description'		=> $content,
    				'gallery_id'		=> $gallery_id,
    				'user_id'			=> get_current_user_id(),
    				'is_remote'			=> false,
    				'type'				=> $media_type,
    				'mime_type'			=> $type,
    				'src'				=> $file,
    				'url'				=> $url,
    				'status'			=> $status,
    				'comment_status'	=> 'open',
    				'storage_method'	=> mpp_get_storage_method(),
    				'component_id'		=> $component_id,
    				'component'			=> $component,
    				//'context'			=> $context,
    				'is_orphan'			=> 0,
    			);
    
    			$id = mpp_add_media( $media_data );
    
    

    where
    – type can be ‘photo’, ‘audio’, ‘video’ etc
    – component can be ‘members’, ‘groups’ etc
    -context csn be ignored

    -component_id – is user id or group id
    -src is the absolute path of the file on the file system
    -url – is absolute url of the file
    -mime_type is the mime type
    -status – can be ‘public’, ‘private’ etc

    Please do not call the mpp_add_media on mpp_loaded. Post types are only registered after mpp_init
    So, It will be better to call at ‘mpp_actions’ or anything after mpp_init’ or WordPress init hook.

    Hope that helps.

  • Keymaster
    (BuddyDev Team)
    Posts: 25218

    Hi Jay,
    I am sorry for the inconvenience.

    1. Which version of MediaPress are you using? Is it 1.0.3?

    2. Is MediaPress network active or only enabled on the main site?

    Please let me know these details and I will have some idea.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25218

    Hi Devin,
    No That is not the case. BuddyBlog completely supports custom post type and their permalink and that is what is happening on your site.

    There is a difference between default WordPress permalinks and the permalinks for custom post type. For custom post type, you specify it using the rewrite slug at the time of registration.

    I guess you are assuming that the custom post type should use similar schema as the default posts but that is not the case. Whether you use BuddyBlog or not, that will have no effect on it.

    Can you please tell me the structure you want to use for your custom post type permalink, May be I can find some option for rewrite slug.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25218

    Thank you for the screenshots.

    That makes it clear. I was thinking the issue is with the Header actions but I see you meant the problem with the tabs.

    I am looking at at and It is most probably a bug. A solution will be coming a little late today.

    Thank you
    Brajesh