ankitanalya
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can I import Figma Html file to WordPress?Hi,
After your HTML files are ready for all your design pages, you can create the custom WordPress theme with custom page templates.Forum: Fixing WordPress
In reply to: Unable to use customize in wordpressHi,
Which theme you are using?
Bcz,in some themes its not possible to customize from appearance->customize , for this you need to change in coding part for any type of customization.Forum: Fixing WordPress
In reply to: Not receiving email notifications when Comments postHi,
1. It’s recommended for WordPress users to utilize the Simple Mail Transfer (SMTP) protocol. It will increase your deliverability rate and help you manage the overall email traffic in the long run.
2.Configure an SMTP server on your site by using a WordPress SMTP plugin.Forum: Fixing WordPress
In reply to: translatepress works partiallyHi,
If you are facing issue with Translatepress , you can use another plugin like GTranslate,
it is more user friendly.Forum: Fixing WordPress
In reply to: Can not reach my Website and WordPress to editHi,
It’s a server error,please contact to your host or you can try below things-
The connection timed out error appears when your website is trying to do more than your server can manage. It is particularly common on shared hosting where your memory limit is restricted. Here are some things you can try:Deactivate all Plugins. If deactivating all the WordPress Plugins on your site resolves the issue, reactivate them one-by-one to see which plugin is causing the problem. If you are unable to access your Administration Screens, read about how to manually deactivate your plugins.
Switch to the default WordPress Theme. This should rule out any Theme-related problems.
Increase your memory limit in wp-config.php. If you are on shared hosting you may have to ask your hosting provider to increase your memory limit for you.
Increase the maximum execution time in your php.ini file. This is not a WordPress core file so if you are not sure how to edit it, contact your hosting provider to ask them to increase your maximum execution time.`Forum: Fixing WordPress
In reply to: how do I remove category image and title just under menuHi,
It’s easy to do that. Simply open the functions.php file in your theme and add the following code at the end of the file:function prefix_category_title( $title ) {
if ( is_category() ) {
$title = single_cat_title( ”, false );
}
return $title;
}
add_filter( ‘get_the_archive_title’, ‘prefix_category_title’ );
Now refresh your category pages and you will see “Category: ” is gone.If the theme you’re using is a premium WordPress theme, you shouldn’t edit the functions.php file directly. Because you will loose all the edits when it’s updated. Instead of that, you should use a child theme to do the job. To create a child theme, please follow this guide.
After creating the child theme, put the code above in the functions.php file. It works similarly. And you never loose the change when the theme is updated.