asarosenberg
Forum Replies Created
-
Forum: Plugins
In reply to: [Multiple Post Thumbnails] Plugin does not have a valid headerPlugin doesn’t work on my fresh WP-install. I get the “header” error. If I install manually I get no error when activating, but the plugin still doesn’t work. It works on all my old installs. I’m guessing something with the plugin activation process not compatible with latest WordPress?
Forum: Plugins
In reply to: [Multiple Post Thumbnails] Plugin does not have a valid headerI’m getting this error on a fresh install too. The plugin has worked previously, it must have something to do with the latest WordPress upgrade?
Forum: Plugins
In reply to: [Latest Tweets Widget] Swedish characters in hashtag breaks linkifyI didn’t write the pattern myself I looked through a whole bunch of different ones, picked out a few ones that made sense to me and tried them out. This one I ended up with is from here
https://stackoverflow.com/questions/22098426/prevent-preg-replace-replacing-special-characters
It says that “\p{Xwd} has the same meaning that \w with all unicode letters and number and underscores.”
I understand your concern! Maybe one could add a settings checkbox or something along those lines to allow unicode support. That way people can tick or untick it depending on whether it works with their systems.
Forum: Plugins
In reply to: [Latest Tweets Widget] Swedish characters in hashtag breaks linkifyI changed the preg pattern in twitter-api-utils.php line 29 to / +#(\p{Xwd}*)/u which seems to work. Any chance you could incorporate something like this in the next update of the plugin?
Forum: Plugins
In reply to: [Latest Tweets Widget] date_default_timezone_set() yet againI made a mistake. You can (and should) set the timezone_string via your local blog settings page. You have to actually choose a location though and not manual UTC offsets!
Forum: Plugins
In reply to: [Post Types Order] Normal sorting breaks when activating pluginThanks for your reply. It wasn’t the “Auto Sort” setting that caused this behavior. It was the “Admin Sort” setting.
Forum: Fixing WordPress
In reply to: Threading does not work after updateIt’s probably an issue with your theme. When you customize you should do it in a child theme. That way you don’t have to worry about updates overwriting your changes.
Forum: Fixing WordPress
In reply to: Cookies are blocked or not supported by your browser.Enable cookies in your browser or get another browser?
Shows up under “Settings/Password Protected” on all my multisite installs.
Forum: Fixing WordPress
In reply to: Word Press does not update Google Analytics tracking codesHave you tried using text editing mode instead of visual editing mode when saving your post?
Forum: Fixing WordPress
In reply to: 404 errorsYou make a page called 404.php and you place it in the root folder of your theme. Same folder that holds index.php, header.php, footer.php and so on.
Forum: Fixing WordPress
In reply to: Choose which picture displays on Facebook postIn the header template file between the
<head>
tags you need to add facebook open graph meta tag that tells facebook which image to use. Example:<meta property="og:image" content="thepictureiwannause.png"/>
What image url you want to add depends on what image you want to show.
Forum: Plugins
In reply to: [Grid Columns] Bumping down a lineI think it’s caused by the
tags between the columns. Try adding this css..column-grid br { display: none; }
Forum: Plugins
In reply to: [Grid Columns] Responsive? Not reallyI’m not using this plugin anymore for other reasons but you can easily make the columns collapse by adding your own css. Example:
@media (max-width: 700px) { .column { width: 100%; margin: 0; padding: 0; } }
Forum: Fixing WordPress
In reply to: Calendar Showing results on picked day and beforeCalendar widget is in /wp-includes/default-widgets.php