wpbees
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: installation of wordpress using iis in a window server 2012Hello there,
Maybe this guide will help.
https://blogs.iis.net/peterviola/installing-wordpress-php-and-mysql-on-windows-server-2012-r2
Forum: Fixing WordPress
In reply to: disabling emails about emails!Hello there,
Try to use this plugin, https://wordpress.org/plugins/disable-core-update-email/
or this code
add_filter( ‘auto_core_update_send_email’, ‘wpb_stop_auto_update_emails’, 10, 4 );
function wpb_stop_update_emails( $send, $type, $core_update, $result ) {
if ( ! empty( $type ) && $type == ‘success’ ) {
return false;
}
return true;
}Forum: Fixing WordPress
In reply to: Error after update or create posts/pageHello there,
If it’s not a plugin (and even if it is), you can try to increase the memory allocated for PHP. Add this to your config.php:
define(‘WP_MEMORY_LIMIT’, ’64M’);
Or try on the theme’s funtions.php
Forum: Fixing WordPress
In reply to: Testimonials PluginsForum: Fixing WordPress
In reply to: footer text misalignmentHi there.
Did you try to remove the text widget bar on the left?
Forum: Fixing WordPress
In reply to: Widgets are not updatingHello there,
I suggest to try (1) deactivating all plugins to see if this resolves the problem. If this works, re-activate the plugins one by one until you find the problematic plugin(s).
(2) Try to switching to the default theme to rule out any theme-specific problems.Forum: Fixing WordPress
In reply to: Sorting All Posts Screen by tagsHello.
I think the easiest way to approach the organization that you want is via a plugin that would manage your categories and tags.
Here is a sample plugin that you can use or base function on:
https://wordpress.org/plugins/post-tags-and-categories-for-pages/
Hope this helps.
Forum: Fixing WordPress
In reply to: Post Revision Reverts Published PostHello,
Have you tried the revisions link and checking if the one being published is the correct version of the post?
Or, is there someone else working on the post that is still actively editing the post?
To work around the problem, click on the Revisions link and restore the correct revision and publish it.
But do check if there is another instance of editing the post in a browser somewhere that is still open, hence the system is not publishing.
Hope this helps.
Forum: Networking WordPress
In reply to: Darft and no published modality of my webHello.
For this you need to go to each of your posts and then:
Open the post in the editor.
On the right side of the page in the publish box, click the Edit button next to the post status.
In the dropdown menu select Draft and press Ok. Press the Update button and the post will now be a draft again and no longer published.
or
Try getting a redirect plugin for the site and just set all pages to redirect to a single “Under Construction” Page.
Hope this helps.
Forum: Fixing WordPress
In reply to: Change “from” field in outgoing mail and access test serverThat will require some changes in the functions.php file where you need to specify new FROM name and address:
Open functions.php file
Copy and paste the following lines:
function new_mail_from($old) {
return ‘no-reply@firstsiteguide.com’;
}
function new_mail_from_name($old) {
return ‘Your Name Here’;
}
add_filter(‘wp_mail_from’, ‘new_mail_from’);
add_filter(‘wp_mail_from_name’, ‘new_mail_from_name’);Change details:
email address at line #2: return ‘no-reply@firstsiteguide.com’;
name at line #5: return ‘Your Name Here’;Or
Try to get a plugin that would handle this for you.
Hope this helps.
Forum: Fixing WordPress
In reply to: Updating theme with custom code and no child themeHello.
Try backing up your theme files manually first via FTP.
Go to /wp-content/themes/ and download your theme folder to your computer.
Make sure you have a complete copy of your theme folder as a back up available on your computer. Then manually download the updated version of your current theme from their site.
Best to child theme the updated theme at this stage before you proceed with the next stage.
You should now have both, a new version of the theme and your old customized theme on your computer. If you remember the changes you made to your theme, then simply copy and paste the code snippets from old theme to the new version.
If not, try to use a comparison tool to identify the changes between your old files and the newly updated files of your updated theme.
Hope these help.
Forum: Fixing WordPress
In reply to: Unable to customise different menusHi there!
What theme are you using? Did you use plugins to setup different menus? Try to check the setting if you can customize it.
Forum: Fixing WordPress
In reply to: Unable to customise different menusHello!
Have you tried approaching your issue via plugins?
This plugin seems to be a solution to your language issues on your menu:
https://wordpress.org/plugins/polylang/
Hope this helps.
Forum: Fixing WordPress
In reply to: Editable table cell frontpageDid you try the lite version? If so try this one “WP jQuery DataTable”
Forum: Fixing WordPress
In reply to: error on loading some postaHi there!
Do you mean content jumping? Losing CSS style? Have you added plugins before this happen? If not try to fix it with “min-height” in the CSS.