wptit
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to active comments on wordpress page?Is “allow comments” in the Discussion tab of each Edit Page ticked? If you don’t see the Discussion tab, click Screen Options on any Edit Page and tick Discussion.
Forum: Fixing WordPress
In reply to: Can't login to admin errorDisable or remove w3 total cache plugin from cpanel and it will work
Forum: Fixing WordPress
In reply to: How to add name and category in recent postsWhich theme you are using
There are lot of Plugin for this you can search for those plugin for this like
Forum: Fixing WordPress
In reply to: Error: 406 Not AcceptableTry switching to the default theme and see if you’re still seeing the same issue. It could be theme-specific.
disable all plugins too, make sure it’s as basic as possible.
otherwise, talk to your host, maybe move you to another server.
Forum: Fixing WordPress
In reply to: How to change size of slider in Twenty Fourteen Themetry, use width as per your need
@media screen and (min-width: 673px) { .slider .featured-content .hentry, .featured-content { height: 400px; } }Forum: Fixing WordPress
In reply to: Add Home Link to Category DropdownYou can do One thing Create Home catgory and redirect that to Home page you can use
wordpress.org/extend/plugins/simple-301-redirects/ plugin and redirect single catgory page to Home page.
Thanks
Forum: Fixing WordPress
In reply to: Pages Not Saving EditsYes !
If you are using free version of this theme then you may expereince this issue
Thanks
.Forum: Fixing WordPress
In reply to: How to offer protect a page and sell access through couponYou can also use JigoShop wordpres plugin for this
refer this thread
https://wordpress.org/support/topic/find-on-page-search-plugin?replies=3
Forum: Fixing WordPress
In reply to: URL change breaks facebook OG images on old post.Have you kept the old og url as it is or that is removed ? if that is removed facebook will not show that .
after chainging url have you used url redirect so that facebook can pick correct image from new url ?
Forum: Fixing WordPress
In reply to: Unresponsive Word Press SiteAfter disabling all plugin even if u see this issue then Best solution is contact your hosting provider and report this issue ,
Forum: Fixing WordPress
In reply to: Permalink and New Website 404 IssuesYou need to shift all your blog content to root directory and change domain name from http://www.kendrasebelius.com/blog/ to http://www.kendrasebelius.com/ in wordpress general setting
Do this change before shifting all blog folder content to root , make sure when you save this setting , then you will not able to access your admin area after saving the setting , to access again you need to shift BLOG folder files to root
Forum: Fixing WordPress
In reply to: How To Change Image URL from HTTP to HTTPSUse this plugin for solution to your problem
Forum: Fixing WordPress
In reply to: Account just disappearRaise this issue with Magic Members plugin team , they will give you best answer for your issue
https://wordpress.org/support/plugin/magic-member-addon-for-wp-courseware
Forum: Hacks
In reply to: WordPress Not Updating Plugins or Actual WordPressFirst try deactivating plugins then try again.
If not, then consider increasing the amount of memory allocated to PHP.
If not that, then you may need to loosen file permissions
——————–
Methods for increasing the amount of memory a PHP script may consume1. If you have access to your PHP.ini file, change the line in PHP.ini
If your line shows 32M try 64M:
memory_limit = 64M ; Maximum amount of memory a script may consume (64MB)2. If you don’t have access to PHP.ini try adding this to an .htaccess file:
php_value memory_limit 64M3. Try adding this line to your wp-config.php file:
define(‘WP_MEMORY_LIMIT’, ’64M’);4. Talk to your host.