TheDogBox
Forum Replies Created
-
Hi @saranshwpm
The problem isn’t that the compression isn’t on. The problem is that the sql file is unnamed and hidden, so when you unzip the backup it looks like the sql file isn’t included.
thx
- This reply was modified 1 month, 1 week ago by TheDogBox.
I’ve had this problem on a few of my sites. I’d increased the PHP memory limit to 1G without luck. What made the difference for me was reducing the max_execution_time from 300secs down to 20secs.
Forum: Plugins
In reply to: [Block for Font Awesome] v1.4.2 wipes out theme fontawesome codeThank you. It now works again.
- This reply was modified 8 months, 2 weeks ago by TheDogBox. Reason: mark as resolved
Forum: Plugins
In reply to: [Bulk remove posts from category] Plugin Not WorkingForum: Plugins
In reply to: [Bulk remove posts from category] No longer working with WP 6.0I found the same problem after I installed the plugin onto my WP 6.0 Woo shop.
After a bit of digging around, it turns out the problem is the JS code is no longer finding the IDs of the posts that are being bulk edited.
The fix is to edit wpbulkremove.js. You need to replace lines 58 – 60:
bulk_edit_row.find( '#bulk-titles' ).children().each( function() { post_ids.push( $( this ).attr( 'id' ).replace( /^(ttle)/i, '' ) ); });
with:
bulk_edit_row.find( '#bulk-titles-list .button-link.ntdelbutton' ).each( function() { post_ids.push( $( this ).attr( 'id' ).replace( /_/g, '' ) ); });
I tested this with both posts and Woo products.
Great plugin though. Heaps quicker to use this than try and remove categories product-by-product. ??
- This reply was modified 2 years, 5 months ago by TheDogBox.
Hi,
This is what I use:
add_action( 'init', 'add_content_block_taxonomies', 99 ); function add_content_block_taxonomies() { register_taxonomy_for_object_type( 'category', 'content_block' ); }
Forum: Plugins
In reply to: [WP Video Lightbox] Change auto thumbnail sizeHi,
Sorry, I must not have explained the problem correctly. I wish to display the thumbnail as a 440px x 250px image.
The problem is, the thumbnail displayed from Vimeo is the second smallest available at 200px x 150px.
So I’m taking a small thumbnail and scaling it up to fit a 440px x 250px box, which results in a pixelated image.
Vimeo does provide larger format thumbnails, and what I want is to access them.
Looking through the code, if I change line 290 of misc_functions.php from:
$thumb = $VideoInfo[‘thumbnail_medium’];
to:
$thumb = $VideoInfo[‘thumbnail_large’];
that gets me the larger size image from Vimeo. What would be great would be to hook that entire wp_vid_lightbox_get_auto_thumb() function.
Cheers.
Forum: Plugins
In reply to: [Simple Job Board] Application not submittingHey Tristan,
Where the is the problem line of PHP located? I’m having the same issue as you.
Thanks.
Forum: Plugins
In reply to: [Yoast SEO] Enabeled focus keywordI ran into the same problem. The Focus Keyword text box had disappeared.
Then I realised the Analysis settings (on the Titles & Metas settings page) were switched off. Switch them on and the Focus Keyword box re-appears.
I had the same problem when I moved from a https:// test server to a https:// production server.
If you go into Foo Gallery General settings and click the Clear CSS Optimization Cache button, that may fix it.
Forum: Plugins
In reply to: [Compact Archives] Warning after latest updateAs a temporary fix, try removing the ‘languages’ file from the ‘compact-archives’ plugin folder.
Forum: Fixing WordPress
In reply to: Unable to create directory problemI have the same problem. For me, I noticed the path for the ‘Store uploads in this folder’ in the Media Settings page was not the default.
Changed it back to the default path and all works fine.
Forum: Plugins
In reply to: [MP3-jPlayer] Widget and Playlist working, but not individual tracksI’ve worked out the source of the problem.
In the MP3-jplayer settings, my default folder was set to ‘/audio’. By changing the shortcode to [mp3j track=”/1-You Can Do Magic.mp3″], it worked fine.
Weird thing is that when I used the full URL to the file, it did not work.
Forum: Installing WordPress
In reply to: Automatic Update Error!I had the same problem; saw the “Briefly unavailable for scheduled maintenance. Check back in a minute.” for about 15 minutes.
I managed to log back into the site, but it said “An automated WordPress update has failed to complete – please attempt the update again now.”. (The Dashboard said I was running v3.1).
So I gave it a shot, and the upgrade has now completed and all looks good.
Not the best start to a new release. I think I’ll wait a while before upgrading my other sites. Luckily I started with a site that isn;t yet public facing.