• Resolved monchib

    (@monchibord)


    Hi, the plugin User Profile Made Easy of ThemeFluent doesn’t work properly only using Customizr theme. When you are on the user profile page, clicking edit profile the tab is supposed to expand with all the option. Clicking it in a Customizr site, it doesn’t expand and the page doesn’t change.
    Is there anything I should enable?
    Thank you

Viewing 13 replies - 1 through 13 (of 13 total)
  • Thread Starter monchib

    (@monchibord)

    P.s.
    The tab uses slideDown to open. I’m not an expert but I think is Jquery or js
    Hope that can be useful.

    Well yes is a js conflict somewhere.. maybe a link to your site could help to see if it returns some error..

    Thread Starter monchib

    (@monchibord)

    lnx.scuoladelportare.it/site
    Thanks

    Thread Starter monchib

    (@monchibord)

    I’ve checked and spoken with the plugin support. the error I get is this one

    TypeError: a(…).offset(…) is undefined
    http://lnx.scuoladelportare.it/site/wp-content/themes/customizr/inc/js/tc-scripts.min.js
    Line 1

    You can try to register here lnx.scuoladelportare.it/site/register
    and then edit your profile here: lnx.scuoladelportare.it/site/profile/xxxx
    xxxx is your username

    Thanks

    Wanna try if disabling:
    Appearance -> Customize -> Links -> Enable/disable smooth scroll on click it still occurs?

    Thread Starter monchib

    (@monchibord)

    i make your user admin just to try.

    Ok, well.
    Yes disabling that option you don’t have that problem with tc-scripts anymore (which could be a customizr bug), but still remains a problem with jquery fancybox.
    That plug-in has an option under:
    UPME Settings -> Scripts and Styles -> Disable Fancybox Scripts and Styles
    I’ve checked it, and now it works. Hover or click on the question mark next to that option to see when disable it. Is something they have expected, evidently.
    Hope this helps and thanks for trusting me 😉

    Thread Starter monchib

    (@monchibord)

    Wow, I appreciate it a lot!
    Thank you so much!
    Is there anything I can do for you?
    Thanks again!

    Enjoy the theme 🙂
    Anyway that issue with tc-scripts should be a known bug.. hopefully will be fixed and you can enable it again, alternatively if you want you can disable the smooth scroll just for the profile page adding the following code to your child-theme functions.php:

    add_filter('tc_smooth_scroll', 'disable_smoothscroll_in_profile');
    function disable_smoothscroll_in_profile($bool){
        return $bool && ! is_page('profile');
    }

    Then you should be able to re-enable the option “Appearance -> Customize -> Links -> Enable/disable smooth scroll on click” to have it in other pages.
    If you try this solution and you have problems.. let me know, or just back on the working one 😛

    Thread Starter monchib

    (@monchibord)

    ignore that post, I pasted a wrong code 🙂

    Now I pasted the code you gave me and re-enabled the scroll feature and everything is working.
    THANK YOU

    Wonderful 😀
    You’re welcome!

    Thread Starter monchib

    (@monchibord)

    Hi, here I am to bother you again 🙂
    As you well know, that code was working perfectly. I even added

    add_filter('tc_smooth_scroll', 'disable_smoothscroll_in_member_list');
    function disable_smoothscroll_in_member_list($bool){
        return $bool && ! is_page('member_list');
    }

    which is working great.
    Unfortunately now in the backend page of events managing, some tabs won’t open anymore.
    If I want to use that code to filter those pages to, how can I do?
    When I am on that page the address to add a new event is
    http://lnx.scuoladelportare.it/site/wp-admin/admin.php?page=eme-new_event
    and to edit an existing one is
    http://lnx.scuoladelportare.it/site/wp-admin/admin.php?page=events-manager&eme_admin_action=edit_event&event_id=4
    I tried to put “eme-new_event” as page name in the code you gave me with no success.
    Is it possible or should I surrender?
    If you need and want, I grant you admin permission again.
    Thanks a lot

    Sorry for the delay monchib, In this case I think the problem is somewhere else . Some other plug-in in conflict? Dunno. I can tell you that tc-scripts.js isn’t loaded in those admin pages.

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

The topic ‘Customizr and UPME’ is closed to new replies.