• Resolved Mwiinga

    (@rodgerrmi)


    Awesome plugin you have. I love it, really.
    but, I think it’s conflicting with buddypress. When EasyTimetable is activated, buddypress related pages like member profile, get super distorted. They shrink like 3/4 of the screen, to the left.

    I have tried switching between themes, Conica, Twenty Seventeen and all but, same unpleasant results.
    Please take a look at it.
    Thank you for your time, and your good work..

Viewing 14 replies - 1 through 14 (of 14 total)
  • Plugin Author Anthony Ceccarelli

    (@stereonomy)

    Hello Mwiinga,
    Thank you for reporting this issue (and for your nice comment).
    I will look at this as soon as I can (probably monday) and I’ll keep you updated when it’s fixed.
    Have a nice Day
    Best regards

    Anthony

    Plugin Author Anthony Ceccarelli

    (@stereonomy)

    Hello again,
    well, as that wasn’t that complicated (small css issue on BuddyPress user activity’s page) I did it right away.
    You can update the plugin now and please, clear the cache of your browser to be sure the modifications are loaded.
    Thank you for your help!
    Best regards

    Anthony

    Thread Starter Mwiinga

    (@rodgerrmi)

    Oh wow.
    many thanks for the timely fix, Anthony.
    It’s all working perfectly fine..

    There’s only one note though, the buddypress buttons, ‘comment,’ ‘favorite,’ and all, have grown a little bigger than before. The actual activity content has become smaller..

    Any other issues I observe, I do promise to be letting you know.

    Really appreciate your time.

    Regards..

    Plugin Author Anthony Ceccarelli

    (@stereonomy)

    Any other issues I observe, I do promise to be letting you know.

    Thank you very much!
    I’ll check the button style next week.
    It’s a shame that a style for one plugin affects the entire site. I’ll see if there is another way to load stylesheet in wordpress.
    Best regards

    Anthony
    ps: if you could leave a note and a comment on the plugin’s page that will be very nice of you! 😉

    Thread Starter Mwiinga

    (@rodgerrmi)

    …next week sounds okay with me, Anthony.

    &, I done some observations. This time around, I have taken screenshot, to better help understand.

    Screenshot One – Widgets. Easy timetable, DEACTIVATED.

    Screenshot Two – Widgets. Easy timetable, ACTIVATED.

    Screenshot Three – Widgets. Easy timetable, ACTIVATED.

    Screenshot Four – Widgets. Easy timetable, ACTIVATED.

    Screenshot Five – Widgets. Easy timetable, ACTIVATED.

    A note and a comment, done. 🙂

    I will patiently wait for your next update. When update is ready, I will again do some observations, and report any issues I may find.

    Do have yourself a pleasant weekend.

    Regards.

    Mwiinga.

    • This reply was modified 7 years, 2 months ago by Mwiinga. Reason: Adding more clarity
    • This reply was modified 7 years, 2 months ago by Mwiinga. Reason: Adding more clarity
    Thread Starter Mwiinga

    (@rodgerrmi)

    ..just found another issue, on the Widgets area.
    I have ‘SiteOrigin Editor’ installed, and I just found that I could enter any text, unless I deactivated ‘Easy Timetable’ first.

    Here is a screenshot.

    Plugin Author Anthony Ceccarelli

    (@stereonomy)

    Hello Mwiinga,
    Everything will be solved when I’ll change the class names and some styles in EasyTimetable. This is just css issues.
    Your help is of great value, thank you.
    As soon issues have been fixed, early next week, I’ll do something for you.
    Best regards

    Anthony

    Thread Starter Mwiinga

    (@rodgerrmi)

    Oh wow, thank you Anthony, I really appreciate.
    I will also continue looking out for any issues, even with other major plugins that nearly all rely on, ‘woocommerce,’ ‘bbpress,’ & all.

    Further, if it’s fine with you, I could be making suggestions. Like right now, I have one suggestion; Is it possible, in future updates of ‘EasyTimetable’ to include a dedicated widget that can dragged into a sidebar, and items only for a single day in a list view?

    ooor, if not a ddicated widget, then shortcode which can be inserted in a text widget to show filtered items. I think that would be good. I don’t know about you..

    Mwiinga.

    Plugin Author Anthony Ceccarelli

    (@stereonomy)

    Hi Mwiinga,
    I’ve almost finished the free version, I will publish it as soon as the extended one is clear too.
    About ‘SiteOrigin Editor’ I installed it and had no issue with it, I can enter some text and the editor is correctly displayed.

    Thank you for your suggestions. I will make a plugin that can do what you wrote, I don’t know for the moment how but it is planned. I want to make it display a single day activities or the next scheduled activity.

    I’ll come back to you as soon as everything is ok.
    Best regards

    Anthony

    Thread Starter Mwiinga

    (@rodgerrmi)

    heyyy Anthony? 🙂
    Guess what??
    I have just run through all screenshot pages above, and ALL is awesomely fine.

    I was almost thinking of creating a separate child site, and run the easy timetable plugin there since I love the flexibility and easy to use features but, something kept on telling me to hang in there and now, WOW. I’m happy and super joyful. You have no idea.. Thank you for teaching me to be patient.
    Indeed, patience pays..

    Apart from your update bringing joy, if you don’t mind me sharing, today I wrote a custom plugin for a multisite. Gee not an easy job but,! it’s working! 🙂

    The custom plugin is basically filtering unwanted users on one child site, and redirecting them to desired URLs. The code is not so clean but, least it’s working for me, & I’m happy. Feel free to take a look below..

     <?php
    /*
    Plugin Name: ZIETS Staff Portal | limit Site Access to Staff & Lectures ONLY
    Plugin URL: https://rmi.one/rmiweb
    Description: A little plugin to turn limit access to Staff & Lectures ONLY.
    Version: 0.0.1
    Author: RMI Web
    Author URI: https://rmi.one/rmiweb
    Contributors: Rodger | https://rmi.one/rodger
    */
    
    /**
     * Redirect users to main site home page if they are logged in and don't have the required role on the sub site
     */
    function redirect_users_on_subsite() {
    
    	if ( is_main_site() || ! is_user_logged_in() ) {
    		//return ;//no need to do anything on the main site or if the user is not logged in.
    	}
    
    	//Let's pick up and assign what roles we will allow
    	$roles = wp_get_current_user()->roles;
    
    	$allowed_roles = array( 'administrator', 'staff', 'lecturer');
    
    	$found = array_intersect( $allowed_roles, $roles );
    
    			if ( ! defined( 'DOING_AJAX' ) ) {		 
    		    $current_user   = wp_get_current_user();
    		    $role_name      = $current_user->roles[0];
    		 
    		    if ( 'subscriber' === $role_name ) {
    		       wp_redirect( 'http://mainsite/childsite' );
    		        	} // Let's channel our subscribers this way. 
    
    		    if ( 'customer' === $role_name ) {
    		       wp_redirect( 'http://mainsite/childsite' );
    		        	} // Let's channel our customers this way.
    
    		    if ( 'student' === $role_name ) {
    		       wp_redirect( 'http://mainsite/childsite' );
    		        	} // Let's channel our stundets this way.
    
    		       } // if DOING_AJAX | We don't know what this does but, our goal is achieved. 
    		  }
    
    add_action( 'template_redirect', 'redirect_users_on_subsite', 0 );
    

    I’m very brand new to WordPress, PHP, Web developing and all. I’m learning it all via googling, reading around and mostly, youtube.
    Some things are tough but, I try to survive.

    Thank you for your time, Thank you for your good work, & Thank for you taking a time to consider my suggestions..

    Best Regards.

    Mwiinga

    Plugin Author Anthony Ceccarelli

    (@stereonomy)

    Hello Mwiinga,
    I would like to thank you for your help. Could you create an account on stereonomy.com, so I can create a membership for you for EasyTimetable Extended for WordPress?

    I’ll take a look to your code and suggestion as soon as I can.
    Thank you again for your help.
    Best regards

    Anthony

    Thread Starter Mwiinga

    (@rodgerrmi)

    I glad I could help out, Anthony. I do promise to continue monitoring for any issues, and report to you like wise.

    Thank you for the invitation on stereonomy.com.
    I have successfully created an account with my active email, and verified it. Using the very same email, feel free to reach out to me on it..

    Thank you for your awesome, super easy to use plugin, and thank you for everything.

    Mwiinga..

    Plugin Author Anthony Ceccarelli

    (@stereonomy)

    Hello Mwiinga,
    you can login again to the site and you’ll have access to paid files in “Your Profile -> Downloads”.
    I hope you’ll enjoy it.
    Thank you!
    Best regards

    Anthony

    Thread Starter Mwiinga

    (@rodgerrmi)

    Oh my God.
    Thank you. Thank you so much.
    I have uploaded the files, and it’s all working fine.
    The ‘Add New’ and the ‘Duplicate’ are fully functional.
    I’m glady to be part of ‘Easy TimeTable’s developement. 🙂
    Thank you so much..

    Regards
    Mwiinga.

Viewing 14 replies - 1 through 14 (of 14 total)
  • The topic ‘CONFLICTS with BuddyPress’ is closed to new replies.