Shmoo
Forum Replies Created
-
Forum: Plugins
In reply to: [BackUpWordPress] Manual backups work but not automatic backupsHello can I hook into this.. ?
I have the same problem and was wondering could something like this be the problem?
I disabled all WordPress auto updates, could this prevent the backup plugin from backing up my MySQL database once a month on X date at Z time?
define( 'AUTOMATIC_UPDATER_DISABLED', true );
Thanks.
Forum: Plugins
In reply to: [Yoast SEO] The new Make Primary category function in Yoast SEOSuper! ??
Forum: Fixing WordPress
In reply to: Database migrate – menu settings questionHmm this makes me even more curious.. I think I’ll try an migrate to my local machine first see how that works.
Forum: Fixing WordPress
In reply to: Did something change about emoji?Any news on this?
Why does WP use sloppy Twitter emoji instead of real Apple emoji when I’m totally up to date?
????. <— example, here at WP.org it works perfectly fine. I see the original Apple emojis.
Forum: Fixing WordPress
In reply to: Did something change about emoji?Strange, WordPress 4.4.0 everything was perfect and the emoji’s would look the same as I added them. WordPress 4.4.1 updates and suddenly my browser shouldn’t support it anymore.
– Safari 9.0.2 Mac OS X El Capitan latest.
Forum: Fixing WordPress
In reply to: wp_get_attachment_link filter helpThis seems to work better.. It only applies to new added images via the media uploader. It’s not really a content filter. This adds a class to the link as soon as you use the media uploader/editor.
function my_custom_imglink_class( $html, $id, $caption, $title, $align, $url, $size, $alt = '' ) { $classes = 'image-popup'; if ( preg_match( '/<a.*? class=".*?">/', $html ) ) { $html = preg_replace( '/(<a.*? class=".*?)(".*?>)/', '$1 ' . $classes . '$2', $html ); } else { $html = preg_replace( '/(<a.*?)>/', '$1 class="' . $classes . '" >', $html ); } return $html; } add_filter( 'image_send_to_editor', 'my_custom_imglink_class', 10, 8 );
Forum: Fixing WordPress
In reply to: How to correctly append the right ownership rights to WP files?What about trying 767 or 775? If you do use 777 and upload some media, can you then switch back to 755 & upload again successfully?
Nope, I can only use the media uploader when the uploads folder is CHMOD 777. As soon as I switch a tiny lower I get the error.
I also have to manually update plugins via FTP right now. ??
Forum: Plugins
In reply to: [Simple Custom Post Order] Not working for meTry activating multiple Post Types, so for example: Posts + Pages -> Save
Now it should work.
Also remember you drag the posts near a place where you have some white place, a little more to the middle/right side. When you try to to drag your posts from the left side the quick-edit post field shows up and you can’t really drag the posts from that side.
Forum: Plugins
In reply to: [Simple Custom Post Order] Update optimizationPeople like you should get a statue on www.ads-software.com! ??
This is so important, I’ve updated this part of the code myself for now.
Thanks for posting this.
Forum: Plugins
In reply to: [WordPress MU Domain Mapping] Domains need to be parked?Looks like I got it working..
I have deleted the domain names that I wanted to use on my MultiSite sub-sites from my DirectAdmin account > after that I went to the main domain name > Pointers > add X domain as allies linking to that main domain name.
After that just do the trick on your WordPress admin and wait a few minutes.
Forum: Plugins
In reply to: [WP Attachment Export] Requires WordPress 3 or higherOoo wait, my mistake the version of WP is 3.9 not 2.9 Haha..
Forum: Plugins
In reply to: [WordPress Importer] For some reason no image support?Turning on all debug modes.. Plugin + WordPress..
I get some warnings at the import page – after and during import I get none error messages at all. Just those default warnings you see at the image.
First I thought the problem was on my side because I exported as post types as published and imported them as drafts.. Now I also tried to leave the export file as is and import it as is but nope..
The export file is barely 2mb large/heavy.This really is a bug in the WordPress Importer plugin or WordPress core.
It’s strange that I can’t get it done on 3 different sites and and export files but when I look at this plugin support section I’ll find at least 3 to 5 people having similar problems with this plugin.Forum: Plugins
In reply to: [WordPress Importer] For some reason no image support?My debug contant is always activated on local development and even if I get a warring I go check it out but there is no wearing or error at all.
I think WordPress still thinks everything went smooth, because when I simply just import a single product with the hole shebang ( meta fields and stuff ) everything falls in place except the images.
On the post edit page there is no featured image set ( looks like it )..
https://i.imgur.com/7odtBCw.pngBut when I click on the link to add or edit an image it def. marks an image as set but it just didn’t got imported correctly. No image to be seen and no data at all. Just an empty selection.
https://i.imgur.com/tZwQetl.pngThis example was taken from a Live site to another Live site just for testing. Everything about the imports went great except the images. They don’t get fully imported for some reason.
Forum: Plugins
In reply to: [oEmbed API] Could this be used internal?Thanks..
I think I’m going to love this feature so much in WordPress. This is kinda like shortcodes on steroids. ??
Forum: Plugins
In reply to: [WooCommerce] Undefined index: list_class at mini-cart.php – line 20Thanks, that worked well..
Just curious why do we need to add at least one class to this item?