Zeb
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Custom field content!It is possible to retrieve dynamic select list values in a select drop down or check-boxes through Custom Field Template plugin but the plugin has very limited documentation which makes it difficult to work with.
I appreciate if anyone could direct med how to solve this issue with this ACF plugin.
Forum: Plugins
In reply to: [Custom Field Template] [Plugin: Custom Field Template] Pre-filled text-areasHave you tried with default value:
default = type anything here….
If you try it in the Admin CSS of the plugins page, one of the last lines say “checkbox”.
If you just add{float:left}
you will nearly get it.
Unfortunately, when I tried it, text and titles overlapped. If you make it work, please let me know.Forum: Plugins
In reply to: [Custom Field Template] [Plugin: Custom Field Template] Dynamic select listI just visited this topic and tried the trick which seem to work like a charm and I thank you for sharing that ??
However, I’ve tried to replace the post type with taxonomy in the following example to pull out taxonomy values for “languages” to dynamically be used in a Select field but it does not pull the values. I appreciate any directions in case anyone would help me out with this problem.
global $wpdb; $items = $wpdb->get_results("SELECT ID, term_title FROM $wpdb->term where term= 'sprak' and post_status = 'publish' order by the_term_title ASC"); $i = 0; foreach ($items as $item) { $values[$i] = $item->ID; $valueLabel[$i] = $item->the_term_title; $i++; }
Forum: Plugins
In reply to: [SlimStat Analytics] Trouble with image plugins Fancybox, Colorbox, etcThanks Camu,
I appreciate your reply. I’ll try that.
Thanks again
Zeb
Forum: Plugins
In reply to: [SlimStat Analytics] Trouble with image plugins Fancybox, Colorbox, etcThat was unfortunate!
By the way, you talked about
In this latter case, you may use a SQL query to add the ‘noslimstat’ code to all of them automatically.
Do you have any suggestion what should I write in the SQL query to make that work? and, do I need to do that often regularly?
I appreciate your feedback.
Forum: Plugins
In reply to: [SlimStat Analytics] Trouble with image plugins Fancybox, Colorbox, etcBy the way, I’ve just got an idea.
We know that each image is a file type, indicated by .jpg .png etc. Even if there is a link, the file type is indicated in the end of the link by .jpg .png etc.
Is there any chance that the plugin could recognize these file types and correct the problem through
class='noslimstat'
, exclude them or any other way? Or maybe by filtering some addresses like youtube.com, etc.?Forum: Plugins
In reply to: [SlimStat Analytics] Trouble with image plugins Fancybox, Colorbox, etcSorry if I ask this stupid question.
If any user sets up a gallery with several images, do you mean that I have to get into the gallery, find each image or group of images and addclass='noslimstat'
to that post/page? Or, maybe, there is somewhere in the template or wp files I shoud do that.Thanks for your help!
Forum: Fixing WordPress
In reply to: [User Role Editor] sub-page capabilityGreat, then we’ll see that feature soon ??
cheers
Forum: Fixing WordPress
In reply to: [User Role Editor] sub-page capabilityAbsolutely, because it seems that it creates doubts about the plugin and some users think that it’s some kind of problem with the plugin itself. See this thread.
Turning on/off is a very good idea if you could place it on the menu beside the “show capability” check box where nobody could miss it. Just one more tiny thing… If you could place a “?” that would display a tool-tip on hover with that deprecated info you mentioned, would be very helpful.
cheers
Forum: Fixing WordPress
In reply to: [User Role Editor] sub-page capabilityOf course, I have read that. Just wondered if they were functional through the plugin because the check boxes are selectable.
ThanksForum: Plugins
In reply to: [SlimStat Analytics] Trouble with image plugins Fancybox, Colorbox, etcOkay,
It seems that it’s getting complicated though I’m not so much familiar with SQL queries. Of course, I know that there is an input for queries but do not have any idea what to write there.Another question remains also considering future images and if I have to do that often.
hmmm…! Wondering what can I do?Forum: Plugins
In reply to: [User Role Editor] [Plugin: User Role Editor] Media Library Permissions@ sonic119
Use the following snippet in your function.php instead. It will restrict users to view only media library items they upload. They will still see the total number of files that are uploaded but will not be able to view them even if they type in the attachment_id.
function my_files_only( $wp_query ) { if ( strpos( $_SERVER[ 'REQUEST_URI' ], '/wp-admin/upload.php' ) !== false ) { if ( !current_user_can( 'level_5' ) ) { global $current_user; $wp_query->set( 'author', $current_user->id ); } } } add_filter('parse_query', 'my_files_only' );
Forum: Plugins
In reply to: [SlimStat Analytics] Trouble with image plugins Fancybox, Colorbox, etcThanks for your fast reply ??
Can this issue be solved if there is an option provided in the plugins admin panel that allows the admin to select through a checkbox if there is a conflicting plugin, and if there is, allow the plugin handled the links in another way?Forum: Plugins
In reply to: [User Role Editor] Allowing users to edit others' profilesNote: User Levels were introduced in WordPress 1.5, they were replaced by Roles and Capabilities in WordPress 2.0, and were finaly deprecated in WordPress 3.0.
Do not publish your members email addresses!!!!
They will receive lots of spam!