slimandslam
Forum Replies Created
-
Forum: Plugins
In reply to: [FeedWordPress] No Title In Google News FeedResolved as noted above.
Forum: Plugins
In reply to: [FeedWordPress] No Title In Google News FeedActually, this was my error. I wasn’t looking closely at the Apache error logs. The DOM PHP extension was missing on this new Apache install. All is well.
Here’s the answer.
Edit the file:
./template/bootstrap/css/bootstrap.min.cssFind this line:
.modal-backdrop,.modal-backdrop.fade.in{opacity:0.8;filter:alpha(opacity=80);}IE uses “opacity=80” while all other browsers use “opacity:0.8”.
Lower the values to make the image brighter.
It would be nice if one could do a keyword search of youtube from within your plugin e.g. here:
http://mysite.com/wp-admin/admin.php?page=cvg-gallery-add
And then you present them with a list of youtube results and then the admin can pick and choose which videos are added to the WP site (and the category).
SS
Forum: Plugins
In reply to: [User Role Editor] [Plugin: User Role Editor] Can't Add New CapabilityThanks!
J
Forum: Plugins
In reply to: [User Role Editor] [Plugin: User Role Editor] Can't Add New CapabilityHi Vladimir,
Not allowing spaces makes perfect sense.
However, as you can see from the WordPress add_cap() function,
custom capabilities in WordPress are just strings:http://codex.ww.wp.xz.cn/Function_Reference/add_cap
So, it’s reasonable to allow any combination of numbers, upper-case letters, and lower-case letters.
Please update your plugin accordingly.
Thanks,
J
Forum: Plugins
In reply to: [User Role Editor] [Plugin: User Role Editor] Can't Add New CapabilityHi Vladimir,
I don’t understand. A custom capability identifier is just a string, not a
programming language identifier, right? I can create the custom capability string
“12month” and store it just like any other string. Why would it need to
be a programming language identifier?Jason
I am also not getting this to work. I tried adding a custom function under the “Extra Calls” tab like this:
jQuery(“.openf”).fancybox({
‘width’ : ‘75%’,
‘height’ : ‘75%’,
‘autoScale’ : false,
‘transitionIn’ : ‘none’,
‘transitionOut’ : ‘none’,
‘type’ : ‘iframe’
});And then adding the class to links like this: <a class=”openf”….
But clicking on the links has no effect. It is ignored.Please show how to do this…..