codismo
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Strange Javascript in wp-content\uploads folderCan you include the URL to the JS file? Seeing what it does would help out to understand why it’s there.
Forum: Fixing WordPress
In reply to: Hiding Images in your postWell still, we’d need the URL to your website in order to see what is happening.
Forum: Fixing WordPress
In reply to: WP Backend without functionIf you tried disabling all plugins and activating a default WP theme then it might be that there is some issue in the WP files.
Try forcing a WordPress reinstall. Go to /wp-admin/update-core.php and click the “Re-Install Now” button.
Forum: Fixing WordPress
In reply to: Post revision disappearedMaybe just the revisions section is hidden. When on the post edit page, in top right corner you’ll see “Screen Options”, click it and checkboxes will show up, make sure the “Revisions” checkbox is checked.
Forum: Fixing WordPress
In reply to: Visual editor suddenly not workingIf you tried disabling all plugins and activating a default WP theme then it might be that there is some issue in the WP files.
Try forcing a WordPress reinstall. Go to /wp-admin/update-core.php and click the “Re-Install Now” button.
Forum: Developing with WordPress
In reply to: How to modify only local $post object, not globa?lTry:
if ( is_single() && in_the_loop() && is_main_query() ) { global $wpdb; global $post; $post->post_title = $post_replace->post_title; $post->post_name = $post_replace->post_name; }Forum: Fixing WordPress
In reply to: How to bypass Author pageGive Disable author pages a try.
Forum: Fixing WordPress
In reply to: Menu items squished, no spacingThe URL to the website will help in getting an answer.
Forum: Fixing WordPress
In reply to: All plugin updated but number “1” appears !The plugin that’s reporting to have an update is LayerSlider.
Do you have that plugin active and are you using the latest version?
Forum: Fixing WordPress
In reply to: Remove Blog Title from one pageIf you need to hide the menu go with:
body.page-id-5 #menu { display: none; }It’s more specific than targeting
navwhich is used for other sections as well.Forum: Fixing WordPress
In reply to: contact form missingSimilar to Contact Form 7, head over to WP admin > Ninja Forms, you’ll see the shortcode there.
Unless you deleted the form from there, in which case you need to create a new one, there’s a template for a contact form when you go to create a new one.
Forum: Fixing WordPress
In reply to: contact form missingWhat were you using to power the contact form. Was it Contact Form 7 plugin?
If so, then if it’s still active just go to WP admin > Contact, you’ll see the shortcode there, copy it. Then go to edit the contact page and paste the shortcode in the content.
Forum: Fixing WordPress
In reply to: All plugin updated but number “1” appears !Put this into the theme’s functions.php
// only proceed if admin ( can manage options ) if ( current_user_can( 'manage_options' ) ) { // get the plugin update info $update_plugins = get_site_transient( 'update_plugins' ); // if there are plugins to update if ( ! empty( $update_plugins->response ) ) { // go through each and output the name echo '<ul>'; foreach ( $update_plugins->response as $plugin_name => $plugin_info ) { echo '<li>' . $plugin_name . '</li>'; } echo '</ul>'; } }And then visit the website ( not the admin, the front-end ). It will display a list of plugins that need to be updated. Won’t fix the issue but will help out by giving you some info on what plugin is being reported as having an update.
Remove the code after you get the info of course.
Forum: Fixing WordPress
In reply to: Size of logo in headerYou have a coming soon page so noone can see the website in order to check it out and help you.