threestyler
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: wp-cron using excessive memoryThere are lots of variables that could cause excessive memory. By default WordPress tries to scale to 32MB before you receive that warning. Depending on your hosts setup and enviroment you may be able to override this and increase the amount with the following snippet in the wp.config file:
/* Increase memory allowance */ define('WP_MEMORY_LIMIT', '128M');I wouldn’t go above 128M. You could also try 64M, 96M etc.
Forum: Fixing WordPress
In reply to: Why are there gaps between my images and content?If you look at the source code you can see there are lots of empty paragraph entries containing
<p> </p>which is a Non Breaking Space.Switch to HTML view in the post editor and clean these out to remove the gaps between images and text.
Forum: Fixing WordPress
In reply to: The Permalink for WorPress page has an unwantes suffixTake a look through ‘categories’ and ‘pages’ in the administration as you probably have a category/page already using ‘home’ as a “slug”.
Forum: Fixing WordPress
In reply to: ajaykashyap.wordpress.com is no longer availableHi, these are the self hosted WordPress.org forums, for hosted WordPress.com enquiries you need to post in the WordPress.com support forums:
Forum: Plugins
In reply to: Plugin installation caused dashboard to stop workingLogin via FTP or use your hosts cPanel and file manager/browser to navigate to the plugin folder and either rename the plugin or delete it. You will then be able to access the admin again.
Forum: Fixing WordPress
In reply to: How to remove post title from a single postFrom one post OR all single posts?
Forum: Your WordPress
In reply to: Looking for an honest review (2nd try)There isn’t too much to say as it’s using a pre-made theme to begin with, You have then added quite a few imo very ugly animations/banners.
The moving twitter bird is also incredibly annoying and distracting. Let people read the content don’t distract them with unnecessary animations as it will only deter people from staying on your site or reading any of the content.
Forum: Everything else WordPress
In reply to: Abandoned/inactive accounts.Very unlikely, it’s pretty much a first come first serve basis and I imagine would require a huge amount of support to begin maintaining once you open the floodgate for it.
Just because they haven’t posted in a long time doesn’t mean they won’t ever return.
IMO Your only hope is if they one day decide to prune accounts that a match a specific criteria but don’t get your hopes up.
Forum: Fixing WordPress
In reply to: Dashboard not loading properlyUpgrade to WordPress 3.3.1 and see if the problem persists.
Forum: Plugins
In reply to: MarketPress – Need Real Basic HelpStart here:
http://premium.wpmudev.org/project/e-commerce-lite/installation/Then look at the instructions for the full plugin as it should provide with a good understanding of how to set it all up:
Forum: Fixing WordPress
In reply to: Problem With Posts Taking Forever to Show UpYou probably have a cache plugin installed. Check the plugins directory and all active plugins looking specifically for something cache related,
Forum: Themes and Templates
In reply to: Adding images to the home page onlyView the source of the page and see what it’s outputting for the images location.
But why not use the full path anyway?
Forum: Fixing WordPress
In reply to: How can I POST inside PAGES?Do you mean, multiple pages inside posts?
Use the following to split posts/pages up into further pages:
<!--nextpage-->Forum: Fixing WordPress
In reply to: How do I put Default Post Image Inside The_Content?You could add this before the loop:
<?php remove_filter( 'the_content', 'wpautop' ); ?>More information on removing filters in the codex:
Codex: Removing FiltersAnd then manually add the p tags in the loop around your image and content call.
This would also achieve the same thing but the above method is the better way to do it.
<p> <?php the_post_thumbnail( array(350, 250) ); ?> <?php echo $post->post_content; ?> </p>Forum: Fixing WordPress
In reply to: all images are not loadin in website and wp interfaceAppears to be resolved?