kilolima
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: An unicode control character appeared above my site header, help!Discovered the source of the strange unicode character. It’s from a plugin called “BWP Google XML Sitemaps”:
https://betterwp.net/wordpress-plugins/google-xml-sitemaps/
Once deactivated the unicode character is no longer present.
Forum: Fixing WordPress
In reply to: An unicode control character appeared above my site header, help!Just noticed that the Unicode box is also at the top of the WP admin dashboard: screenshot
Forum: Fixing WordPress
In reply to: 3.9 Update – How to Add Padding and Border to Images Now?I’ve used the image spacing and padding in WordPress since early 3.x. Now it’s totally gone. Sure, I can manually add it in html to the post, but that seems ridiculous in 2014. And no, I don’t want to have to define custom CSS image classes for image spacings- the old function allowed on-the-fly spacing adjustments as needed for each image.
**Wow, so either the forum is overrun with people upset with the 3.9 changes, or the search feature is broken, but I had to go through google to find this thread. Maybe for the sake of usability, it would be better if WordPress would ditch their custom forum code and use an established forum project?
Forum: Fixing WordPress
In reply to: How to align image with description in blogroll widget?Hi,
Using the right-click mouse menu item “Inspect Element” I was able to discover that blogroll widget img tags have the “widget_links” class.
If you add this to your style.css file you can affect the image alignment.
.widget_links img{ float:left; clear:both; padding: 3px; }
Hmm, I have the same problem. [edit]. widget not inheriting jquery styles.
Nice plugin but alt text popup while editing a widget “You Must enclose php in <?” or something is really annoying.
Forum: Fixing WordPress
In reply to: run WP from localhost and use same domain name while offlineoh, and to elaborate, I don’t mind just using url links without the domain name, like /wordpress/blah-post but read somewhere that this was a bad idea?
Forum: Themes and Templates
In reply to: Stop the rotating images in PrimePress?just delete all the other banner images you don’t want.
Forum: Plugins
In reply to: PHP function file_exists problemsthanks,
I gave that a try and with the absolute path also manually specified, but it didn’t work either.
I came up with a horrible work-around. The problem was that a bug in my code would occasionally return an array with the first element unset. After trying to figure out why and failing, and then trying to unset the first array element (which also re-calculates the index thus destroying the array), I thought a simple check to see if the image actually exists would be easiest. When that didn’t work, I created a 1×1 px image named for the first array element, so everything runs, but this is a terribly bad kludge.