Michael v.d. Berg
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Using icons as post category filtersMaybe you can follow this guide: https://premium.wpmudev.org/blog/add-post-filters/
I have searched for a plug-in, but the most are bad reviewed or they are out of date (more than 2 years not updated).
Forum: Fixing WordPress
In reply to: Can’t update the site.Make a back-up of your site first. When you have FTP-access to your server of the website, please try to upload the latest version (of the plugins and WordPress) from this website.
Maybe you can try to reinstall the actual WordPress version from your Dashboard –> Updates. After that, update your plugins and WordPress core if this works for you.
I hope this will help you out?
Forum: Fixing WordPress
In reply to: YouTube video widthThank you for your response. I will check your suggestion!
Have a good one!Forum: Fixing WordPress
In reply to: Center logo for matraman themeIf you are using a div tag, you can add style=”text-align: center”, for example
<div id="your id" class="your class" style="text-align: center"></div>
Forum: Fixing WordPress
In reply to: Pagination breaks with custom blog baseDid you set you blog page as the page to show your posts?
Did you put something in your Dashboard –> Settings –> Permalinks –> Optional –> Category base/tag base?You can try to create a table format in your sidebar. You can do this too add the “text” widget (HTML) on your sidebar and add the following code:
<table class="tab"> <tr> <td class="first">first row</td> </tr> <tr> <td class="second">second row</td> </tr> </table>??? <style> .tab {border-collapse:collapse;} .tab .first {border-bottom:1px solid #EEE;} .tab .second {border-top:1px solid #CCC;box-shadow: inset 0 1px 0 #CCC;}? </style>
That’s really weird. Did you install another plugins? When I search on the error 405, I saw it was a conflict problem between some plugins.
Did you following this guide to add CloudFlare to your WordPress website? https://support.cloudflare.com/hc/en-us/articles/227634427-Using-Cloudflare-with-WordPress
Maybe you have to follow also the guide of Yoast SEO. https://kb.yoast.com/kb/how-to-check-for-plugin-conflicts/#utm_source=support&utm_medium=forum&utm_campaign=support-link
Forum: Fixing WordPress
In reply to: Failed to import mediaThis is an issue of WordPress Importer. All the other .xml files are uploading correctly, but the media files didn’t work. I got the same issue in the beginning of this year. I uploaded every media file manually to my dashboard.
Maybe there is a plugin from other developers to do the same thing as the WordPress Importer.
Forum: Fixing WordPress
In reply to: Removing “share” fieldCheck if this works for you too: https://theme-fusion.com/forums/reply/reply-to-how-do-i-remove-social-media-icons-completely-from-woocommerce-shop/
Forum: Plugins
In reply to: [PDF Viewer] Relative path / Unexpected server responseYou can try to force the connection over HTTPS in your .htaccess. Please go to your FTP program, dowload the .htaccess file in your core WordPress root, open it with a notepad, change the code between the #begin and #end code with the following code:
# BEGIN WordPress
RewriteEngine On
RewriteCond %{SERVER_PORT} !^443$
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]# END WordPress
Save your file and upload it back to the root file of your website. Before you change something, please make a back-up of your .htaccess file!
Forum: Fixing WordPress
In reply to: Uploading images sometimes produces several copies of the same imageWhen you are uploading some media items to your posts or pages, WordPress create some thumbnails of the same media item. For example:
Normal size 500 px x 250 px
Thumbnail 1: 300 px x 200 px
Thumbnail 2: 150 px x 150 px
Thumbnail 3: 50 px x 50 pxMostly there are three, four or five different sizes of an image in your wp-uploads folder (or in another folder if you setup a different path).
It’s also dependent witch WordPress theme you are using. Sometimes create a WordPress theme some extra thumbnails to your folder.
Forum: Fixing WordPress
In reply to: Custom page languageI am using the Polylang plugin. You can setup some different languages and create different content for languages. Have a look at it, maybe it will resolved your problem.
(If you want to usse Polylang, you have to install also the Polylang slug. This Polylang slug plugin will resolved the URL problems: https://github.com/grappler/polylang-slug
Forum: Fixing WordPress
In reply to: HOME page problemFirst at all, welcome to WordPress!
If I understand you correctly, you get the error message when you visit your website. This is happen because your homepage (www.mitchellstuff.net) is setup as the blogpage. If you create a new blogpost (Dashboard –> Posts –> Add/Create post) and you published the post, you will see the post on your homepage.
If you want to change your homepage to a static homepage, you should follow this guide: https://smallbusiness.chron.com/change-default-home-wordpress-42203.html.
When you need some extra information, please let me know!
Forum: Fixing WordPress
In reply to: problem after installing plugin SEO YoastI have sometimes also problems with new updates. Mostly it’s helps when I deactivate and reactivate the plugin. Maybe you have to try it?
Forum: Fixing WordPress
In reply to: WordPress pagination didn’t work anymoreThanks for your reply. I set the permalinks to default and everything works fine. I am jusing the /%category%/%postname%/, but it’s the same issue. The weirdest part, it works fine in the post category but not on the blog page with all of the post.