Forum Replies Created

Viewing 15 replies - 16 through 30 (of 66 total)
  • Hello,
    same problem here

    Browser console report Javascript error on wp-seo-featured-image-940.min.js:

    Uncaught TypeError: Cannot read property 'featuredImage' of undefined
        at HTMLDocument.<anonymous> (wp-seo-featured-image-940.min.js?ver=9.4:1)
        at i (load-scripts.php?c=0&load[]=jquery-core,jquery-migrate,utils&ver=5.0.3:2)
        at Object.fireWith [as resolveWith] (load-scripts.php?c=0&load[]=jquery-core,jquery-migrate,utils&ver=5.0.3:2)
        at Function.ready (load-scripts.php?c=0&load[]=jquery-core,jquery-migrate,utils&ver=5.0.3:2)
        at HTMLDocument.K (load-scripts.php?c=0&load[]=jquery-core,jquery-migrate,utils&ver=5.0.3:2)

    Any suggestion for fix is welcome

    Thanks

    I’ve reported this issue months ago, here in www.remarpro.com, in GitHub, in their Facebook Group and finally in their forum .
    I’ve never received an answer.

    There are also other people with similar problem, here an example

    It’s a pity, it has great potential but the support is really bad.

    They say that this plugin is responsible but it’s not true. They say that works with any theme but in fact it works (not even that much) only with their pay theme.

    Initially I was considering buying one of their themes (although my site is really minimal and I do not need anything more than that) but with these levels of support I prefer to invest my money in other LMS systems and I think that short – if things do not change – I will migrate the site elsewhere.

    I hope you’re luckier

    Thread Starter fabio.grasso

    (@fabiograsso)

    Hello,
    my table learnpress_sessions is still growing up (now 12433).

    Can you please confirm if it working as expected and that there is an auto-cleanup process?

    Thanks

    This is definitely something on which Learnpress has to work! I reported a bug on Safari three weeks ago without being answered (I also wrote on GitHub and Facebook).

    I really find it these shortcomings a pity because for the rest it’s a great plugin!

    @zholub I’m glad to have helped you ??

    Regarding the redirect, have you changed some of the slug of the url? In my example I’ve set the default english slug (i.e. /courses/ , /profile/, and so on), if you have translated something you need to change the code.

    The shortcode for the profile is [learn_press_profile]

    Hi @zholub,
    I have a setup like your (a separate woocommerce for selling) ad so I had the same need.

    I’ve solved with CSS, the data are still present on the page but hidden from view:

    #learn-press-profile-nav .learn-press-tabs .orders,
    #learn-press-profile-nav .learn-press-tabs .settings,
    #learn-press-profile-nav .learn-press-tabs .dashboard
    {
        display: none!important;
        visibility: hidden!important;
    }

    Then for making sure that user cannot access the related web pages, I’ve created some redirect rules

    function redirect_courses() {
        if ( is_user_logged_in() ) {
    		$current_user = wp_get_current_user();
    		wp_redirect("/profile/" . $current_user->user_login . "/courses/purchased/" );
    		exit;
    	}
    	else {
    		wp_redirect("/wp-login.php?redirect_to=%2Fcourses%2F");
    		exit;
    	}
    }
    
    function redirect_courses_init(){
        if ($_SERVER['REQUEST_URI'] == "/courses/") redirect_courses();
        if (preg_match('"\\/courses\\/\\?"', $_SERVER['REQUEST_URI']))  redirect_courses();
        if (preg_match('"\\/profile\\/settings\\/.*"', $_SERVER['REQUEST_URI']))  redirect_courses();
        if (preg_match('"\\/profile\\/certificates\\/.*"', $_SERVER['REQUEST_URI']))  redirect_courses();
        if (!is_user_logged_in() && preg_match('"\\/profile\\/.*"', $_SERVER['REQUEST_URI']))  redirect_courses();	 
        if (!is_user_logged_in() && preg_match('"\\/courses\\/.*"', $_SERVER['REQUEST_URI']))  redirect_courses();	 
    }
    add_action('init', 'redirect_courses_init');

    This is an example. Maybe you need to change something following you requirements but it could be a good entry point. I.e. In my production site I’ve keeped visible the password change page, because can be useful for users.

    Ciao
    Fabio

    • This reply was modified 6 years, 11 months ago by fabio.grasso.

    2. It sort of true that it follows weird template hierarchy structure, for example Single Lesson page is generated on top of single Course page using absolute positioning and higher z-index value(that way single course is invisible and single lesson is visible), while it could be a separate template. It should be restructured in next big release(maybe on v4.0)

    @kendy73, the template based on z-index is also making some issue when viewing on Safari, as reported here.
    I agree with @kowsar89 that will be better to load everything on a separate template

    • This reply was modified 6 years, 11 months ago by fabio.grasso.
    Thread Starter fabio.grasso

    (@fabiograsso)

    I was in doubt that it could be due to my personalization, I tried on a brand-new WordPress setup with a basic theme (Twenty Eleven) and I get the same result. I have tried with various themes and in all cases on Safari I don’t see correctly the top bar when look at the lessons.

    I’ve tried to play with CSS and z-index values but with no luck.

    Here an example on Safari: https://ibb.co/gRmWS7
    And here an example on Chrome (correct): https://ibb.co/jYuqLS

    The issue is present on bot Mac OS and iOS

    Can you check?
    Thank you

    fabio.grasso

    (@fabiograsso)

    Hi,
    you can use a CSS, i.e. for hide instructor tab:

    .course-nav-tab-instructor{
    display: none!important;
    }

    Or if you want to remove the entire tab menu:
    .course-nav-tabs, .course-students{
    display: none!important;
    }

    Hope that this can help you

    Ciao!

    Thread Starter fabio.grasso

    (@fabiograsso)

    Hello,
    I still have this issue. Do you have any suggestion on how to solve?

    Thanks
    Fabio

    Same problem here.

    On PHP error trace I see this:

    [26-Jan-2017 20:33:07 UTC] PHP Fatal error:  Uncaught Error: Call to a member function get() on null in /var/www/xxx.net/wp-content/plugins/the-events-calendar/src/Tribe/Asset/Events_Css.php:55
    Stack trace:
    #0 /var/www/xxx.net/wp-content/plugins/the-events-calendar/common/src/Tribe/Template_Factory.php(101): Tribe__Events__Asset__Events_Css->handle()
    #1 /var/www/xxx.net/wp-content/plugins/the-events-calendar/src/Tribe/Template_Factory.php(139): Tribe__Template_Factory::prepare_asset_package_request(Object(Tribe__Events__Asset__Events_Css), 'events-css', Array, 'https://www.bar...', 'tribe-events', Object(Tribe__Events__Main))
    #2 /var/www/xxx.net/wp-content/plugins/the-events-calendar/src/Tribe/Template_Factory.php(123): Tribe__Events__Template_Factory::handle_asset_package_request('events-css', Array, 'https://www.bar...', 'tribe-events', Object(Tribe__Events__Main))
    #3 /var/www/xxx.net/wp-content/plugins/the-events-calendar/src/Tribe/Main.php(2066): Tribe__Events__Template_Factory::asset_package('e in /var/www/xxx.net/wp-content/plugins/the-events-calendar/src/Tribe/Asset/Events_Css.php on line 55

    I’ve temporary solved by commenting line 55 on file wp-content/plugins/the-events-calendar/src/Tribe/Asset/Events_Css.php

    My PHP version is 7.1.0. Hoping in a quick fix from Modern Tribe…

    Regards
    Fabio

    Thread Starter fabio.grasso

    (@fabiograsso)

    Hello @ggwicz,
    beyond the impact – questionable – on SEO.

    I’m increasingly convinced That the plugin does not work as you’d expect if I decide to disable a mode of viewing events, this must be disabled. I cannot risk a user can find hidden pages that I don’t expect it on my site. This is not acceptable.

    I expect that when I disable a feature, it will disappears, not tha it’s still accessible but hidden.

    If you think it’s not so I will try to found alternatives, but I remain convinced that it isn’t the behavior expected from that option.

    Thanks

    Thread Starter fabio.grasso

    (@fabiograsso)

    Hello @shelbelliott,
    I don’t think that’s a customization… The default options provide the ability to disable the day view, so I expect that if this is turned off, it doesn’t work.

    I would not be wrong, but in the past it was just so … Is it possible that’s something introduced with the latest versions?

    Thanks
    Fabio

    • This reply was modified 8 years, 4 months ago by fabio.grasso.

    Hello,
    I’ve the same problem: in some pages of my site twitter:description is missing.

    The site is approved and other cards works fine. The problem is that the field twitter:description is missing and so Twitter don’t validate the card.

    Do you have any suggestion on how to solve?

    It seems that forcing the description in Twitter medatadata settings on Yoast tab of the page make the twitter:description tag to appears but I cannot edit all my pages to fix this, I prefer to use an autogenerated description.

    I’ve the problem only on pages, posts works fine

    Thanks
    Fabio

    Thread Starter fabio.grasso

    (@fabiograsso)

    Hello Nico,
    thanks for your answer, I’ve solved by disabling ajax effects in the calendar pages. There is an incopatibility between ajax effects in my theme and the calendar plugin.

Viewing 15 replies - 16 through 30 (of 66 total)