The 3 images on the home page of aaleather.com are no longer showing up, and I can't figure out why. The content was added with the WPBaker Visual Composer and they were there previously with no problems. I don't know what would cause them to decide not to show up anymore!
The links they direct to still work. The title and text below them are there. Just the images aren't appearing.
I checked to make sure the images are still in our media uploads.
And as I was just looking at the elements in the dev tools, I noticed the img tags are not self closing. I don't know if that matters here? If you have any idea what is going on here, I could use some help! Thanks!
Screenshot
It looks the images are loading fine from our side, the reason might be with the stored cookies. try the below steps in order.
CTRL + F5(refresh) your browser.
if that doesn't work.
Try to deactivate the recent plugins you installed one by one and see which one is causing the issue and find an alternative to that plugin.
Create a backup of your website using wp clone or another plugin for emergency
download the latest version of visual composer plugin
deactivate , then delete the existing visual composer plugin (do not delete the pages by mistake)
upload the latest version of visual composer plugin and activate it
Try refreshing your webpage if that helps
if not, go to "edit that page" , open that image block and re-add the image, now update page and see the progress.
Related
I am using Essentials WordPress theme, it has it's own header and footer builder. I am using the latest version both for the theme (Version 3.0) and WordPress (Version 6.0). The problem is, when I want to create a new header or footer, the publish button doesn't work. In other words, it DELETES all elements after hitting publish, and I see a blank page after it.
I have tried several things like:
1- deactivating/reactivating plugins one by one,
2- used one older version of WP,
3- clearing WP and browser's cache,
4- trying to create a new header/footer from another browser.
Sadly, none of them worked and the problem is still there.
So I headed to Stackoverflow for help.
I'll appreciate if you help me solve it.
I'm having a serious problem. I have wordpress 3.9 installed on my server. the problem is that my website front end loads good, but my back end just loads text :
I have updated/reinstalled wordpress but nothing has happend. What should I do?
Thanks for help.
I'm 100% sure that if you simply do the following, you'll figure out what's wrong and fix it.
Deactivate all plugins without use of your WP-Admin.
Activate them, 2 or 3 at a time, and determine which plugin is the culprit
If none of these plugins are the culprit, go to the WordPress site and download WordPress. With an FTP utility such as FileZilla or another client if you already have one, then upload the entire wp-admin folder to your server, overwriting older files.
Your WordPress admin will be fine after these steps. And of course, never alter any core WordPress files -- ever. The only files you should ever tinker with are files in your child theme, which is something you should be using.
Would be great to have a bit more information about this topic. First of all: Is this a new problem respectively did the admin run without errors before? (3.9 sounds like the page is not a new clean install).
Usually I would start debugging the page via e.g. firebug => Check the Stats of the CSS-Files.
If they load correctly (200) check if they are empty or incomplete (Incompleteness can be checked via diff against the original file ... most IDEs will handle that for you)! If they aren't you have probably just diabled CSS in your browser for the URL of the admin-panel.
If they don't load, try to check why! If the files exist its most probably an error in your .htaccess (wrong rewrite, blocked directory, etc.).
I updated my wordpress website version with 3.9.2. After updating when i try to add or update any page or post, visual editor tab shows blank. It does not display toolbar buttons or page or post content. Text tab works fine
I tried following solutions provided on different sites with no luck
1) clear browser cache
2) deactivating all plugins
3) change to default theme and again change to desired one
The people who had the same issue had cured the problem by doing one of these suggestions:
1) Install “Use Google Libraries” plugin
2) Add to your wp-config.php file:
define( ‘CONCATENATE_SCRIPTS’, false );
3) Download a refresh version of WordPress from WordPress.org and via ftp replace /wp-includes/js/tinymce folder
4) Download a refresh version of WordPress from WordPress.org and via ftp replace /wp-includes folder
I tried all above solutions but no success :(
I also refer following links but could not find solution
Wordpress Visual Editor broken
Visual editor not working in wordpress 3.8.1?
I have attached screen-shoot for visual editor tab and text editor tab for one page
Please help
I had this issue on APlus.net Hosting and had one heck of a time fixing it. All the text in the Visual Editor was white, and I couldn't get to the HTML tab. The Visual Editor was missing all the formatting buttons -- it was just a white empty space.
After trying everything listed across the web without success, I was finally able to track down the culprit on APlus hosting. It turns out APlus hosting injects their own analytics tracking code into even the WordPress Admin pages. The code for their analytics wasn't written properly -- the code was missing a final ending apostrophe, which resulted in breaking all the code that came after it. In my scenario, the injected code broke the Page Editor TinyMCE JS code.
I checked the Google Chrome inspector to find the error in the code, and after talking with a Tech Support rep at APlus I was able to fix it by deleting the analytics file on the server via FTP:
/private/.wmcnum
I hope this helps. If anything check out the Google Chrome inspector and look for errors. If it's something you can't change, definitely get in touch with your hosting provider.
I've seen an issue like this before. For me, the site we were updating had many out of date plugins. The one that caused our issue was WP Polls. Something went wrong during the update process, and certain files were missing from the plugin directory. I kept a backup of all of the files from before the update, but even re-uploading them didn't fix it. We ended up removing the plugin that was causing the issues and re-installing it. If you can narrow down which plugin might have some discrepancies, then I'd recommend backing everything up (including your database), deleting the plugin, and re-installing it.
If it was simply a WordPress update, it may be that not all of the WordPress files copied over. If you can get a fresh install of WordPress 3.9.2, you can compare the differences between those files and the files on your site. If you're getting an error from somewhere in wp-admin, I'd start my check there.
This is the solution that worked for me:
“Use PHPMyAdmin (or another database editor) to search inside your WordPress database in your “wp_options” table for the record called “can_compress_scripts”. and if it has a value of “1” for the “option_value”, change this to “0” and save the change. You will find your editor working again! (Note: Sometimes this record won’t even exist, so in that case you need to add it. Look for a WordPress database that does have it in order to see what you need to add.)"
original answer by digbymaass:
https://wordpress.org/support/topic/visual-editor-missing-buttons-not-working-white-text-help-1/
In my experience I've had some problems with the tinymce editor. Some of my clients reported they've 'lost' some of the buttons in the editor (or all of them).
I found that disabling emojis with the tiny_mce_plugins filter not also disables emojis but half the buttons in the editor.
Maybe you have somewhere in functions.php this line, just comment it and refresh cache. Let's see if that helps.
add_filter( 'tiny_mce_plugins', 'disable_emojicons_tinymce' );
I checked all over about this. I could not edit or see text in wordpress posts or pages. It seemed to narrow down to the tinymce plugin where I found errors through the Chrome console. I tried a number of things without luck. So I disabled tinymce and all is running smoothly. How simple for a problem with so many variables and options for a fix.
Have a UGC app being run by WP 3.7.1 (I know I need to upgrade to 3.8.1). Users upload images, admin can approve/reject, all good. Admin also HAD the ability to edit an image (rotate being the biggest need) directly in the WP Media Edit screen. All of sudden this button has disappeared.
I have seen this as a fairly common bug from a few years past, but common solutions don't seem to be working.
I have confirmed that PHP GD is running on the server and I have disabled a number of plugins. These are the two common solutions I've seen listed before. Neither have resolved this issue for me.
Any thoughts to why this button would have disappeared or ways to ensure it is enabled?
Check is dir '/wp-content/uploads' writable.
I have a working Magento 1.4.1.0 installation that is due to go live next week, all was well until yesterday when I noticed the following message when uploading images to a product 'Image type and information need to be specified for each store view'. The image uploads fine and is visible on my server, the preview works when I hover over it too.
But when I attempt to load the product on the front-end the template breaks in places and when I view the source the img src="" is blank?
Two things I played around with before I noticed it wasn't working were image watermarks and attribute sets, could this be a factor?
I have searched the Magento forums but cannot find a solution that works..
I have tried the following to fix it... Installing the dull uploading to replace the flash one, tweaking the .htaccess and php.ini, flushing the cache and indexes.
I am at a total loss and have a fast approaching deadline.
Please can someone help?
Thanks Dan
I had the same problem, later I found that this notice was normal, but the custom image used to watermark the product images was very large, so the small images were not visible.
I removed the watermark image and cleared the image cache form cache management, after that when I refreshed the catalog, all images were visible without any issue.
When you create your import file for images, make sure you include a "store" column (or is it "_store"?), and put the correct value in that column. I've had the same problem and I believe that's how I solved it.
With me this problem happened when I newly created Store using Menu Admin->System-> Manage Store.
In the same menu, I clicked on the "Default Store View" to edit its properties and disabled it. The problem was solved.
I solved this problem by installing php5-gd on my server. After the install I manage to upload the images.
sudo apt-get install php5-gd
then restart your web server