Your cart is currently empty!
Year: 2024
Give as many reasons as possible to blog even if you don’t make money from it.
Blogging can be a rewarding endeavor, even if it doesn’t generate income. Here are several compelling reasons to consider:
(more…)The Pitfalls of Chasing Page Views in Blogging
When running a blog, it can be tempting to focus solely on increasing page views (PV) as a measure of success. However, this approach can lead to several negative consequences. Here are some reasons why chasing page views may not be beneficial for your blog:
(more…)[XServer] The recommended version of PHP has changed since WordPress 6.4 was released.
It seems better to update it to at least php 8.1.22. I think some plugins will no longer be usable, but let’s upgrade the PHP version.
How to increase the upload size limit for cover images on BuddyPress
The steps to increase the upload limit are as follows.
You can increase the upload size limit by editing the functions.php file. For example, to increase it to 10MB, add the following code to your functions.php file:
function bbp_cover_image_file_size( $fileupload_maxk, $type ) { if ( 'avatar' == $type ) { $fileupload_maxk = 10485760; // 10MB in bytes } if ( 'cover_image' == $type ) { $fileupload_maxk = 10485760; // 10MB in bytes } return $fileupload_maxk; } add_filter( 'bp_attachments_get_max_upload_file_size', 'bbp_cover_image_file_size', 10, 2 );
This code increases the upload limit for both avatars and cover images to 10MB. It also works by pasting it in the WpCode Lite plugin and saving it.
Recommendations for WordPress permalink settings
Examples of My Past Mistakes:
Using the structure “%category%/%postname%” led to issues where only one post would appear if it belonged to multiple categories, and changing a category would alter the permalink.
Current Recommended Settings:“/post/id/%postname%”This avoids duplication with category pages and can accommodate custom post types.
Points to Note:
- Avoid using Japanese URLs.
- If the title is in Japanese, manually change the permalink to English.
With this setup, you can manage categories flexibly without negatively impacting SEO.
Software required to create a website
Here’s a list of tools and software needed for creating a website, specifically for those using a Mac:
(more…)[Contact Form 7] How to prevent spam from being sent from the contact form
- The first is the introduction of “Google Recaptcha v3”.
- The second is “installation of checkboxes”.
[XServer] How to automatically back up your WordPress website
XServer’s automatic backup function is good.
How to create a contact form in WordPress
You can use the Contact Form 7 plugin.
How to remove badges in Recaptcha v3
Use CSS.
.grecaptcha-badge { visibility: hidden; }
In addition to this,
This site is protected by reCAPTCHA and is subject to Google’s Privacy Policy and Terms of Service.
Add this phrase to the contact page and privacy policy page.