Forum Replies Created

Viewing 9 replies - 1 through 9 (of 9 total)
  • Thread Starter reza10

    (@reza10)

    after 4 weeks you sent me just a general answer! yes i know Presto can show sitename or any text as watermark

    but my question is to show current watching user’s username or email as watermark

    i need it to prevent screen recording, is it possible with Presto ?

    Thread Starter reza10

    (@reza10)

    hello

    i tried above snippet but it is not working

    for settings page this code :

    add_filter(‘tutor_dashboard/nav_items/settings/nav_items’, function($nav) {
    unset($nav[‘social-profile’]);
    return $nav;
    });

    removes social profile from menu but it is not working for reset password item

    i also tried your given code :

    add_filter(‘tutor_dashboard/submenu_items’, ‘remove_some_submenu_items’);
    function remove_some_submenu_items($submenus) {
    if (isset($submenus[‘settings’])) {
    unset($submenus[‘settings’][‘reset-password’]); // Removes “Change Password” submenu
    }
    return $submenus;
    }

    but it is not working and i still see the reset password item submenu in settings menu

    and logout item is also not removed with your given snippet

    i want this changes for student dashboard

    Thread Starter reza10

    (@reza10)

    thanks for the reply but that was not my problem

    my permalink is already on the post name and my tutor dashboard itself is working well

    my problem is how I can use the tutor dashboard inside another user panel ?

    now I have a user panel with many features for woocommerce, ticketing, and …

    and I need to use the tutor dashboard as a menu item of my user panel Inside it

    for now, when I add the tutor LMS dashboard to my user panel as a menu item it works and it shows the dashboard

    but when I click any links inside the dashboard then it bypasses my user panel and opens the dashboard alone

    when I am in my user panel the link is like this :

    https://sitename.com/panel/?p=tutorlms which shows the tutor dashboard

    but after that when I click any item in the tutor dashboard the link changes to :

    https://sitename.com/dashboard/my-profile/

    it bypasses my user panel system and shows the dashboard alone

    please help me show the tutor LMS dashboard as a part of my user panel

    or tell me if there is any method or shortcode to show only enrolled courses?

    cause my current user panel has all other items and I just need to show enrolled courses
    Thread Starter reza10

    (@reza10)

    why it is marked as resolved without a reply!!!!

    Thread Starter reza10

    (@reza10)

    i do not mean plugin text areas ! i know i can use loco translate to change the text

    i mean the calendar itself, change the calendar with month names and dates from Georgian to Jalali

    Thread Starter reza10

    (@reza10)

    من افزونه پنل کاربری شاهکار رو دارم روی سایتم

    ظاهرا افزونه نسخه جدید شما با اون مشکل داره

    اون رو غیر فعال کردم افزونه شما فعال شد ولی اون فعال باشه نمیشه زرین پال ارور میده و بالعکس

    ضمن اینکه الان که اونم غیر فعاله ووکامرس هشدار داده

    This plugin is incompatible with the enabled WooCommerce features ‘Remote Logging’ and ‘High-Performance order storage’, it shouldn’t be activated.

    Thread Starter reza10

    (@reza10)

    thank you for your reply

    I am not using Amazon for hosting my videos so I can not use coconut with fvplayer

    and I am using a local video on demand provider with sends HLS stream to my website
    they have a kind of secure link feature

    and I am not sure is it possible to use it with fvplayer or not

    Thread Starter reza10

    (@reza10)

    Ok thank you
    now it is working

    but two errors in schema check

    1-description
    A value for the description field is required.

    2-warningprovider
    The provider field is recommended. Please provide a value if available.

    any way to solve it?

    Thread Starter reza10

    (@reza10)

    this is what i found in your website :

    add_filter(‘wpdiscuz_rating_schema’, function ( $rating_schema, $key, $postid ){
    $my_rating_schema = ‘Course’;
    $rating_schema = str_replace(__(‘Article Rating’, ‘wpdiscuz’), $my_rating_schema . ‘ Rating’, $rating_schema);
    return preg_replace( ‘|schema\.org\/Product|i’, ‘schema.org/’ . sanitize_text_field($my_rating_schema) , $rating_schema);
    },11, 3);

    how can I use it for all my courses?
    I need it to work on all of my courses pages and product pages separately

Viewing 9 replies - 1 through 9 (of 9 total)