wpcares
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Body textThat seems to be the hack issue, somebody hacked into your site
Forum: Fixing WordPress
In reply to: Moving WordPress SiteI think you are trying to create a new site with similar looks and want to have your own access. right?
If so you can migrate the site to your own hosting environment. This link may be helpful here
Forum: Fixing WordPress
In reply to: i cannot add images to pagesyou will need to check the permission of that folder before we can comment on anything.
Forum: Fixing WordPress
In reply to: i cannot add images to pagesDo you have a write permission in wp-content/uploads folder inside your wordpress directory?
Forum: Fixing WordPress
In reply to: Malware Cannot DeleteYou may want to look into the .htaccess file.
This could probably be from one of your plugins. Try removing plugin one by one and check to see which plugin is the culprit.Forum: Fixing WordPress
In reply to: Image size confusionThats the standard set.
How ever when you put the image you can choose the custom size. The above will be used when the image is too large
Forum: Fixing WordPress
In reply to: Website Recovery after Switching Hosting to SquarespaceYou can login to the panel of the previous host and download the files and the database
Forum: Fixing WordPress
In reply to: Changing host problemIf you have a backend access to the site than you can use the plugins like Duplicator to download the site with database.
Forum: Fixing WordPress
In reply to: Show entire post not excerpt or "show more"You can use the get_post instead of using the except but If this confuses you you can simply put the excerpt length to 999 as below
function custom_excerpt_length( $length ) { return 999; } add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
Put the above code in your functions.php present inside your theme.
Else if you are trying to have a post in custom place with custom length than this may be helpful
Forum: Everything else WordPress
In reply to: Multi-User Access control & advanced adminthe plugin does nnot seem to be good enough for the task required.
I have a site https://www.wpcares.com and need to handles and play with many emailid so need a not only good but a very good plugin or else i will have to cde from scratch to built oneForum: Installing WordPress
In reply to: Installation of WP in subdomain not workingopen your database and change the domain name in the firsts row of the wp_options column to your current address . ie address with subdomain which is something like this
<sub.domain.com>
I have done the same with business.sukhim.com and guess what it worked well.Forum: Fixing WordPress
In reply to: Unable to start WPseems like you have resolved the problem?
Kindly post to help others if somebody encounters the same problem