Muhammad Haroon
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Hueman] I need help regarding your Hueman themeSir have added the code at the end of style.css but still I’m unable to see the grid layout… what now??? Please help me.
Forum: Themes and Templates
In reply to: [Hueman] I need help regarding your Hueman themeThanks for the answer @alexander Agnarso, I have reset the style.css file in which I had made changes… Can you please do it. I’m unable to do it…
Moreover, where to place this code:
@media only screen and (min-width: 1120px) { .post-list .post-row { width: 50%; border-bottom: 0; } }
Forum: Fixing WordPress
In reply to: Slow speed siteHi @furtherupdates, I’m the author of this article you know… thanks for linking my article.
Forum: Fixing WordPress
In reply to: 500 Internal Server ErrorWhy did you delete the .htaccess file. Rather than deleting it just update the Permalinks once this will regenerate the correct .htaccess file.
Create a new .htaccess file and add the following code in it to prevent 404 errors:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress
Forum: Fixing WordPress
In reply to: Can't see or edit Content of Pages and PostsWell, try updating your Permalinks once by going Settings > Permalinks. This will regenerate your blog’s .htaccess file.
Hope this will work.
Muhammad Haroon
Forum: Fixing WordPress
In reply to: 500 Internal Server ErrorOR
Create a new file “php.ini” not php.ini.txt in you wp-admin directory (you can do this via FTP) and just add the following link of code in it.
memory_limit = 64M
Forum: Fixing WordPress
In reply to: 500 Internal Server ErrorWell, try updating your Permalinks once by going Settings > Permalinks. This will regenerate your blog’s .htaccess file.
However, there isn’t any specific method to resolve this error. Because it doesn’t tell us anything about the error.
Muhammad Haroon
Forum: Fixing WordPress
In reply to: 60 seconds lo load my blogHi @luiscarlos98, I’m the author of that tutorial (from softstribe.com). I’m glad that my article helped you.
Forum: Fixing WordPress
In reply to: I cannot login!!!If you don’t know about deactivating plugins via ftp. Follow these instructions:
1. login to FTP (via filezilla or any other client software)
2. Navigate to /wp-content/ folder
3. Where you’ll see /plugins/ folder
4. Rename the folder (with anything else and try visiting your blog)
5. Now give the plugins folder the same name as /plugins/That’s it..
Forum: Fixing WordPress
In reply to: Cannot login WP Admin during attackHi @chiuy,
You don’t need to wait anymore to access your WordPress login area again, check out my article about [ link deleted ].
Forum: Fixing WordPress
In reply to: Getting a 404 when someone tries to registerHere is what you have to do…
Update your permalinks once… Go to Settings > Permalinks and click the button save changes.
That’s all.
Forum: Fixing WordPress
In reply to: I don't want content display on hompage???It’s an example about how you can use if else conditions it’s not a proper code because I didn’t get you exactly which content you want to display on home and which you want to exclude from homepage… ??
Forum: Fixing WordPress
In reply to: I don't want content display on hompage???I can’t get you properly but you can use conditional tags to apply a condition about where do you want your content to be displayed like following code will only show your content in posts and pages:
function content( $content ) { if(is_single() | is_page()) { return $content . Your content; } else { return $content; } add_filter('the_content', 'content');
Forum: Fixing WordPress
In reply to: how to find style.css file in wordpress folderYes, you can find you style.css file in the wordpress core installations followed by yoursite.com/wp-content/themes/your-theme-name/style.css…
Forum: Hacks
In reply to: Syntax error, unexpected '-', expecting '(' in line 11Thanks @josh, @alchymyth it’s really helpful… And it worked.