clemorphy
Forum Replies Created
-
Ok. I made my own script that allows me to import posts with nested terms, and it is working just fine.
- This reply was modified 1 year, 10 months ago by clemorphy.
I know how you do it, I have already read the documentation.
I was asking if this can be done using the free version, or do we need the PRO version to do that ?
Because doing like explained in the documentation while using the free version, it is not working for me.
Thanx
Forum: Plugins
In reply to: [Enable Media Replace] Option to NOT replace the title@sixaxis
Yes I saw this hook. But the only thing I can get is the new generated title. I can’t get the current title to return it in this hook.
Do you have a way to get the current title inside this hook?
ThanxEdit :
Ok, forget it, I simply get the attachment ID from the POST data, and get the current title by querying the attachment :
function emr_override_title( $title ) { $p = get_post( $_POST['ID'] ); return $p->post_title; } add_filter( 'enable_media_replace_title', 'emr_override_title' );
- This reply was modified 2 years, 9 months ago by clemorphy.
Thanx. That would help a lot ??
Forum: Plugins
In reply to: [Enable Media Replace] Filename replacement incompatible with serialized dataHi @sixaxis
If I’m right, this has been fixed in v 3.3.8 ?
Forum: Plugins
In reply to: [Enable Media Replace] Filename replacement incompatible with serialized dataThanx for your quick answer.
I don’t know when the fix will be published, but in the meantime, people still use the current version and might face this really annoying problem. That’s why I suggested to add a warning or disable the rename option until it’s fixed.
Forum: Plugins
In reply to: [Customizer Export/Import] Cannot find the plugin after installing itFor those still wondering WHERE you can access the plugin once installed, don’t look for any entry in the WP admin menu, you have to go on your theme customisation page, and then look at the bottom of the options list, you’ll have an “export / import” entry.
@jtcosta : you should have said where you found it, not just “I found it”.
Forum: Plugins
In reply to: [Imsanity] [Suggestion] Make JPEG Image Quality Apply to Any SizeI agree.
Imsanity should allow to compress all original images, even if they don’t exceed the max dimensions.Forum: Plugins
In reply to: [Custom Post Type UI] Allow single quote in labelsIt seems to work just fine ??
Forum: Plugins
In reply to: [Custom Post Type UI] Allow single quote in labelsI didn’t find the time to test it yet.
I do it right now.Forum: Plugins
In reply to: [Custom Post Type UI] Allow single quote in labelsI can test this version.
The project on which I use your plugin is currently in development phase, so I am not worried about testing things.Edit :
I think you want me to test this version : https://github.com/WebDevStudios/custom-post-type-ui/tree/quote-encoding-for-labelsI’m testing this tomorrow.
Forum: Plugins
In reply to: [Custom Post Type UI] Allow single quote in labelsThank you.
In the meantime, I will use real apostrophes, which work fine.
But other users on our backoffice may use single quotes, so a fix would be great.Forum: Networking WordPress
In reply to: WPMU : newest sites pages showing 404Hello Ipstenu and thanks for your reply.
I managed to find the origin of the problem. Actually there is a plugin on the production server that is not installed on the development server : BWP Google XML Sitemaps. This plugin was breaking all the permalinks with the ‘/%postname%/’ format. In order to fix this, I just went to the configuration page of this plugin (without changing or saving anything), and then I have validated the permalinks structure, and that’s it. Problem solved.