latro666
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom Post Type UI] Updated and now 404http://thetruth4today.com/products/store/prints/tt4t-series-3/
Forum: Plugins
In reply to: [Custom Post Type UI] Update to 9.0 made all custom taxonomy disappearHi there
Have used this plugin on over 100 sites and the update has disassociated every single taxonomy to its post type on every single site?
At a bit of a loss what to do without manually going over every single site and re-associating the taxonomies to sites?
Forum: Hacks
In reply to: How to add custom field to wordpress register formLooks like you are using a plugin jobify? to create the form? Are you adding that code to it’s core files or in your theme e.g. functions.php?
Have you read their documentation or have a link to it?
Forum: Hacks
In reply to: What do the schemes login, login_post, admin, and relative mean?Have you tried testing them out with a simple echo?
I’d assume they’d suffix the url with /wp-login.php etc
Forum: Hacks
In reply to: How to pass post/page title when clicking button?Simple way would be to put a hidden field in the form on the page:
<input type="hidden" value="<?php the_title() ?>" name="dtitle" />Then on your form page that is posted to (assuming it uses a default page template too)
<h1> <?php if(isset($_POST['dtitle']){ echo('You are donating to the: ' . $_POST['dtitle']); }else{ the_title(); } ?> </h1>Forum: Plugins
In reply to: [Advanced Editor Tools] Hyperlink change link text but keep WP dialogueGuess no one has any ideas on this? :(. It’s weird as I’m wondering why this does not come up more often with WordPress its a big issue re editing link text.
Forum: Plugins
In reply to: [Media Library Assistant] bug with press permit and assigning categoriesgreat plugin by the way! the categories system is super userful
Forum: Plugins
In reply to: [Media Library Assistant] bug with press permit and assigning categoriesHi yep
I’v done some digging with the plugin and it comes down to having a role with ‘edit posts’ disabled (http://codex.wordpress.org/Roles_and_Capabilities#edit_posts). If i re-tick this then the user can assign media categories just fine!
bizarre right?
We dont want users of this role to add posts just pages, but i have left edit_others and publish posts unticked so in theory this should be ok they wont be able to add anything.
Still a bit of a work around, would love to get some insight into why this might be? edit_posts role seems an odd one to interfere with your plugin/media.
Forum: Requests and Feedback
In reply to: 3.8 admin panel design is very badThat one adds additional ones doesn’t it? I was thinking along the lines of all the css classes mapped to a full hex color picker.
I’m pretty sure there have been other similar ones written for older versions of WP so i guess some of these guys might already be updating for the new version so maybe give it a month or two and see if this materializes
Forum: Requests and Feedback
In reply to: 3.8 admin panel design is very badI’v been using it this morning to do some content entry, not something i normally get involved with but must say it does feel much cleaner and pleasurable to use then when i’v been roped into entering copy previously.
I’m warming to the black bar on the left too.
I had a look in the new folder:
/wp-admin/css/colorsLooks like it wouldn’t really be that hard to write a plugin to allow users to create their own custom theme from within WP with additional options (like the line separator etc), might give it a bash as a personal project if anyone is interested?
Forum: Requests and Feedback
In reply to: 3.8 admin panel design is very badIt reminds me a tad of office 2013… that metro-ish flat matte look. not a fan just yet but it might be a grower.
The left menu could definitely do with separation but as pointed out you can do this with a mini plugin. Speaking of which heck no offense but WordPress is ‘open source’ its like your ‘unwritten’ responsibility to make plugins and improve it, get involved etc… not just moan your clients are gonna hate it.
The WP team don’t owe you anything, if you’v built your business on the software its kinda a ‘d’ move to complain about a change they make especially when its free and they give you a massive API to change any part of it you want… if you are to unwilling/don’t have the technical skills to make those changes then that’s on you not them.
Plus if you are zero involved in their developer community and did not comment on these coming changes when they were in development then its even worse… just screams of entitlement.
Write a plugin that makes it look how you think it should look with a donate button, if it gets 2 million downloads then you might make a few $ 😀/rant.
On a further note, the responsive elements they have added are fantastic compared to how it was before. Re-size the window and check it out! – no doubt some folks are gonna moan since their clients use an old 14″ monitor and all the text has disappeared 😀
Forum: Plugins
In reply to: Page visibility private displays 404 errorHi there, Bit of thread necromancy but it should help searchers as i needed to do this and came on this thread.
I worked out a way of doing this myself after much head scratching, its not very elegant but should do the trick. Its along the same lines as above.
The 404 template does not provide you with a queried post to work with if the post is private but WordPress still does do all the query string and SQL formulation for you! So you can in effect re-query this and check the post thus:
<?php $requery = $wpdb->get_results($wp_query->request); if(count($requery) == 1 && $requery[0]->post_status == 'private'){ //we have a single post and it is private wp_login_form(); }else{ //data empty or not private just kick out a normal 404 echo("404 page not found"); } ?>Just plop that in 404.php in your main content div and should work.
You might wanna apply some args to wp_login_form to redirect to said page after login. http://codex.wordpress.org/Function_Reference/wp_login_form
Forum: Plugins
In reply to: [Media File Manager Advanced] Error after updating todayAlso how do you actually put a file in the folders? Just realised! i can create folders but there is no means to actually put files in them…
Forum: Plugins
In reply to: [Media File Manager Advanced] Error after updating todayAlso no error in chrome error console:
http://oi42.tinypic.com/2ihw1fl.jpgForum: Plugins
In reply to: [Media File Manager Advanced] Error after updating todayHi there
I just installed the plugin it is great but i get this exact same issue only in Chrome. If i load the plugin in Firefox there is no pop and further to this using Firefox to check for JS errors, there are none.
Seems to be an issue with chrome maybe?