Josh
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Edit] Visual mode does not work over httpsHello @justinestrada,
I’m so sorry, I’m not sure how I missed this.
Please send me another (get to know me) message :)… and I’ll follow up immediately.
Thank you very much.
Forum: Plugins
In reply to: [Simple Download Monitor] Category View: Display more than 10 downloads?@wasbah80,
Thank you. Your reported bug will be resolved in the next update.@rainakthx,
Is this the same shortcode you are using [sdm_download_categories]?Forum: Reviews
In reply to: [WP Edit] Does what I needSorry, I meant http://codex.wordpress.org/Function_Reference/register_uninstall_hook
Awesome!! Was not aware of that hook. I started my plugin with an option to uninstall; so I never looked at the uninstall hook.
Thanks bunches π
Forum: Plugins
In reply to: [WP Edit] Drag and drop is not working, so I cant use the pluginHi Valentina,
Thank you for taking the time to create a topic.
It sounds like you have another plugin which is causing a javascript issue. This can be caused by a variety of reasons; but the most popular seems to be other plugins loading their javascript across all admin pages (instead of only the pages where it is needed).
Is it possible for you to perform some testing steps?
1) Deactivate ALL plugins EXCEPT WP Edit.
2) Manually clear/empty your browser cache.
3) Go to the WP Edit settings page; and see if you can successfully drag and drop.If it is not another plugin; it may be the theme.
If all else fails; I’ll provide my contact form link, and you can create me a user account and I’ll take a look.
Forum: Plugins
In reply to: [WP Edit] Can I use WP Edit to change the Custom Menu font?WP Edit is used primarily for the content editor (plus a few additional options); however, there is nothing it does for footer text.
Changing footer text/font should be adjusted using some custom CSS. Do you have a custom CSS plugin; or know how to add custom CSS to your site (might be a theme option)?
Something like this should do the trick:
#footer-menu li a { font-family: tahoma; font-weight: bold; }(Love your footer menu; by the way!)
Forum: Plugins
In reply to: [WP Edit] I can't get change fonts to workHi Scott,
Sorry for my delay.Great! I’m glad you got it working.
Please, let me know if there is something the plugin can do better to help make it easier/better for you.
Thanks!
Forum: Plugins
In reply to: [WP Edit] Edit pro demo and contact not workingHi Daniel,
First, thank you VERY much for taking the initiative to find me and let me know about your experience.
I had been working on the demo site last night; so it’s possible we “crossed” each other; preventing the site from operating properly.
I am not finished; and everything should be working.
Can you please try once more; and let me know if the issue persists?
Forum: Reviews
In reply to: [WP Edit] Does what I needHi Scott, nice to e-meet you.
Thanks for chiming into the conversation.Yes, I think we are talking about the same thing,
IF HOOKING TO “register_deactivation_hook”:
The applicable code will be executed every time the plugin is deactivated.While this may seem logical… it is actually not very user-friendly.
People deactivate plugins all the time; for a variety of reasons (testing, compatibility, troubleshooting)… and they may not necessarily wish to also delete their settings.
If we delete the plugin options during this hook; each time the plugin is deactivated; it will delete all the user settings.
This frustrates a lot of users because their options are now gone.
INSTEAD:
We (plugin authors) provide an option in our settings page; to uninstall the plugin AND remove all plugin data (database options).We code this option to specifically remove any plugin options from the database (may be a table; user meta; post/page custom fields; etc.).
This way… the plugin settings are still safe (when the plugin is deactivated) and can only be deleted by using the plugin option to remove all plugin data.
Forum: Reviews
In reply to: [WP Edit] Does what I needOkay, thank you for the clarification.
Do you remember what the name of one of those plugins may have been? That’s interesting that it cleaned the DB entires as well. I’d love to try it and see what they are doing differently.
Perhaps there is another WP hook with which I’m not yet familiar.
Forum: Plugins
In reply to: [WP Edit] Add other fonts to the existing fewExcellent. Got it π
Okay, everything looks great except for your file paths (as you already guessed).
You are using file paths like this:
http://GrahamPayne/wp-content/custom-fonts/custom-fonts.cssBut it needs to look like this:
http://GrahamPayne.com/wp-content/custom-fonts/custom-fonts.cssThis is assuming your website is
GrahamPayne.com.There are three or four references you’ll need to fix.
Remember, you may need to manually clear your browser cache before seeing the fonts rendered properly.
Forum: Plugins
In reply to: [WP Edit] Add other fonts to the existing fewNo worries, Graham. But, I still can’t connect to the pastebin. You still have it set to private.
Forum: Plugins
In reply to: [WP Edit] Add other fonts to the existing fewThanks Graham,
However, you made it a private bin.Can you switch it to public? I only need to see the code associated with the custom fonts.
Forum: Reviews
In reply to: [WP Edit] Does what I needThe last 5 plugins I deactivated and the clicked delete produced a button that said delete files and data and another that said cancel.
Yes. Deleting “files and data” is one thing. Deleting “database options” is something else.
“Files and data” exist in the file directories. It will delete the plugin folder; all it’s files and folders inside; all javascript, php, html and whatever else files.
However, the “database options” will remain. These can only be deleted by code provided by the plugin author.
A plugin author can only “hook” to the uninstall option. We cannot “hook” to the delete option.
When you click “delete”… that is WP taking over. The plugin has to first be deactivated before it can be deleted. Once the plugin is deactivated… it cannot render it’s code anymore (it’s deactivated). That’s when WP takes over with the “delete” option. It will delete files, folders and data from the file directories… but it will not delete “database options”.
So… are you 100% certain the last 5 plugins you deleted removed the database options?
Now, a plugin author can hook to the “deactivate” button… and run code from there… which could remove the database options. But this is not preferred. A plugin author SHOULD NOT delete plugin data on plugin deactivation. This is because of what I mentioned about testing and troubleshooting.
Instead, a plugin author should ALWAYS provide a method to completely remove their plugin data (files AND database options).
Whew… thanks for reading π
Forum: Plugins
In reply to: [WP Edit] Visual Tab removing P tagsHi Dave,
WP for some ungodly reason automatically opens a post/page edit with the Visual tab by default.
This is not normal. The editor should open on whatever tab is was on last when the post/page was saved.
If it is ALWAYS opening in “visual”; regardless of what state it was in when saved; then something else is going on.
In WP Edit; there is an option to always default to the “visual” tab (Editor Tab options). Make sure you do not have this option enabled.
In order to retain
<p>tags… you’ll either need to remove thewpautop()filter (available in the Pro version… or custom code). Or, you can add a class to your<p>tags; which will preserve them in the editor. Like<p class="none">.Forum: Plugins
In reply to: [WP Edit] Add other fonts to the existing fewHi Graham,
Yeah, if it worked locally… but not live… then it’s most likely a problem with the paths.
What file paths should I use, and should they be relative or absolute?
Paths should be absolute.
Paste your full code from your child theme
functions.phpfile (the part where you are adding the fonts) on pastebin (post url from pastebin back here).. and I’ll take a look.