Josh
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Plug-ins not workingHi there,
Well, plugins perform a variety of tasks (way too many to list). It depends on the plugins functionality of whether or not it shows on the website.
What exactly is your question? Is there a plugin you have installed that is not doing something it should?
Forum: Plugins
In reply to: [WP Edit] No table borders or mobile responsivenessHello, and thank you.
Well; chances are that your theme is provided styles to tables via it’s stylesheet. This might be over-riding what you are adding to the table via the editor.
Would you mind showing me a link to a table you have created; that I can view on the published site?
Forum: Fixing WordPress
In reply to: Different Widget Every Single PostMy pleasure. Glad you got it working.
Yes, sorry… you need the opening
<?php.
You’ve got it, good job.You are very welcome 🙂
Forum: Fixing WordPress
In reply to: Need the PAGE id NOT the POSTid on blog pageWhat about,
if( is_page( 164 ) ) { echo 'This is page 164.'; }Check the WordPress Codex in Conditional Tags for more possibilities.
Forum: Fixing WordPress
In reply to: Different Widget Every Single PostOkay.. now let’s wrap the shortcode in a do_shortcode() function.
if ( is_single() ) : global $post; if ( get_post_meta( $post->ID, 'per_post_content', true ) ) : $shortcode = get_post_meta( $post->ID, 'per_post_content', true ); echo do_shortcode( $shortcode ); endif; wp_reset_postdata(); endif;Forum: Fixing WordPress
In reply to: Different Widget Every Single PostFirst; let’s make sure the code is working properly.
if ( is_single() ) : global $post; if ( get_post_meta( $post->ID, 'per_post_content', true ) ) : echo 'TESTING'; endif; wp_reset_postdata(); endif;Does that display the word “TESTING” in the widget area?
Forum: Reviews
In reply to: [WP Edit] Excellent tool !Thank you, my friend.
Please let me know if you ever have any constructive criticism or ideas for improvements.
Forum: Fixing WordPress
In reply to: White Screen??First; deactivate all plugins.
If you can’t do it from within the admin panel; you’ll need to access your server files directly. You can do this with either your hosts cPanel, or via FTP. If you have no idea what these are, please contact your host and ask them how to access your cPanel.
Now, with access to your server files; navigate to the “wp-content” directory. Inside that directory is another folder named “plugins”. RENAME that folder to something like “plugins-renamed”.
This will manually deactivate all plugins on your site.
Now, go back and see if you can login, post, etc.
If you can, then the issue was with a plugin. Go back and rename your “plguins-renamed” folder back to it’s original name of “plugins”.
Go back to your admin panel.
Reactivate a couple plugins at a time… testing to see if a white page happens again. If it does, repeat the process of renaming the plugins folder.
Eventually, you’ll narrow it down to a specific plugin.
Forum: Fixing WordPress
In reply to: WordPress stripping query params?Gotcha.
I’m not sure how WordPress handles query parameters from links within the editor. But, I would think they would pass along fine.
By disabling all plugins and switching to the default 2015 theme; we can rule out the possibility of a plugin or theme setting causing the issue.
If it works fine with all defaults; then you can switch back to the theme and try again. If it works; continue to the plugins. If it does not, you know it’s the theme.
Forum: Fixing WordPress
In reply to: Increasing Page width/marginsYou could try something like this in your custom CSS:
#post-5486 .entry-content { width: 980px; max-width: 980px; }You can play around with those numbers (980px) until you find something you like.
Forum: Fixing WordPress
In reply to: WordPress stripping query params?Are you able to replicate the issue with ALL plugins deactivated; and switched to the default 2015 theme?
Forum: Fixing WordPress
In reply to: Image & Media not uploading after update to 4.2.3.Okay, let me make sure I understand correctly.
Can you please tell me the steps you are taking; to replicate the issue?
Are we talking about the “media” button above the content editor when you are creating/editing a post or page?
Forum: Fixing WordPress
In reply to: Image & Media not uploading after update to 4.2.3.Hi Alex,
Well, I’m sorry to hear about your continued circumstance. I know how frustrating it can be, sometimes.
What happens if you deactivate ALL plugins; switch to the default 2015 WordPress theme; and manually clear your browser cache?
Does the image upload work properly at that point?
Forum: Fixing WordPress
In reply to: contact form drama (PHP & wp_mail)require_once( $_SERVER[‘DOCUMENT_ROOT’] . ‘/wp-load.php’ );
Is definitely suspicious. The developer should not be calling a WordPress core file directly.
+1
Forum: Fixing WordPress
In reply to: Image & Media not uploading after update to 4.2.3.I wrote a detailed tutorial on How to Troubleshoot a Blank WordPress Editor.
The same steps are applicable in this situation (media uploading not working).
I’m having this same problem, but am loathe to update the theme since we made substantial customizations to it.
Then this might be exactly what is causing the issue. As WordPress continues to evolve; changes are constantly being made to core code. If the theme is running on “old” core code; then issues can (and often do) arise. It is strongly recommended to create a child theme if special customizations need to be made.