xyzbytes
Forum Replies Created
-
There are several different ways of fixing this. In your WP admin you should have a “child” theme. If not, you should be running one. Explained here- https://codex.www.ads-software.com/Child_Themes
The code that is mentioned above goes into the functions.php file of your child theme or you could add it to your main themes, functions.php file.
Sorry, I assumed that you would understand, I didn’t mention the functions.php file.
Make sure your browser cache is cleared as well.
Are you using a caching plugin? If you know how to use chrome Devon tools you will see if it is using the older rev of jquery and if you are having jquery errors if there are any.
You don’t have access to the file via ftp or through their control panel? Aren’t you running a child theme? You should have access to the WP files within WP itself.
Or you could sdd this to your child theme
// js fix for wp 4.5
function modify_jquery() {
if (!is_admin()) {
wp_deregister_script(‘jquery’);
wp_register_script(‘jquery’, ‘https://code.jquery.com/jquery-1.11.3.min.js’);
wp_enqueue_script(‘jquery’);
}
}
add_action(‘init’, ‘modify_jquery’);The error is related to the new jquery version/file used in WP 4.5 You need to change it back to the previous version used in 4.4.2.
Use the dev tools in Chrome. You will see the error.wp-includes/js/jquery
Forum: Fixing WordPress
In reply to: Page/Post Updating VisualI marked this as resolved. I know how to troubleshoot the issue. My original post was regarding a plugin which would give the end user a visual that that the page was being updated.
Thanks
Forum: Fixing WordPress
In reply to: Page/Post Updating VisualI haven’t went through that process yet. I’m sorry, but I’m not buying what you are selling. 2 seconds on localhost, sure. Ever hosted with Hostgator?
Thanks
Forum: Fixing WordPress
In reply to: Page/Post Updating Visual1 second is stretching it a bit. If I ran a clean install of WordPress and a standard theme, then the updating would be faster. But, how many folks are running that scenario with WordPress? Not many I bet.
Thanks
Forum: Plugins
In reply to: [Google Drive WP Media] Google Drive WP Media showing blank page in adminI had the same problem. You need to follow the process but what I did was uploaded the .p12 file to my Google drive as noted in Moch’s directions and it worked perfectly.
Use this, it is in the plugin config –
** You can upload the *.p12 file to the Google Drive itself (goto https://drive.google.com/ and just drag & drop your *.p12 file there), and then change the permission of uploaded *.p12 file set to public(select the file, click “More” button to show the dropdown menu, then click “Share”, click “Advanced”, click “Change”, click “On – Public on the web”, click “Save” button). Copy and save the file id.
Your Private Key Url Path will be like this: https://docs.google.com/uc?id=XXXXXX&export=download
or you can use: https://www.googledrive.com/host/XXXXXX
Where XXXXXX is your *.p12 Google Drive file ID (not the *.p12 filename), just replace XXXXXX with your Google Drive file ID.Forum: Reviews
In reply to: [WP Fastest Cache] Had to remove – Sorry EmreI’m using a different plugin now. Thanks
Forum: Plugins
In reply to: [WP Fastest Cache] Caching login page – Big ProblemI had to move on to another cache plugin. My sites have to be running without major issues like this. Thanks Emre for your plugin and hard work.
Forum: Plugins
In reply to: [WP Fastest Cache] I had to uninstall – it's too buggy now.Could it be an issue that while I am logged in the WPFC cache expires/refreshes as set in the backed causing a login session issue?
Thanks
Forum: Plugins
In reply to: [WP Fastest Cache] Caching login page – Big ProblemiThemes Security
Thanks
Forum: Plugins
In reply to: [WP Fastest Cache] Caching login page – Big ProblemThis wasn’t an issue until the latest plugin update.
Thanks