infohowdy
Forum Replies Created
-
Solved,
Hide My WP Ghost was the problemthankyou
thankyou very much I doesn’t work with the plugin “WP Hide & Security Enhancer”
I thankyou very much !
Thanks WFBrian
Forum: Themes and Templates
In reply to: stupid question about menuthanks ??
Forum: Fixing WordPress
In reply to: My site is hackedThankyou guys
Thanks for reply wpsmort, I disabled all plugins and I found the one that cause error.
Forum: Plugins
In reply to: [Firelight Lightbox] How add CallbackThankyou very much!
Forum: Plugins
In reply to: [Firelight Lightbox] How add CallbackSure ! I thankyou very much !
This is the link https://urlgone.com/2d7e05/I’m sorry for short url but is a test page (will expire on 2016)
this is the code from line 369 to 386
'IMG' => array( 'title' => __('Images','easy-fancybox'), 'input' => 'multiple', 'options' => array( 'intro' => array ( 'hide' => true, 'description' => __('To make images open in an overlay, add their extension to the Autodetect field or use the class "fancybox" for its link. Clear field to switch off all autodetection.','easy-fancybox') . '<br />' ), /*my option*/ 'onClosed' => array ( 'noquotes' => true, 'default' => 'function() { $("body").append("<div id=\"thanks\" style=\"position:absolute;z-index:99999;background:red;color:black;top:10px;left:10px;padding:5px;\">Thanks for watching !</div>"); }' ), /*end my option*/ 'tag' => array ( 'hide' => true, 'default' => 'a.fancybox, area.fancybox, li.fancybox a:not(li.nofancybox a)' ),
Forum: Plugins
In reply to: [Firelight Lightbox] How add CallbackHello, thankyou!
I tried to add options around line 370 in easy-fancybox-class.php but seems doesn’t work
This is the code I wrong somethings ?'IMG' => array( 'title' => __('Images','easy-fancybox'), 'input' => 'multiple', 'options' => array( 'intro' => array ( 'hide' => true, 'description' => __('To make images open in an overlay, add their extension to the Autodetect field or use the class "fancybox" for its link. Clear field to switch off all autodetection.','easy-fancybox') . '<br />' ), /*my option*/ 'onClosed' => array ( 'noquotes' => true, 'default' => 'function() { $("body").append("<div id=\"thanks\" style=\"position:absolute;z-index:99999;background:red;color:black;top:10px;left:10px;padding:5px;\">Thanks for watching !</div>"); }' ), /*end my option*/
Forum: Plugins
In reply to: [Firelight Lightbox] How add CallbackHello RavanH, after close I need to add/remove class or show something like this:
afterClose: function(){$('body').append('<div id="thanks" style="position:absolute;z-index:99999;background:red;color:black;top:10px;left:10px;padding:5px;">Thanks for watching !</div>');}
I try to add the code before closing fb_opts (around line 80)in easy-fancybox-class.php
echo ', \'afterClose\': function(){$(\'body\').append(\'<div id="thanks" style="position:absolute;z-index:99999;background:red;color:black;top:10px;left:10px;padding:5px;">Thanks for watching !</div>\');}'; echo ' }; var easy_fancybox_handler = function(){';
Forum: Plugins
In reply to: [Firelight Lightbox] How can I vary the image border colors?Hello, you can vary the border color by stylesheet in your theme, for sample in your test page the classes assigned to the body element are “home page page-id-276 page-template page-template-page-notitle-php custom-background mobilenav”, pick one and add in your style
body.page-id-276 #fancybox-content{
border-color:yellow!important;
}Forum: Plugins
In reply to: [Firelight Lightbox] How add CallbackI need to remove/add a class after close fancybox
Forum: Plugins
In reply to: [WPJaipho Mobile Gallery] exclude featured picturethe only way is to exclude featured thumb in gallery query.
The file “MedialLibraryTemplate.php” library->Jph->Wp from line 20$attachments = array_values( get_children( array( 'post_parent' => $post->post_parent, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'menu_order ID', 'exclude' => get_post_thumbnail_id( $post->post_parent ) ) ) );