creamille
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple User Listing] include / excludeOk, my bad! I need this feature to work now, so I leave it like this for now and when the next update is available, I will use this shortcode. Thanks for your prompt answer 🙂
Forum: Plugins
In reply to: [Simple User Listing] include / excludeHi!
Since I’m not a web developper, I don’t really know if it’s correct, but it worked for me.
I had a list of registered users (mainly contributors, but also 3 admins including me) and I didn’t want to appear in this list. So the only solution for me was to only exclude my profile (ID), not a type of users.
In the simple-user-listing.php l.137, I added :
'exclude' => array( 1 ),$args = array( 'query_id' => 'simple_user_listing', 'exclude' => array( 1 ), 'offset' => $offset, 'number' => $number, 'orderby' => $orderby, 'order' => $order, 'role' => $role );I was the first user registered (“1”) but you could easily replace this ID by finding yours in your SQL file.
It seems to work pretty well, so maybe it could help…Forum: Plugins
In reply to: [WP RSS Multi Importer] Featured image only – size issueI’ve just contacted you with your form contact on http://www.allenweiss.com/contact/
Awesome Sfradel! Thanks a lot 🙂
Thanks sfradel for your fix! Is it normal that the Snippet Preview in the admin doesn’t seem to take into account the qtranslate shortcode?
Thanks in advance!
Forum: Plugins
In reply to: [qTranslate] [Plugin: qTranslate] Problems displaying in the editorAnd with this, you can use the filter mce_css, that was my point 🙂
Forum: Plugins
In reply to: [qTranslate] [Plugin: qTranslate] Problems displaying in the editorAfter many hours, and many tries, this seems to work for me!
In qtranslate_wphacks.php, find :
$content_append .="<script type=\"text/javascript\">\n// <![CDATA[\n"; // disable old editor here if editor is to be initialized if($init_editor) $content_append .= $q_config['js']['qtrans_disable_old_editor']; $content_append .="function qtrans_editorInit2() {\n";And comment the line:
//if($init_editor) $content_append .= $q_config['js']['qtrans_disable_old_editor'];I made some others changes but I think this one could be sufficient 🙂
Let me know,
Camille