Euler
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: I can’t send emails to email accounts with my own domainHello @bioinfogrupot,
Are you using an SMTP plugin? Furthermore, there might be some restrictions or policies set by your receiving mail server. Perhaps you need to contact your host for more details, they will be able to look into the logs and see what prevented the message from sending.Forum: Fixing WordPress
In reply to: I can’t edit any of my pagesHello there,
This sounds like a conflict with some plugins. Perhaps those functionalities back to work if you get access to your files through FTP and rename the folder “plugins” in wp-content.Forum: Fixing WordPress
In reply to: i am unable to publish or save any changes.Hello there,
Have you tried to switch temporarily your theme to a default one (like twenty twenty-one)? Also, I recommend enabling debug mode. Check these links to read more about debugging with WordPress:https://codex.www.ads-software.com/Debugging_in_WordPress
https://codex.www.ads-software.com/Debugging_in_WordPress#Example_wp-config.php_for_DebuggingForum: Fixing WordPress
In reply to: Remove automatically generated HTML codeHey there,
Check if the codes shared in this similar topic can help you: https://www.ads-software.com/support/topic/hiding-categories-from-widget/Forum: Fixing WordPress
In reply to: Add new post and Add new pageHey there,
Might be some plugin or theme conflict. Can you check once by disabling the plugins and switching back to the default theme if that makes some change? If you can install plugins, install Health Check. On the troubleshooting tab, you can click the button to disable all plugins and change the theme for you, while you’re still logged in, without affecting normal visitors to your site.Other possible attempts are:
– clear your cookies
– contact your hosting provider, I think they can help youForum: Fixing WordPress
In reply to: Add new post and Add new pageHi @stevewithoutjobs,
Maybe you have some extensions in your chrome browser that may cause this issue. Please disable all the extensions of your chrome browser and then check the problem again. Also, it sounds like a compatibility issue. To find the culprit (a conflicting plugin or theme), you may follow this flowchart: https://premium.wpmudev.org/wp-content/uploads/2015/09/Support-Process-Support-Process.gifRemember to backup your site before. Let me know.
Regards,
Euler.Forum: Fixing WordPress
In reply to: Need to change the Link description on bing and emailHey there,
Have you tried some SEO alternative? Like the plugins Yoast, Rank Math, The SEO Framework, etc?Forum: Fixing WordPress
In reply to: WP Native Comments not workingNice! What was it?
Please mark it as “resolved”. Thank you.Forum: Everything else WordPress
In reply to: need help with plugin localizationsHello there,
Have you wrapped all your strings in gettext functions? Make sure you’re following the WP documentation related:
https://developer.www.ads-software.com/themes/functionality/internationalization/
https://developer.www.ads-software.com/apis/handbook/internationalization/localization/
https://codex.www.ads-software.com/I18n_for_WordPress_DevelopersAlso, I know that WPML has a program where you can work with their developers in order to make your plugin/theme compatible with them. Perhaps you can ask for their help. Check it out: https://wpml.org/documentation/support/go-global-program/
Forum: Fixing WordPress
In reply to: WP Native Comments not workingHey there,
Here are some suggestions:– First, make sure to check the boxes on your posts to ‘allow comments.’ It can be done on Settings -> Discussion, and on the edit screen of each post/page. If you can’t see the “discussion” box there, in the ‘screen option’ dropdown field (located near the top right), there are tick-boxes to show the ‘discussion’ box for the posts/pages. Tick mark it. In the ‘discussion’ box below the post/page editor, you can then allow/disallow comments for the page.
– If you’ve already verified it, so this problem can be a compatibility issue. To find the culprit (a conflicting plugin or theme) of this issue, you may follow this flowchart: https://premium.wpmudev.org/wp-content/uploads/2015/09/Support-Process-Support-Process.gif. Remember to backup your site before.
– Another possibility is to ask for help directly in the support pages of the plugins you mentioned.
Forum: Fixing WordPress
In reply to: Modify google map “zoom” sizeHi @scottgrobinson,
If it is possible to change the iframe of this map, you can use a &zoom=nn parameter in the end of the “src” link. For example: <iframe src=”https://example.com&zoom=9″ width=”x” height=”x”></iframe>Forum: Fixing WordPress
In reply to: wp–admin Login ProblemHello Milan,
It seems there are some files missing in wp-includes. Also, the PHP appears to be missing the JSON extension. The best suggestion here is to contact your hosting company and have them verify that PHP is correctly installed.Forum: Fixing WordPress
In reply to: Incompatible Plug-ins: how to keep functionality from both?Hi @katianjchs,
Sure! When we enable debug mode, it can show us more detailed information about the errors on WordPress. So, what you have to do is add the following code in your wp-config.php file:
// Enable WP_DEBUG mode define( 'WP_DEBUG', true ); // Enable Debug logging to the /wp-content/debug.log file define( 'WP_DEBUG_LOG', true ); // Disable display of errors and warnings define( 'WP_DEBUG_DISPLAY', false ); @ini_set( 'display_errors', 0 ); // Use dev versions of core JS and CSS files (only needed if you are modifying these core files) define( 'SCRIPT_DEBUG', true );
Copy and paste it before this line:
/* That's all, stop editing! Happy publishing. */
I recommend that you backup your site and database before (always a good practice). Also, if you find it difficult to locate/edit the wp-config file, you can read this article: https://www.wpbeginner.com/beginners-guide/how-to-edit-wp-config-php-file-in-wordpress
Moreover, when you add the code above, reproduce the issues again and verify for a “debug.log” file inside the wp-content folder. If you locate it there, send the last lines here in the ticket, so that we can check it more thoroughly.
Let me know. Regards,
Euler.Forum: Fixing WordPress
In reply to: Incompatible Plug-ins: how to keep functionality from both?Hey there,
Have you already tried to enable debug mode? Check these links to read more about debugging with WordPress:
https://codex.www.ads-software.com/Debugging_in_WordPress
https://codex.www.ads-software.com/Debugging_in_WordPress#Example_wp-config.php_for_DebuggingHello Alvaro,
This class is meant to be used as a kind of framework since any data queries need to be loaded, sorted, and filtered manually. To use the WP_List_Table, you first create a new class that extends the original. Your new class must be instantiated, and the prepare_items() and display() methods called explicitly on the instance.
Please check for more details: https://developer.www.ads-software.com/reference/classes/wp_list_table/