Dave Loebig
Forum Replies Created
-
Forum: Plugins
In reply to: [ICS Calendar] New Bug from Today’s Update???FYI: The code you suggeted above seems to NOT fix it.
Thanks.
Forum: Plugins
In reply to: [ICS Calendar] New Bug from Today’s Update???When in Admin. The front end seems to be working.
Thanks for the fast response.Forum: Fixing WordPress
In reply to: Can’t Update Pages/Posts When Site URL & WordPress URL are DifferentThanks, Hugh. I did try some things there after my original post including change URL with wpconfig and directly in the DB. None worked, FWIW.
Apparently I was posting the solution I found at the same time you were posting: clear broswer cache and cookies.
I wonder now if just logging out and back in could work, or just clearing cache. Anyway, clearing the domain on the browser worked.
Thanks for the reply.
Forum: Fixing WordPress
In reply to: Can’t Update Pages/Posts When Site URL & WordPress URL are DifferentFound a solution: clear cache and cookies in the browser.
I use a Chrome extension called Cookie AutoDelete. I used it to clear all for the domain. Of course, clearing cookies logged me out of the site. Once I logged back in, I can save changes to pages.
However you do it, if you found this thread looking for a solution, try clearing the cache for the site or everything including cookies. Maybe even logging out and back in.
- This reply was modified 2 years, 5 months ago by Dave Loebig. Reason: Mark as resolved
Forum: Reviews
In reply to: [Menu Cart for WooCommerce] badYordan, nice. That’s a ready solution. Thanks.
Forum: Plugins
In reply to: [PayPal WP Button Manager] Error Code: 10002 When Creating ButtonThank you for the fast response.
That’s it exactly. I was using live account info in the sandbox fields.
After some experimenting, I found my sandbox accounts on Paypal and used all the info from a Business Sandbox account. Then, in WP under Settings > WP Paypal Button Manager, I entered that info in the (Sandbox) section, and it works.
Thanks.
Forum: Plugins
In reply to: [CKEditor for WordPress] CKEditor Adds ?I found an adjustment that makes this a little more tolerable. This removes the
from the<p>
tag.FILE: ckeditor.config.js
Add this line:
config.fillEmptyBlocks = false;
It still adds the paragraphs but not the
. So the paragraphs don’t render in HTML as a line, so for the time being, the spacing stays the same. I’ll remove all the extra<p>
tags when I’m done editing the site.PITFALL
I’m sure there are some disadvantages. With this configuration, non-breaking spaces won’t be inserted into empty blocks, even when they should be. There are times the
is important.Forum: Reviews
In reply to: [SM Dashboard Pages Navigator Tree] Perfect Plugin for a Simple PurposeFor those interested in opening links in a new window, I found where to edit the code.
FILE: sm-dashboard-pages-navigator-tree.php
LINE 114 in version 1.0.1Add this code:
target=\"_blank\"
So this line would look like this:
$output.= "| <a target=\"_blank\" class=\"editPage\" href=\"".admin_url( sprintf($post_type_object->_edit_link . '&action=edit', $page->ID) )."\">edit</a> ".PHP_EOL;