Josh
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Edit] Editor font weirdJust checking to see if you made any progress here.
Forum: Reviews
In reply to: [WP Edit] Making WowThank you very much, my friend. Please have a wonderful day!
Forum: Plugins
In reply to: [WP Edit] Editor font weirdHmmm.. this sounds very weird. And I don’t think it’s originating from the WP Edit plugin.
1) Deactivate WP Edit; but continue using the new theme. Does the default font return to normal? If not, it has something to do with your theme (or another plugin).
2) Switch back to your original theme. Does the font return? If so, it’s another “flag” it might be your new theme.
WP Edit does not use a font called “-apple-system” natively, anywhere. This is why it’s probably not appearing in the font dropdown box.
My guess would be the new theme is setting this font by default.
Forum: Plugins
In reply to: [WP Edit] WP Edit not working properly after update WP to 4.9Hello again, Carrie,
WP Edit definitely works with the latest version of WordPress. The appearance -> editor screen is not part of WP Edit; it is part of WP core functionality. If it is not working properly for you; then it suggests you have an issue with server configuration not letting you edit server files.
You never want to modify core WP files. Whenever you update WordPress; you will lose any modifications and have to add them in again. Instead, we use a child theme to keep customizations.
You will want to use a custom function from your child theme to add the Amazon affiliate stuff. I’ll try to give you an example here; but not knowing your exact needs, we may need to adjust.
function add_amazon_to_footer() { ?> // Your Amazon script goes here <?php } add_action( 'wp_footer', 'add_amazon_to_footer' );Please feel free to reach out with any questions.
- This reply was modified 8 years, 3 months ago by Josh.
Forum: Plugins
In reply to: [WP Edit] WP Edit not working properly after update WP to 4.9You should definitely be able to still switch between visual and text modes in the editor. Do you not see the tabs? Or are you just not able to click it?
- This reply was modified 8 years, 3 months ago by Josh.
Forum: Plugins
In reply to: [WP Edit] Table Borders won’t dissappearHi Les,
Just getting back into things again. Many times; table border CSS is set via themes. You may need to overwrite/remove/modify existing theme table definitions in your theme. I recommend using a child theme to make CSS modifications.
(I opened your link, but didn’t see any tables)
Forum: Plugins
In reply to: [WP Edit] NOT WORKING: Abreviation & Insert/Edit Advanced LinkHi Sebastian, glad you got it working properly.
I’ll definitely take a look at this before the next release. Thanks for the information. Please have a wonderful week.
Forum: Plugins
In reply to: [WP Edit] NOT WORKING: Abreviation & Insert/Edit Advanced LinkHi Sebastian,
Are you seeing this error when creating a post, or a page, or both? Or a custom post type?
Forum: Plugins
In reply to: [WP Edit] Tables made via WP-EDIT are not responsiveHello. So sorry I missed this thread. Are you still around and using WP Edit?
Forum: Plugins
In reply to: [WP Edit] How come your plugin tested up to wordpress 4.9.6Hello Dorji,
Thank you for asking. Actually, I use the WP nightly build when developing. As of the time of this writing, the nightly build is “5.0-alpha-42970-src”. You’re correct in it is a little misleading; but I have already confirmed the plugin will be compatible with WP 4.9.6. Working with nightly builds allows developers to stay slightly ahead of the game.
Please feel free to read more about WP nightly builds:
https://wordpress.org/download/nightly/
https://make.wordpress.org/core/handbook/testing/beta/Forum: Plugins
In reply to: [WP Edit] Alternative to WP Edit?Hello @LesTexas.
Yes, I’m okay. Thank you so very much. Just trying to keep all balls of life in the air. Can you please let me know what issue you are experiencing?
Forum: Plugins
In reply to: [WP Edit] Increase Editor HeightHey guys… sorry for my delay.
Try this.
1) Go to create/edit a post.
2) Towards the top-right corner of the screen is a tab called “Screen Options”. Click that tab.
3) In the slidedown panel; look for the option that says “Enable full-height editor and distraction-free functionality.”.
4) Uncheck this option.That option is a default WP option. I’m not sure how it got turned on for you… but turning it off should restore the ability to drag the editor height.
Forum: Fixing WordPress
In reply to: Warning: Invalid Arguement and I don’t know CSSI really don’t suggest editing code in the WP editor. Sure, it works… but if you make a mistake, you will get locked out of your site (white screen); and have to use FTP to manually make the corrections anyways.
I would suggest using any ftp program instead. There are many free programs available.
Anyways, without seeing any of your code, I would assume the developer mis-typed a “4” instead of a “$”.
So, this:
foreach ($meta as 4member) {Should be this:
foreach ($meta as $member) {Again, I’m assuming. You may want to backup your site before attempting this repair.
Forum: Fixing WordPress
In reply to: Fatal error: Call to a member function add_query_var() on stringIs it possible you didn’t deactivate all plugins? Did the site lock before you got a chance to deactivate them?
If that’s the case; you’ll need to go into your site database (via phpMyAdmin); go to the
wp_optionstable and delete the optionactive_plugins.This will manually deactivate all plugins; and may allow your site to load properly.
NOTE: You may want to take a database backup first; if you’re at all inexperienced with database management.
- This reply was modified 8 years, 8 months ago by Josh.
What do you mean by issues?
Is this coming from a plugin or theme you recently installed? Or are you custom coding?