eldenroot
Forum Replies Created
-
Forum: Plugins
In reply to: [Hyper Cache] Is it compatible with WP 3.6?closed
Forum: Plugins
In reply to: [Hyper Cache] Exclude page URL from cachingI get it! Thank you! 😉
I was confused…
Forum: Plugins
In reply to: [Hyper Cache] Exclude page URL from cachingThank you. So I dont have to add these symbols ” ????
for example:
“/talks” and “/media”Forum: Plugins
In reply to: Show full name in comments with nickname togetherOK, I found this – it shows first name and first letter of last name… please can you edit this and add there the nickname and show full name instead of first letter?
/* Plugin Name: Substitute Displayname Version: 0.1 Description: Substitutes a default Display name for new registrants and existing users. Author: Author name */ ?> /* Version check */ global $wp_version; $exit_msg='Substitute Author requires WordPress 2.5 or newer. Please update!'; if (version_compare($wp_version,"2.5","<")) { exit ($exit_msg); } function sd_new_login_filter ($login) { /* Don't do anything to login, just see if already in database.*/ global $wpdb, $sd_is_new_login; $id = $wpdb->get_var("SELECT ID FROM $wpdb->users WHERE user_login = '$login'"); $sd_is_new_login = (isset($id)) ? false : true; return $login; } function sd_substitute_displayname_filter ($display_name) { global $sd_is_new_login; if ($sd_is_new_login){ $first_letter = substr($_POST['last_name'], 0, 1); $display_name = $_POST['first_name']." ".$first_letter; } return $display_name; } add_filter('pre_user_login', 'sd_new_login_filter'); add_filter('pre_user_display_name', 'sd_substitute_displayname_filter'); add_action ('admin_head','make_display_name_f_name_last_name'); function make_display_name_f_name_last_name(){ $users = get_users(array('fields'=>'all')); foreach($users as $user){ $user = get_userdata($user->ID); $firstletter = substr($user->last_name, 0, 1); $display_name = $user->first_name . " " . $firstletter; if($display_name!=' ') wp_update_user( array ('ID' => $user->ID, 'display_name' => $display_name) ); else wp_update_user( array ('ID' => $user->ID, 'display_name' => $user->display_login) ); if($user->display_name == '') wp_update_user( array ('ID' => $user->ID, 'display_name' => $user->display_login) ); } } ?Forum: Plugins
In reply to: [MP6] Problem with CheckboxesConfirmed… it is fixed! Thank you!
Forum: Plugins
In reply to: [Highlight Search Terms] IS it compatible with Google search plugin?I just tested it… I think it is working but pictures and other stuff is not displayed properly…
anyway thank you
yes, me the same problem – everything was OK but 3 days ago this problem is here
Same problem – it was working good but after some time it will be broken and no sitemap…
please help me
Forum: Plugins
In reply to: [Firelight Lightbox] not working with ajax loading pagesThank you. I think that the plugin is not updated for a long time… I will contact the developer.
BTW – I sent you an email, please reply me _)
Forum: Plugins
In reply to: [Firelight Lightbox] Clean up the "support" section+1 🙂 and add a search for the support forum
Forum: Plugins
In reply to: [Firelight Lightbox] Clean up the "support" sectionOK, but developer of this plugin can closed them – myke them resolved at least – full stop 🙂
Forum: Plugins
In reply to: [Firelight Lightbox] Fancy Box overlay close-out not working/showingcontact developer from WooCommerce
Forum: Plugins
In reply to: [Firelight Lightbox] YouTube problem (Quality switch)New version – problem fixed! Thank you
Forum: Plugins
In reply to: [Firelight Lightbox] Since WordPress 3.6, various snags & issuesTheme or plugin related – just try it with all plugins disabled or on fresh instal of wordpress
Forum: Plugins
In reply to: [Firelight Lightbox] not working with ajax loading pages@ravanh – OK, infinite scroll plugin was deleted from my webpage – many problems, lags and content issues…
But I would like to use your plugin with this:
http://wordpress.org/plugins/read-more-right-here/There is a problem, that you click on the read more, the content is fully loaded but after you click on the image/video Fancy box is not loaded and it is opened in the new window/tab