mrjonnywood
Forum Replies Created
-
Second that! Really annoying that it can’t be disabled or hidden within settings.
I resorted to:
#smush-image-bar-toggle { display: none; }
- This reply was modified 6 years ago by mrjonnywood. Reason: Added hack
I agree that the customisation could be better. I found that deregistering the stylesheet and essentially rewriting it as required gave me the perfect front-end output that I needed. In terms of functionality it really is one of the best.
I’ve spent the last two days researching and trailing demo’s of project management plugins for WP and was initially frustrated that the better options seemed to be premium plugins. I don’t mind paying for a premium plugin if it’s regularly updated and maintained but to have a free version to trial and test before purchase is a must.
IMHO WP Project Manager looks to be the best option out there and the free version does allow task list creation and task creation as detailed by the author above. You can also stay on the free version too, but I like the look of the premium features.
I’ll be adding my own review after a week or two of using this plugin, but so far so good!
Forum: Plugins
In reply to: [Subtitles] function ‘subtitles_mod_supported_views’ not foundThanks for such a speedy response. I’d searched for that function within the subtitles plugin folder and couldn’t find it so I did think it was odd, however your suggestion prompted me to search my theme’s code (a theme I’m currently developing) and boom!, there it was. I’d copied over some functions that I’d used from another theme design using your plugin but then commented out only half of it!
Thanks for your help and such a great plugin, it should be part of the wp core in my opinion.
Forum: Plugins
In reply to: [Event Organiser] additional loop within event-singleTook a while to get back on this – thanks. That’s been a good help.
Forum: Plugins
In reply to: [Event Organiser] exclude tag from queryWow, fast response! Thanks. Got it working with this:
$events_query = new WP_Query(array( 'post_type' => 'event', 'tax_query' => array( array( 'taxonomy' => 'event-tag', 'field' => 'term_id', 'terms' => '196', 'operator' => 'NOT IN', ), ), 'orderby'=> 'eventstart', 'order'=>'DESC' ));
It would be good to know this information to help better understand how the plugin works. Thanks.
Forum: Fixing WordPress
In reply to: Update WP 3.9 – Can't add mediaForum: Plugins
In reply to: [Responsive Video Embeds] Video can't go bigger than 500pxI had the same issue. Quick fix (not really recommended as you shouldn’t have to edit plugin files, but worked for me).
I commented out line 96:
$inline_styles = ( isset( $attr['width'] ) ) ? ' style="max-width:' . absint( $attr['width'] ) . 'px;"' : '';
Without this line, I had no inline max-width applied to the
rve-embed-container
element.This is a very quick fix, I’ve not noticed any problems from removing this line but if I notice anything I’ll update this post.
Forum: Plugins
In reply to: [mobble] Mobble Shortcodes PluginNice. Just tried this to add the class ‘button’ to a phone number if is_mobile. Works a treat.
<span class="heading [is_mobile]button[/is_mobile]">+44 0000 000 000</span>
Forum: Plugins
In reply to: [Regenerate Thumbnails] [Plugin: Regenerate Thumbnails] Odd PHP when failingThis is the error code that Chrome Dev Tools throws up for me.
Failed to load resource: the server responded with a status of 403 (Forbidden)
forhttps://luvmycase.com/wp-admin/admin-ajax.php
and
POST https://luvmycase.com/wp-admin/admin-ajax.php 403 (Forbidden)
forload-scripts.php:4
. When expanded this details:send load-scripts.php:4 f.extend.ajax load-scripts.php:4 RegenThumbs tools.php:343 RegenThumbs.$.ajax.success tools.php:356 o load-scripts.php:2 p.fireWith load-scripts.php:2 w load-scripts.php:4 d
Tried setting permissions to 777 but no luck. Also disabled ALL other plugins. Still get the above error.
Update:
Also tried this:
https://www.ads-software.com/support/topic/help-error-403-forbidden-wp-23?replies=4Didn’t help ??
Never mind, I found the solution:
query_posts(array( 'orderby' => 'menu_order', 'order' => 'ASC'
Forum: Fixing WordPress
In reply to: No thumbnails in "add media"Same issue. Had it a while and now when I upload images I get fatal error out of memory. I’ve scoured the forums and have not found a fix ??
Forum: Networking WordPress
In reply to: Super Admin yet 'do not have permission to view drafts'…?!Okay, used the interconnectit.com tool but didn’t seem to do anything, not sure if I used it right. Anyway, decided against a manually search & replace in the db after reading these two articles:
Instead opted for this Search & Replace plugin and replaced 6 instances of /forensics/ with /
I don’t seem to be having the admin permissions problems, but I can still access the login page domain.com/forensics/wp-login.php which shouldn’t be possible.
Forum: Networking WordPress
In reply to: Super Admin yet 'do not have permission to view drafts'…?!Thanks, I’ll check it out. Looks really simple and nice.