Forum Replies Created

Viewing 15 replies - 61 through 75 (of 181 total)
  • The most common reason your Media Library isn’t loading may due to an incompatible WordPress plugin or theme. Please follow the steps below,

    1.Deactivate plugins one-by-one and test the media uploads.

    2.Update WordPress 5.5 core library and then check the media library thumbnail images & sizes.

    Thanks.

    Hello,

    You can add one <div class=”videoposition”> tag before iframe tag and then write custom css styles for position adjustments.

    .videoposition { margin: 0 auto; text-align: center; }

    video scroll bar: Add this scrolling=”no” attribute on iframe tag.

    Thanks!

    Hi,

    You could find editor in the right side / section. Please check screenshot here

    Code edit block

    Thanks!

    Forum: Fixing WordPress
    In reply to: Mobile Menu Color

    Hello!

    Please use the following CSS codes for color changes & design styles updates

    For text color

    nav#mobile-menu a {
    color: #ffffff;
    }
    nav#mobile-menu ul li:hover{
    background-color: #ffffff;
    }
    nav#mobile-menu ul li a:hover{
    color: #db2733;
    }

    Thanks,

    Hi,

    I have analyzed the issues and warning messages. Website pages returns the following error message

    Error: Uncaught TypeError: a.supersubs is not a function

    It may due to jQuery conflicts. You can add the following code in theme header.php and then test the pages.

    <script src=”https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js”></script&gt;

    Thanks,

    Hi,

    I have checked the console logs and warning messages. It seems to be issues with the WP core jQuery scripts. It returns the following error message

    Error : Uncaught TypeError: Cannot read property ‘msie’ of undefined

    You can download the latest version of jquery , upload it into the wp-includes directory and then check it up.

    Thanks,

    Hi,

    You can use CSS class & try the following code for image dimensional adjustments

    .post-thumbnail img {
    width: 100%;
    height: 300px;
    }

    It may due to caching issues. Please clear all browser cache, cookies & then check it up. Also clear plugin caches ( like WP super cache, Total 3 Cache / Godaddy etc.. ) and test the pages. It will fix the issues.

    “wp_editor” won’t show up as you’re making ajax call which only returns ajax response but not wp editor which is built by javascript on that page. In short, ajax call can get server side text response but not javascript editor which is built on client side and needs javascript processor to process.

    You can try ( window.QTags ) function.

    After your ajax call is done, try to copy this property, replace an id to a new one and call the QTags function. All buttons should appear.

    window.QTags({‘id’: YOUR_NEW_ID_HERE, ‘buttons’: “strong,em,link,block,del,ins,img,ul,ol,li,code,more,close”});

    By default, Menu Screen enables user to create a custom menu (also known as navigation menu, or main menu). Depending on the theme used, typically a site will have one navigation menu, while some themes may enable secondary or footer menus. These issues related with theme library functions & action hooks.

    Please de-activate the current theme and test the menu features with primary default WordPress theme like ( TwentyTwenty ). It will helps you to find the root causes and fix menu issues.

    Elementor Widgets not Loading can be caused due to several factors. It could be due to limited server resources, plugin conflicts, third-party addons, etc.

    1) Deactivate all the plugins on your site except Elementor and Elementor Pro.

    2) Now, check if WP audio widget is loading or not. If Elementor loads correctly then probably you have a plugin conflict or the server is running out of resources.

    3) Start activating plugins one by one and at the same time keep checking Elementor & WP audio widget functionality.

    4) If WP audio widget stops loading after activating a particular plugin then this could be a plugin conflict. ( Delete that plugin and fix the issues )

    5) After that, check if you see any JS errors or Messages in the Console when you try to load Elementor / WP widgets on a page. By this you can sort out script issues and fix it with updates.

    6) All done.

    I have checked the registration and login functionality of the website. It has some issues with the job board plugin scripts and data response hooks. Also some of the library script files returns 404 error. You can follow the below steps to fix the issues.

    1. Please de-activate the “WP Job Board” plugin

    2. Upload latest version of plugin and activate it.

    3. Test the registration and login modules.

    4. Hope it helps

    @satimis02

    Modify the CSS with the following class

    header#branding{
    background: lightblue;
    }

    .singular #primary{
    background: lightblue;
    }

    @roosw19

    Add the following code on function.php & that should help you.

    function themeslug_enqueue_script() {
        wp_enqueue_script( 'jquery-v-2', 'http://code.jquery.com/jquery-2.1.3.min.js', false ); //External Link
        wp_enqueue_script( 'mycustomJs', get_template_directory_uri() . '/default.js', false );
        // here you can enqueue more js / css files 
    }
    
    add_action( 'wp_enqueue_scripts', 'themeslug_enqueue_script' );
    • This reply was modified 5 years, 10 months ago by Sundar.
    • This reply was modified 5 years, 10 months ago by Sundar.

    @opseu575

    WordPress upgradation that you have done might have created any conflicts with the Ultimate Member plugin that you use , so better contact to Ultimate Member Plugin Support regarding this & they might help you with any patches or latest version to upgrade the plugin which should solve this issue.

Viewing 15 replies - 61 through 75 (of 181 total)