Milan Dini?
Forum Replies Created
-
Forum: Plugins
In reply to: [Facebook Comments] How to change Cyrillic characters to Latin in your pluginI don’t know how this specific plugin works, but I think that can’t be done because Facebook comments are displayed using simple iframe which load strings from Facebook and they are using Cyrillic script.
Also don’t know why “Коментар” just before textarea wasn’t transliterated, what plugin are you using?
Forum: Plugins
In reply to: [bbPress Digest] Didn't send my digestYes, it should look like that. Check your time at its settings and your profile page.
Forum: Plugins
In reply to: [bbPress Digest] Didn't send my digestThat sentence is for people where pseudo cron for any reason doesn’t run, but they should notice on other ways also.
I don’t know why it is not running, I need to investigate myself first.
Forum: Plugins
In reply to: [Nav Menu Images] Vertical AlignmentI visited that site but can’t see what you are trying to achieve and don’t really understand if that is CSS issue or it can be done in PHP.
Forum: Plugins
In reply to: [Nav Menu Images] Link missing in 4.3 customizerThank you for your report. I am aware of this and have actually investigated a bit and changing that will not be easy because of the way WordPress works and (dis)allow customization.
Forum: Plugins
In reply to: [bbPress Digest] UPDATE?It’s true that this didn’t get update recently, but when I tested it some time ago it worked with no problem.
I can see to update it with latest versions of WordPress and bbPress but no estimation when exactly.
Forum: Plugins
In reply to: [Nav Menu Images] Page Title Text Over Image?Here is one solution, you might want to try search for “text over image”.
/* Force our nav menu item filter */ add_filter( 'nmi_filter_menu_item_content', '__return_false' ); /** * Filter menu item text. */ function md_menu_item_content( $content, $item_id ) { if ( has_post_thumbnail( $item_id ) ) { $content = get_the_post_thumbnail( $item_id, 'sidebar-thumb', array( 'alt' => trim( strip_tags( $content ) ), 'title' => trim( strip_tags( $content ) ) ) ); if ( $description = get_post_field( 'post_content', $item_id ) ) $content .= '<span>' . $description . '</span>'; } return $content; } /** * Register menu item filter. */ function md_menu_item_register_filter( $item_classes, $item, $args ) { if ( has_post_thumbnail( $item->ID ) ) add_filter( 'the_title', 'md_menu_item_content', 15, 2 ); return $item_classes; } add_filter( 'nav_menu_css_class', 'md_menu_item_register_filter', 15, 3 );
.sidebar-vertical a {position:relative;display:block;color:#21a6df;font:bold 16px/1.2 arial;} .sidebar-vertical a img{vertical-align:bottom;} .sidebar-vertical a > span{position:absolute;left:10px;bottom:15px;z-index:2;max-width:190px;padding:10px;background:#fff;}
Forum: Plugins
In reply to: [Nav Menu Images] Page Title Text Over Image?You mean text over image? This is pure CSS hack, I used that somewhere but can’t remember where right now. Will reply when I find.
(Lovely design on you site, BTW)
Forum: Plugins
In reply to: [Nav Menu Images] menu image change when actice/currentThis has been added in version 3.0.
Forum: Plugins
In reply to: [Nav Menu Images] Hover image an activeThis has been added in version 3.0.
Forum: Plugins
In reply to: [Nav Menu Images] 500 Internal server errorThis is probably not relevant anymore but for those that get to this thread, this is server issue, not with this plugin.
Forum: Plugins
In reply to: [Nav Menu Images] Can be accessed through menus shortcodesAlthough I didn’t try it, I don’t see reason why not.
Forum: Plugins
In reply to: [Nav Menu Images] Removing brderAlthough this is probably not relevant anymore, in general you either need to create style for all menu items or for specific menu item by giving it a specific class on edit screen.
Forum: Plugins
In reply to: [Nav Menu Images] Extern linksI don’t see how is this relevant to this plugin, it doesn’t affect links, just display.
Forum: Plugins
In reply to: [Nav Menu Images] Nav Menu Images not appearing in IE 8I don’t see why this would happen other than theme having something that causes this. You can send me links to your sites privately so I can see whats going on.