webtemplates
Forum Replies Created
-
Forum: Plugins
In reply to: Best Calendar?I’ve installed and checked many over the past couple years. They have actually come a long way and I wasn’t sure if there was one I missed. I’ve been to many ‘top wordpress plugins’ pages and each one has different features.
I mentioned that I am willing to PAY for something with more features. People like to promote and sell their products to people when they know someone is looking for what they have to offer. It’s a win-win.
If you’re viewing my other posts, that’s creepy. All I did was ask for recommendations, not a date.
Forum: Networking WordPress
In reply to: sub domain redirecting to wp-signup.phpThanks for this post, i had the same issue and this worked for me and all my subdomains are working like a charm!
change define( ‘SUBDOMAIN_INSTALL’, true ); to define( ‘SUBDOMAIN_INSTALL’, false );
I found out with this new version (after trial and error) it’s only when you use multisites and you click ‘network activate’, you want to do each site one by one and it works fine.
I have this problem as well
My problem was a plugin.. event calendar scheduler.. It worked fine before the upgrade. I use the plugin on my site so I guess I need to replace it with something else and that sucks!
I did the manual upgrade and had the same problem. I tried to log into the admin and have the exact same issue with the nameless howdy and everything. I have multi sites and lots of plugins but haven’t tried turning them off yet.
Forum: Themes and Templates
In reply to: Whitespace & linebreaksMy solution was:
http://www.benhuson.co.uk/wordpress-plugins/remove-white-space
Remove White Space PluginForum: Plugins
In reply to: [Broken Link Checker] [Plugin: Broken Link Checker] Timeouts on good links?I have a similar problem, any idea what happened?
Forum: Plugins
In reply to: I need a random image plugin w/gallery for multisitesi guess not.
Forum: Plugins
In reply to: I need a random image plugin w/gallery for multisitesanyone know if this is possible?
Forum: Themes and Templates
In reply to: Whitespace & linebreaksok that took forever to find but alas.. /wp-includes/formatting.php
this seemed to do the job:/**
* Replaces double line-breaks with paragraph elements.
*
* A group of regex replaces used to identify text formatted with newlines and
* replace double line-breaks with HTML paragraph tags. The remaining
* line-breaks after conversion become <> tags, unless $br is set to ‘0’
* or ‘false’.
*
* @since 0.71
*
* @param string $pee The text which has to be formatted.
* @param int|bool $br Optional. If set, this will convert all remaining line-breaks after paragraphing. Default true.
* @return string Text which has been converted into correct paragraph tags.
*/
function wpautop($pee, $br = 0) {Forum: Themes and Templates
In reply to: Whitespace & linebreaksActually after taking another look at the code, i noticed that <br \> tags are getting added into the output code when it’s displayed in the browser and I view the source.