Vipul Behl
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress Login Redirects to another websitelaliz thank you very much for your help.
Forum: Fixing WordPress
In reply to: WordPress Login Redirects to another websiteHi laliz,
Thank you very much for your answer. I followed the steps mentioned in the article and one of the steps worked.
But i would really want to know why this problem occurred in the first place, because i didn’t do anything with my site lately.
Forum: Fixing WordPress
In reply to: 500 Internal Server ErrorHi WPyogi,
Thank you for your help, i figured out the problem. There was some issue with the index.php file. I replaced it with the backed up file and the problem was solved.Forum: Themes and Templates
In reply to: [The Funk] Author LinksI found the answer to it too, for anyone who is searching for the same here is how i did it.
Go to theme editor and open the function.php file.
Find the function thefunk_authorbox();replace the complete function with the following code
`function thefunk_authorbox()
{
echo ‘<section class=”author-box”>’ . “\n”;
global $post;global $current_user;
get_currentuserinfo();echo get_avatar($post->post_author, 70);
echo ‘<h4 class=”author-box-title”>’ . __( ‘About’, ‘the-funk’ ) . ‘<span>’ . “\n”;echo ‘<a href=”‘;
the_author_meta(‘user_url’);
echo ‘”>’;
the_author_meta(‘display_name’);
echo ”;echo ‘</span></h4>’ . “\n”;
echo ‘<div class=”author-box-content”>’ . “\n”;
global $user_ID;
if (get_the_author_meta(‘description’, $user_ID)) {
echo ‘<p>’;
the_author_meta(‘description’);
echo ‘</p>’ . “\n”;
} else {
echo ‘<p>’ . __( ‘See all the posts by ‘, ‘the-funk’ ) . get_the_author_meta(‘display_name’) . ‘ ‘ . __( ‘at this link’, ‘the-funk’ ) . ‘.</p>’ . “\n”;
}
echo ‘</div>’ . “\n”;
echo ‘</section>’ . “\n”;
}Forum: Fixing WordPress
In reply to: How to reduce server response timeThank you both for your suggestions.
Forum: Fixing WordPress
In reply to: How to reduce server response timeHi James,
I did what you suggested and i found out the the plugin wordfence was the main reason for this slowdown. I tried disabling other plugins too but they didn’t affect the speed. I also tried changing the theme to twenty fifteen but it had no effect too.
Though the site speed and response time is improved now, are there any other ways which can further increase the speed?Forum: Themes and Templates
In reply to: [The Funk] Post Image Size Changednever mind i solved the problem. Just needed to re-size those in bulk edit.
Forum: Fixing WordPress
In reply to: How to customize footerSorry i forgot to mention my website.
Here it is : https://www.internetwarz.com.
You can view my theme on my site.Forum: Fixing WordPress
In reply to: Reduce space between header and navigation barThank you very much i was able to reduce the space.
Forum: Fixing WordPress
In reply to: Remove rss icon below headeri found the answer to my own question.
Forum: Fixing WordPress
In reply to: Customize navigation barYes i am able to set a new menu with all the links in the order that i want.
But what i want to do is to customize the navigation bar of my website.
As of now there is no menu created in the menu tab.
How am i supposed to edit the navigation bar?Forum: Fixing WordPress
In reply to: Weird url appers in the address barI deactivated all the plugins one by one and i found out that the thing that was appearing in the url was because of the share this plugin.
Then i went into settings of the share this plugin and unchecked the checkbox of track url copy and pastes and that did it.
Thank you very much for your help.
Forum: Fixing WordPress
In reply to: Weird url appers in the address barI deactivated my menu manager plugin and nothing happened the same thing appears after my site’s name.
Forum: Fixing WordPress
In reply to: Rss feeds errordon’t mind answering the question i found there was something wrong with my browser i tried using a different browser and it worked.
Forum: Fixing WordPress
In reply to: Create navigatoin barThe link that you shared contains how to customize header.
I do not want to customize my header but, i want to create a new navigation bar that will appear below my website header and above the blog posts.