Richard van Denderen
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: wordpress permissions problemHi bsahmed,
I would say that it’s a job of the server administrator to make sure that the server is properly configurated so that WordPress works as it should be.
That being said, if you have (s)FTP acces you could add some constants to the
wp-config.phpso that you can update WP and install plugins/themes etc.
https://codex.wordpress.org/Editing_wp-config.php#WordPress_Upgrade_ConstantsForum: Plugins
In reply to: [PostNL for WooCommerce] 503 error codeDie mail is vandaag al om 10:39 verzonden, vrijwel direct na het plaatsen van het onderwerp hier. Nog geen reactie op gehad.
Forum: Plugins
In reply to: [WooCommerce Blocks] Order Products By newness, shows oldest product firstI’m not sure. You could use the following shortcode until then. The result should be the same
[recent_products per_page="8" columns="4"]Forum: Plugins
In reply to: [Gutenberg] Save Draft Not Working ProperlyI don’t think it’s a JS related error then.
Maybe it’s a plugin conflict from the SEO and Social box.
You could test this with the “Health Check” plugin, that would only affect you as logged in user and not your regular visitors.https://wordpress.org/plugins/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.
Forum: Plugins
In reply to: [Gutenberg] Save Draft Not Working ProperlyIt’s difficult to say based on the screenshot, could you open the “Web Console”?
There are probably a few errors there
Ctrl+Shift+K should be the keyboard shortcut for firefoxForum: Plugins
In reply to: [Gutenberg] Blank content + js errorThe ‘WP Shortcode by MyThemeShop’ plugin is causing that error, if you disable that plugin does the editor then load properly?
Chances are that the shortcode plugin isn’t compatible with Gutenberg.Forum: Plugins
In reply to: [Gutenberg] Major issuesHo Kjam,
Did you clicked on the ‘gear’ icon in the right-top corner?
There are additional block options.
You can select a text color and a background color of a paragraph block and also select headings up to H6.You can insert an image block and select an alignment for it. When you select the alignment before adding the following blocks it can work a bit clumsy most of the time.
I don’t know what went wrong with the Yoast options, that’s something I couldn’t reproduce on my test-install
Forum: Fixing WordPress
In reply to: List style CSS in back end bullets show, but not in front endthe CSS code hasn’t changed since my earlier post
article ul li { list-style: disc; list-style-position: inside!important; }Forum: Everything else WordPress
In reply to: Does WordPress.com support assiist with WordPress.org?Hi @ssbird,
Only the site is supported where the premium plan is for.
So when you keep the .com site for support on the .org website it isn’t supported.
However… IF you use a paid/premium plan for jetpack on the .org website you could use that support that is also handled by WordPress.comForum: Fixing WordPress
In reply to: It’s all gone a bit wrongHi @jimmisavage,
The reason the homepage is still working is because of the caching plugin.
Depending on the removed files manually updating / reinstalling WordPress and plugin files could resolve it.
Be sure to make a backup first
https://codex.wordpress.org/Updating_WordPress#Manual_UpdateForum: Fixing WordPress
In reply to: List style CSS in back end bullets show, but not in front endNo, in that place changes shouldn’t be done.
I did a search this is a decent tutorial of where to place the code
http://www.wpbeginner.com/plugins/how-to-easily-add-custom-css-to-your-wordpress-site/Forum: Fixing WordPress
In reply to: List style CSS in back end bullets show, but not in front endIt should be located under ‘Appearance’ => ‘Customize’
Then you should select ‘Additional CSS’ there you should paste the code.
If you don’t see these options it could be that you don’t have an Administrator role on your website?Forum: Fixing WordPress
In reply to: Change in VM IP Address, Site not accessibleIf the site url has changed ( in this case your IP adres )
you could add a few lines to the wp-config.php file.I most of the time use
the following codedefine('WP_HOME','http://example.com'); define('WP_SITEURL','http://example.com');if you change example.com with the IP address it could probably work again.
Forum: Installing WordPress
In reply to: WP install Tomcat/PHP-JavaBridgeHi @patwill,
500 Internal server errors are usually described in more detail in the server error log. If you have access to your server error log, generate the error again, note the date and time, then immediately check your server error log for any errors that occurred during that time period.
Sometimes it will also help to enable the WordPress debug mode, that is described in more detail over here https://codex.wordpress.org/Debugging_in_WordPress
The documentation you used also seem a bit outdated, maybe you could also take a look at these developer docs about local development
https://developer.wordpress.org/themes/getting-started/setting-up-a-development-environment/#your%C2%A0wordpress-local-development-environmentForum: Fixing WordPress
In reply to: List style CSS in back end bullets show, but not in front endHi @rsmets,
If you add this CSS code to the ‘extra CSS’ option in the customizer it should work.
article ul li { list-style: disc; list-style-position: inside!important; }- This reply was modified 7 years, 11 months ago by Richard van Denderen.