Forum Replies Created

Viewing 15 replies - 31 through 45 (of 195 total)
  • Thread Starter Kir 2012

    (@kir-2012)

    Actually, that wouldn’t show up as an issue when I swapped theme to wp default would it, so now I’m not sure what it could be

    Thread Starter Kir 2012

    (@kir-2012)

    Hello good morning, thank you for coming back to me – I already tried with the default theme before I posted and the outcome was the same. I also tried on another andriod phone. Is your phone android or apple?

    Looking back at what could be possible causing it, I have dequeued the style sheets the main sheet and min, and then requeued them from child theme, could this maybe have something to do with it? (There were some important statements in the styling I needed to override). Perhaps I’ve made a mistake there, and that has caused it? Here is the code:

    function my_theme_enqueue_styles() {
        wp_enqueue_style( 'my-theme-style', get_stylesheet_uri() );
     wp_enqueue_style('my-theme-extra-style', get_theme_file_uri('rtmedia.css') );
     wp_enqueue_style('my-theme-extra-style', get_theme_file_uri('rtmedia.min.css') );
    }
    add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' );
    
    
    add_action('wp_enqueue_scripts','rt_remove_default_style',999);  
    function rt_remove_default_style(){  
    
        wp_dequeue_style( 'rtmedia-main' );
        wp_dequeue_style( 'rtmedia-min' );
    } 
    
    Thread Starter Kir 2012

    (@kir-2012)

    For reference, each uploaded video in the gallery should appear in the gallery view, exactly as it already does in single media view (media-single.php) – ie with it’s rightful thumbnail and not hidden behind a different default image
    Thanks

    Thread Starter Kir 2012

    (@kir-2012)

    Hi there, thank you for coming back Pavan,
    I was still seeing your default thumbnail no matter what I did, and then I realised that when rtmedia plugin is activated it is generating it’s own cover image for our videos instead of using ours, which is all fine – it just means that it’s that particular thumb image that I will need to call into the gallery with that function, can you tell where you’re storing it / how the function should read with that in mind?

    function custom_thumbnail($src, $media_id, $media_type) {
        if ($media_type == "video") {
            return "https://example.com/image/custom-video-thumbnail.png";
        }
        
        return $src;
    }
    Thread Starter Kir 2012

    (@kir-2012)

    Hi there thanks so much, in the meanwhile I think I’ve come up with a really simple workaround with a bit of help, what’s the best way to pull up the thumbnail that is created with videopack when a video is uploaded, with this code:

    		
    function custom_thumbnail($src, $media_id, $media_type) {
        if ($media_type == "video") {
            return "https://example.com/image/custom-video-thumbnail.png";
        }
        
        return $src;
    }
    

    Kind regards

    Thread Starter Kir 2012

    (@kir-2012)

    I just wanted to add a bit about Buddypress in case you’re not familiar and it’s useful, it’s a community site tool which allows you to offer front end user profiles to members at your website. In it’s most basic form, out of the box it only offers a text editor so that you can allow your users to share messages from their profile, but there are a couple of plugins (like Mediapress) which allow you to offer your users the opportunity to share their images and videos from their profile also in a custom post type ‘activity’ post. So each time the user makes a post using the buddypress post form at their profile it creates an activity post (for instance displaying their video) which is displayed on their public feed to share with other users.

    Thread Starter Kir 2012

    (@kir-2012)

    Actually, further to my previous comment about the pop up when you use the shortcode button to subscribe to notifications, I don’t think the checkbox for ‘Subscription option updated’ is supposed to be there, is it? Is it an error?

    Thread Starter Kir 2012

    (@kir-2012)

    The ‘x’ to close the pop ups, they aren’t visible – they are there and they work but probably should be visible for users who aren’t very technical so they can see how to close the pop ups.

    Thread Starter Kir 2012

    (@kir-2012)

    Error: After subscribing to push notifications using the shortcode, the message changes on the button, but not to the correct custom message for ‘Shortcode – unsubscription button text’ under ‘Shortcode subscribe options text customization [subscribe_PNFPB_push_notification]’ section in customise buttons.

    Instead it displays the custom message saved for the Group subscription button text (under ‘BuddyPress Group subscribe/unsubscribe button customization’ section. )

    Thread Starter Kir 2012

    (@kir-2012)

    Is there a possibility of a shortcode button to activate push notifications but without the pop up that shows all of the different settings, if it isn’t going to match the settings dictated by admin?

    The issue with the bell icon is there aren’t options to hide it or show it only at a certain page or within a widget. Users don’t want the bell to live forever in the corner. Neither does admin, as also it reminds the user who has subscribed, of the option of unsubscribing merely by existing in view – which isn’t useful.

    If it is necessary to sign up first to notifications before the front end settings are functional, it would be good to have a button or link placed in settings to do that, without duplicate (and more) settings being shown in a pop up, what do you think?

    Thanks ??

    Thread Starter Kir 2012

    (@kir-2012)

    Hi. in the pop up modal, when you click the shortcode button to activate push notifications, there are options made available to non-admin users that aren’t appropriate, such as subscription updates.

    This would definitely not be something you would want general site users to be able to opt into.

    Items we have said you don’t want to appear as options front end, appear here still, where the expectation would be that it is synched with the settings available in the front end.

    Thread Starter Kir 2012

    (@kir-2012)

    Hi, in some of the CSS where there aren’t any options to control the colour scheme in plugin admin, you’re using !important statements, so it limits overriding css to match to a site’s own colour scheme
    Thanks ??

    ui-widget-header {
        border: 1px solid #EC008C!important;
        background: #EC008C !important;
        font-size: 12px!important;
    Thread Starter Kir 2012

    (@kir-2012)

    When I first accept push notifications using the bell, all areas are activated as they should be. If I move switch to off for comments (not comments for own posts etc, the other comments), then I can’t reactivate it again, it just won’t save as on again, if that helps any? (So currently, to turn that option back on I would have to deactivate all notifications and then reactivate to reinstate all)

    Something else, when you deactivate notifications, the processing message appears as it should, but doesn’t become the success message for off, it hangs. After a while I just clicked the processing message to get rid of it and the notifications had already been turned off, the message was just sticking.

    Thanks

    Thread Starter Kir 2012

    (@kir-2012)

    Update: I can see that if I disable all comments completely, then this removes both comment options from the front end, but disabling the option for all comments and leaving it active for only your own comments, doesn’t seem to remove that comments option on the front end settings.

    Additional: I use wpdiscuz for comments, if that’s useful to know in any way.

    Thread Starter Kir 2012

    (@kir-2012)

    Is there a way to hide an option from the front end settings if you don’t want the user to be able to select it?

    I tried choosing the setting for only the user’s comments etc, thinking that might remove the other comments option from the front end setting choices, but it didn’t, any ideas?

    Thanks

Viewing 15 replies - 31 through 45 (of 195 total)