Gabe462
Forum Replies Created
-
FrontEndEditor.init_fields();
appears to do the trick.Forum: Plugins
In reply to: [Front-end Editor for WordPress] How do I get this to work?OH- I just found the edit button in the toolbar ??
Forum: Plugins
In reply to: [Front-end Editor for WordPress] How do I get this to work?I have 3.7.1 installed, and am seeing no signs of the plugin functioning.
There are backend settings? What would I see if it were working?
Forum: Fixing WordPress
In reply to: how to find JS event (glitch) attached to entire pageYea, I know what thickbox is, and I actually found a workaround for the issue- I commented out the line in the plugin where it calls the tb_init() above. But I’d wanted to have a more advanced technique for troubleshooting this from the frontend. I try to avoid editing plugin code, so I’d have liked to unhook whatever events were hooked to whichever element. I think I can probably figure that out now with some trial and error, but I’ve got to move on.
Forum: Fixing WordPress
In reply to: how to find JS event (glitch) attached to entire pageDoing that. It looked like Thickbox was doing the work, so I unenqueued it and it sort of stopped happening (while other things broke). So I set a few breakpoints at the beginnings of functions in thickbox and watched what happened when I clicked on the page.
This bit from thickbox looks like it could be doing some damage if domChunk isn’t being properly
function tb_init(domChunk){ jQuery('body').on('click', domChunk, tb_click); }
Forum: Fixing WordPress
In reply to: how to find JS event (glitch) attached to entire pageI am. I use Chrome dev tools regularly, and used to use Firebug. MAybe this is just something I’ve not yet learned to do in either.
I’m familiar with the debugger, but only know how to us breakpoints in areas of code that I’m already looking at. If there is a way to simply break at the next executed line of JS, I’d love to know what that is!
Thanks
Forum: Plugins
In reply to: [Front-end Editor for WordPress] How do I get this to work?I’ve got the same question.
Forum: Plugins
In reply to: [Feature A Page Widget] other plugin (podpress) modifying fpw excerptI’ve rectified the problem by commenting out fpw_widget.class.php:187
$excerpt = apply_filters( 'the_excerpt', $excerpt );
I’ve had trouble using remove_filter before, so I’ll tackle that later.
Forum: Themes and Templates
In reply to: [Thematic] post classes missing after thematic updatePerfect, thank you!
Forum: Plugins
In reply to: [Redirection] Please make it compatible with 3.5It’s working for me! I saw a lot of posts that said it’s not, but I tried anyway. Redirects are working, only issue is a css glitch in admin.
I realized that trying to use a description that contains quotes, escaped or not, reverts the plugin back to using the title. Any idea why?
Thanks! That’s a bit better than this:
What about accessing the image url? Is there a filter I can use to create a new variable?
It seems like it would go somethign like this, but I’m not having any luck:
https://pinterest.com/login/?next=/pin/create/button/?url=%post_url%&description=%post_excerpt%&media=https://imgurl.jpg
The biggest problem is that there’s not a variable for image url. And really I need the_content, not the excerpt, but I can probably set the excerpt longer. But even when I’ve entered a full image URL, the above does not work. Can you help?