Josh
Forum Replies Created
-
No worries at all.
Unfortunately; it’s hard to tell from a picture. I need to see the live link so I can see the CSS that is being applied to the elements.
If you don’t want to share a link here; you can send it to me via email (I think you already have my email).
Forum: Plugins
In reply to: [WP Edit] Advanced link not workingLol… okay 🙂
Well, I just finished a release for my Pro version. So, I’ll focus this weekend on a release for the Free version. This will allow me to do the most extensive testing.
Please follow up with me on Monday; if I have not responded. If I do find something before Monday; I’ll post back here.
Thanks for your continued patience; I will get this sorted out 🙂
Talk to you soon.
Forum: Plugins
In reply to: [WP Edit] Advanced link not workingI just uninstalled WP Edit… double checked to make sure all database table options were removed… then installed it again (for the first time).
Everything appears to be working fine. The button (and image) are there; I can add it to the editor rows; and I can click it and the dialog opens.
You can try going to the database tab; and resetting the plugin options. See if that loads the button properly.
Forum: Plugins
In reply to: [WP Edit] Changing between Visual and Text modesBeautiful.
Thank you for the confirmation.Forum: Plugins
In reply to: [WP Edit] Remove unwanted fonts from dropdown listOhhhhhh……
The GoDaddy details you provided me linked to a different domain hosting (scott e bright . com).
Where is the login to prominent publishing . com?
Let’s continue this via email; if you don’t mind.
Thanks.
That is strange.
Can you create us a test page.. and create a paragraph with the items you mentioned above… and let us see how it looks?Forum: Plugins
In reply to: [WP Edit] php tags getting mangledLol… funny.
I’ve ran quite a few WordPress installs… some on Linux… some on Windows. I’ve found that Windows seems to “play better” with WordPress. Perhaps because I never thought of re-booting Linux 😉
Forum: Fixing WordPress
In reply to: Undefined variable warningYou’re very welcome 🙂
Thank you for the kind words.
Glad you got it working properly.Forum: Plugins
In reply to: [WP Edit] php tags getting mangledExcellent Mike.
Thanks for the helpful tips. I appreciate you coming back here to share your experience. I’m sure it will be helpful for someone in the future.Please have a great day.
Forum: Plugins
In reply to: [WP Edit] Remove unwanted fonts from dropdown listOkay… I have made the adjustments in your child themes “functions.php” file.
However, the username for the site login you sent me doesn’t work… so I can’t verify it’s working properly.
Please go ahead and log into your admin panel… and see if it is working as expected.
Forum: Plugins
In reply to: [WP Edit] Remove unwanted fonts from dropdown listThanks. Got it.
I’m getting ready to head out for a couple hours. I will take a look as soon as I return to my computer.
Forum: Plugins
In reply to: [WP Edit] Changing between Visual and Text modesAbsolutely.
I think there is a plugin (or theme) option that is interfering with the loading of the editor. You will need to switch to the default WordPress theme to test if it is a theme option.
Forum: Plugins
In reply to: [WP Edit] php tags getting mangledHey Mike… sorry for my delay.
Hmmm… I’m wondering if that really solved the issue?? It really looks like the default WordPress filters that are mangling the code.
Out of curiosity… please let me know after you experiment for a bit. I’d like to know if this really fixes the issue.
Thanks mate.
Forum: Fixing WordPress
In reply to: Undefined variable warningSure.
Your first function above starts like this:
// print cause item if( !function_exists('gdlr_print_cause_item') ){ function gdlr_print_cause_item( $settings = array() ){ $item_id = empty($settings['page-item-id'])? '': ' id="' . $settings['page-item-id'] . '" ';Change it to this:
// print cause item if( !function_exists('gdlr_print_cause_item') ){ function gdlr_print_cause_item( $settings = array() ){ $ret = ''; $item_id = empty($settings['page-item-id'])? '': ' id="' . $settings['page-item-id'] . '" ';Note the newly added
$ret = '';.Forum: Fixing WordPress
In reply to: Undefined variable warningYou have to define
$retfirst in each function before you can add to the variable via$ret .= (...);. You can’t append to the variable if you have not defined it first.Add
$ret = '';to the beginning of each function.