jojaba
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Video not displaying on public postFound a solution : using the embed shortcode.
Not what I was looking for but is a good alternative…Forum: Plugins
In reply to: [Caldera Forms - More Than Contact Forms] Caldera forms for editors ?Hi again.
In my current project I use your plugin. I would like now to be able to give the editors privilege to create forms. Is there a way to get it to work by adding some code into the functions.php file of my theme ?
Could it be something like that (right_cap and right_caldera_forms_action are placeholders) ? :function editor_can_create_forms() { $user = wp_get_current_user(); if (in_array('editor', $user->roles) { $user->add_cap( 'right_cap'); } } add_action( 'right_caldera_forms_action', 'editor_can_create_forms', 10 );Thanks in advance
Forum: Plugins
In reply to: [Caldera Forms - More Than Contact Forms] Multiple G reCaptcha on same pageOK, thanks for these infos.
I will follow your advice and use Honeypot. ๐Forum: Plugins
In reply to: [Relevanssi - A Better Search] Multisite (not network) serach possible ?OK, thanks for the answer.
So there is no other way to perform a multiple site search than developping an external application (or include the Google search engine I guess).Forum: Plugins
In reply to: [Polylang] Changing "de" and "en" default cat not taken in accountThanks!
Forum: Plugins
In reply to: [Relevanssi - A Better Search] French translation updateSent. ๐
Thanks.Forum: Plugins
In reply to: [Relevanssi - A Better Search] French translation updateDone!
Found some issues related to the translation/localisation. :- In the User searches panel (under dashboard menu item)the following sentence is not localized : “Enable query logging to see stats here.”.
- In the Settings page the sentence “You do not have an index! Remember to build the index (click the “Build the index” button), otherwise searching won’t work.” is also not localised. And in this same page all the boxes at the right of the screen (Buy, subscribe, sample, facebook,help) are not localized.
- When using single quotes in the button labels just over the “synonymes” title, the buttons are troncated. The 2 translations :
- Save indexing options, erase index and rebuild the index ยป Enregistrer les options d’indexation, supprimer l’index et reconstruire l’index
- Continue indexing ยป Continuer l’indexation
Tell me if you would like to send you my work ๐
PS : is this the repository I could fork and submit pull requests ?
https://github.com/wp-plugins/relevanssiForum: Plugins
In reply to: [Relevanssi - A Better Search] French translation updateFor the 3.4.2 version, about half of the strings are not translated in the option page. I already began with the translation job, if you want me to send it to you, please tell me how. You can ask your fr translator to proofread it. ๐
Forum: Plugins
In reply to: [Polylang] WP admin Translation onlyOK, I found a Plugin to do this: English WordPress Admin.
Lightweight and efficient (takes also in account custom post types).
Only switches between native language (for me fr) and english.Forum: Plugins
In reply to: [Polylang] user capabilities changed with polylangWell, then I will let the contributors translate the posts, as I said before, this is not completely nonsens. ๐
Thanks.Forum: Plugins
In reply to: [Caldera Forms - More Than Contact Forms] Caldera forms for editors ?Yes, create and use.
Thanks.Forum: Plugins
In reply to: [Polylang] Changing "de" and "en" default cat not taken in accountYou didn’t fix this in the development version in svn. I didn’t see anything in github either. Could you please apply it?
ThanksForum: Plugins
In reply to: [Polylang] user capabilities changed with polylangOk, that makes sens. Is there a way to avoid this behaviour (the post created by admins or editors shouldn’t be avalable for translation for lower capabilities users) ?
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Using Gcal v3 API on localhostI finally managed to get it work on my local installation by using virtual hosts on wamp. This way, you don’t have an address like this
http://localhost/domainbut something like thishttp://domain.
How to create virtualhosts on wampserver 2.5: http://forum.wampserver.com/read.php?2,127757
I hope this can be helpfull ๐Forum: Plugins
In reply to: [Polylang] Changing "de" and "en" default cat not taken in accountHey! The backslashes in the url!
That’s why your test on this line doesn’t work :elseif (false != strpos($traces[3]['file'], 'wp-admin/edit-tags.php') || false != strpos($traces[3]['file'], 'wp-admin/options-writing.php')) { return $this->model->get_term($value, $this->pref_lang); }Maybe you should try to by check just the end of the string (options-writing.php) ๐
[edit]
Yes, that’s it! Replace the code on top by this one:elseif (false != strpos($traces[3]['file'], 'edit-tags.php') || false != strpos($traces[3]['file'], 'options-writing.php')) { return $this->model->get_term($value, $this->pref_lang); }I tested it, and it worke! It also solved the problem I had in the categories listing page where the defauklt category wasn’t displayed correctly.