Glenn
Forum Replies Created
-
Forum: Plugins
In reply to: [Tabify Edit Screen] clarify instructions and move NEW TAB to the topstill loving the plugin, and still waiting for 1.0. It’s overlooking some plugin Metaboxes… (Plugin Load Filter, GridFX)
thanks for your efforts.
Forum: Plugins
In reply to: [Simple Custom CSS and JS] linking external googleapis fileswell since one of the options is Linking Type: External File, i just assumed that it had the ability to link to an external file. Confusing.
it’s more often than not when inserting some jQuery or AJAX that an external library is also required, especially when adding it to Admin. It’ll be nice to be able to do this within the same plugin instead of writing a function just to do that.
thanks, look forward to an update. This is a good plugin.
Forum: Plugins
In reply to: [GDY Modular Content] so far I can't make it work –wow. thanks.
that’s way too much work just to install a plugin. unless i’m prepared to modify or customize something.
maybe i’ll try it one day…
thanks again.
so basically this plugin is crap unless one buys the premium. no thanks
Forum: Plugins
In reply to: [Content Reveal] adding jquery transition to the reveallet me toss you a little help. i found this extremely simple jquery slide action after i asked this here.:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script> <script> $(document).ready(function(){ $("#flip").click(function(){ $("#panel").slideToggle("fast"); }); }); </script> <style> #panel, #flip { padding: 5px; text-align: center; background-color: #e5eecc; border: solid 1px #c3c3c3; } #panel { padding: 50px; display: none; } </style> </head> <body> <div id="flip">Click to slide the panel down or up</div> <div id="panel">Hello world!</div>
https://www.w3schools.com/jquery/jquery_slide.asp
works like a charm.
Forum: Fixing WordPress
In reply to: set a default category rather than dropdowni realize my mistake – i meant different categories for different post forms. I have multiple forms creating different Posts for different Cats. need to use Cats, not groups or roles.
I solved this- here’s for anyone else with this issue:
In each form, you can select a field for Taxonomy; you can choose Category, select a default Category, then under Advanced you can hide that field. Done.
can a form be built with BP Groups Extras to create posts per group…? can’t quite figure it out.
disregard – just discovered that it’s Popup Maker – their recent update is conflicting with UM code in the backend.
i gotta get around to learning some jQuery – man i love the stuff… just don’t know a bit about it, except copy and paste…
OH! i thought you meant the link that was triggering the popup. MY Fault!!
yes, it’s the same link. https://www.thereeferexchange.com (I’m not a pothead, mu client is – an industrious one ?? )
no, I it’s a different one. i’ve tried every troubleshooting step possible. in the EXACT same circumstances on any other page, the SAME popup works fine.
i tried to find an error in Chrome’s console like you found last time, but found nothing. it’s like a ghost error. ?? only thing i can think is that the Home page is loading some script from somewhere that no other page is loading, but i haven’t gotten around to comparing the source code yet. busy…
sorry to bother you with help for a free app, but it’s certainly an app better than the rest – i can’t just give up on it.
thanks for your time. I’m sure we’ll find the problem eventually.
Glenn
yes, thank you! that’s in fact almost just what i’m trying to do – i’m really hoping that i can attach these parameters to the posts users create (with a WP User Frontend) so that they can be used in some advanced searches.
specifically the City, State and UM Role is what i’m looking to be both editable in the User Profile and available on any posts that the user Authors…
tricky for me, easy for you, @champ! ??
i just read somewhere from a WP techie that the problem is TinyMCE’s cleanup function, upstream from WP; i distinctly remember a plugin that did it for me a couple of years ago, though.
they seem to be fairly sparse these days. it’s sure pissing me off though, it adding <p></p> where it wants to if i try to paragraph my own text.
kind of like the (current) US Government. knows what’s better for us than we do…
??
at approx. line 3408 of that file you should see:
$( ‘a[href*=#]:not([href=#])’ ).click( function() { /…
WITHOUT the quotes around the # …
just add quotes around the #, like:
$( ‘a[href*=”#”]:not([href=”#”])’ ).click( function() { /…
and then go Rate the plugin. ??
yes, thank you, that did it for me, too… wow…