oiler
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Maintance mode with accessible landing pageHi Luigi,
I thought of a workaround for this. If you have access to the WP CLI you can use the following commands: https://developer.wordpress.org/cli/commands/maintenance-mode/
Alternatively, you can put the following into functions.php (remember to backup your site before making this change):
// Activate WordPress Maintenance Mode function wp_maintenance_mode() { if (!current_user_can('edit_themes') || !is_user_logged_in()) { wp_die('<h1>Under Maintenance</h1><br />Website under planned maintenance. Please check back later.'); } } add_action('get_header', 'wp_maintenance_mode');Now you have to use htaccess redirect (and exclude redirection on your specific pages).
This page might help with the code: http://www.webweaver.nu/html-tips/web-redirection.shtmlI tried to check out other plugins that have this feature but doesnโt require any payment and I think this one fits: https://wordpress.org/plugins/wp-maintenance-mode/
A similar topic for this issue: https://wordpress.org/support/topic/cant-exclude-the-home-page/
Forum: Everything else WordPress
In reply to: Issue with BuddypressHi Abby,
In this case, I suggest doing a conflict test by following the steps from the flowchart:
https://premium.wpmudev.org/wp-content/uploads/2015/09/Support-Process-Support-Process.gif
(make sure you have a backup of your site before making any changes).Also, are you using SMTP? The problem may come from a wrong configuration there. https://wordpress.org/support/topic/confirmation-email-not-working-4/
Forum: Everything else WordPress
In reply to: Playing multiple audio on one pageHello,
Each insertion of the audio player is separate, and they are not connected. That means each would have to be manually stopped before you start another, and it needs a lot of custom code.
Take a look at these links, and you might find an alternative that will do what you want:
http://wpbtips.wordpress.com/category/audio-player/
https://wordpress.stackexchange.com/questions/269033/playlist-shortcode-prevent-repeatForum: Everything else WordPress
In reply to: DekstopHey there,
Turning your WordPress site into a desktop app is not too difficult. There is even an easier way to do this but I think you should go through this tutorial and learn how Electron works then you can add native app features.
You could even create a single page app that utilizes the WordPress Rest API. Check this: https://webdevstudios.com/2016/05/10/easily-turn-wordpress-site-desktop-app/
Forum: Fixing WordPress
In reply to: Follow ButtonHey there. I’ve just checked and it’s working fine for me.
Forum: Fixing WordPress
In reply to: Theme Editor Error: scrape nonce check failed. please try againHi Fabio. Try to change the themes. If it doesn’t work, probably it is something related to the hosting.
Forum: Fixing WordPress
In reply to: Website creating automatic 301 redirect.Hey there. Maybe this tutorial can help you: https://www.wpbeginner.com/wp-tutorials/how-to-fix-error-too-many-redirects-issue-in-wordpress/
Forum: Plugins
In reply to: [WP Show Posts] Pagination doesn’t work on mobiles????
Forum: Fixing WordPress
In reply to: How to edit ChineseHave you tried a translation plugin? Like loco translate, or wpml…
Forum: Fixing WordPress
In reply to: Horizontal Footer MenuHi, jplafata,
Try to modify this class (in additional CSS) like this:.flex-column {
display: inline;
}Forum: Developing with WordPress
In reply to: Is this possible in wordpress?Hey jesseguttenberg
So, I found this article that presents some possible solutions, check it out https://www.wpbeginner.com/plugins/how-to-exclude-specific-pages-authors-and-more-from-wordpress-search/Forum: Fixing WordPress
In reply to: Image size not editableSo, to assign a class to this element, you have to select its block in Gutenberg, and after that, the sidebar will show you two options: “page” and “block,” right? In “block,” the last option is “Advanced.” There you can find the box “Additional CSS class(es)” and write the class (without the dot – “.”). Therefore you can go to the additional CSS and try to make the changes.
Forum: Fixing WordPress
In reply to: Image size not editable