xBLADEx
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: HTTPS issueWhat is your website URL?
I enjoy using this website for troubleshooting HTTPS content:
https://www.whynopadlock.com/Forum: Fixing WordPress
In reply to: Getting this message “Fatal error…”Nice! Well keep checking when you have time, there might be a plugin causing admin issues. Also update any that need to be and its good practice to remove any deactivated plugins if you won’t be using them.
Forum: Fixing WordPress
In reply to: Getting this message “Fatal error…”So that is the first step in troubleshooting these kinds of things is determining if it is a plugin causing the issue.
I have seen that error before and the cause was a caching plugin conflicting with another plugin for whatever reason. I could be wrong as well!
If you do have a bazillion plugins (ha) that could be the problem so start by deactivating one at a time and refresh and see if the error goes away or doesn’t appear. Again, kinda trial and error.
Forum: Fixing WordPress
In reply to: “Logged In As” shows at the very bottom of posts-how to changeHi Susi,
WordPress themes can show your
usernamewhen you are logged in along witheditbuttons etc.
I’m not seeing that because I’m not logged into your website.I think this is working as expected.
Let us know!
Forum: Fixing WordPress
In reply to: Getting this message “Fatal error…”Side note.
Your navigation is being block by your main content. Consider putting a
z-indexon your#topmenu.#topmenu { text-align: center; position: relative; bottom: 125px; z-index: 99; }Forum: Fixing WordPress
In reply to: Getting this message “Fatal error…”No problem!
That would delete the plugin yes if you no longer want it. I would delete it through the plugins page via WordPress admin.
Then inside wp-content, wp-content/plugins check for any named folder with cache or W3. I can’t remember the actual names of the folders off the top of my head.Forum: Fixing WordPress
In reply to: How loop trough Custom Post Types content including the_fieldAs far as ACF goes, yes use
the_field( 'acf_name' )inside your .item div.Forum: Fixing WordPress
In reply to: How loop trough Custom Post Types content including the_field<?php $args = array( 'post_type' => 'menus', 'posts_per_page' => 4, ); $the_query = new WP_Query( $args ); ?> <?php if ( $the_query->have_posts() ) : ?> <div id="owl-demo" class="owl-carousel owl-theme"> <?php while ( $the_query->have_posts() ) : $the_query->the_post(); ?> <div class="item"> <?php the_title(); ?> <?php the_content(); ?> </div> <?php endwhile; ?> <?php wp_reset_postdata(); ?> </div> <?php else : ?> <p><?php _e( 'Sorry, no posts matched your criteria.', 'language_name_here' ); ?></p> <?php endif; ?>You have some small changes you should tidy up. See my cleaned up example of your code. You were ending your </div> late after the if statement.
- This reply was modified 9 years, 6 months ago by xBLADEx.
Forum: Fixing WordPress
In reply to: Getting this message “Fatal error…”Hi downhomeme,
It’s basically a trial and error approach to single out which plugin is conflicting with another.
Disabling them one at a time and refreshing the site to pinpoint the culprit has been my approach.Caching plugins sometimes leave behind cached folders you might have to remove manually via FTP.
Let me know,
RichForum: Fixing WordPress
In reply to: Getting this message “Fatal error…”I’m seeing your error and sometimes after refreshing your site shows up.
Perhaps its a plugin conflict? A caching plugin maybe.Forum: Installing WordPress
In reply to: WordPress with SQL ServerI also don’t know much about your server environment but check and make sure its compatible:
https://wordpress.org/about/requirements/Forum: Installing WordPress
In reply to: WordPress with SQL ServerHi sumitkrsingh,
In wp-config.php try setting this to true:
define(‘WP_DEBUG’, true);That should help see errors.