almendron
Forum Replies Created
-
Forum: Plugins
In reply to: [HTML Editor Syntax Highlighter] Vertical scrollbarI’ve cleared my browser cache and it works.
if ( version_compare( phpversion(), '5.3.0', '<' ) ) { $safe_mode = ini_get( 'safe_mode' ); } else { $safe_mode = false; }IF PHP version < 5.3.0 THEN
apply “safe_mode”
ELSE
Does not apply “safe mode”
ENDIFPlugin is compatible with PHP7. The alarm detected by the plugin is a false positive.
Forum: Plugins
In reply to: [Broken Link Checker] Internal Anchor Links Shown as 404/BrokenWhich Links To Check > Exclusion List > #group
Forum: Plugins
In reply to: [Broken Link Checker] Version 1.11.4 is brokenPHP 5.3.3-7 is very old. Update.
Forum: Plugins
In reply to: [Broken Link Checker] Version 1.11.4 is brokenPHP version ?
PHP 7.0.21. Debug ON and no problem.
Forum: Plugins
In reply to: [Broken Link Checker] PHP 7 WarningsFILE: /../wp-content/plugins/broken-link-checker/includes/utility-class.php
Line 28: Change
function blcTablePrinter($core){for
function __construct($core){- This reply was modified 8 years, 11 months ago by almendron.
Forum: Plugins
In reply to: [HTML Editor Syntax Highlighter] Plugin IncompatibilityFirst tests on local server: the new version is compatible with the plugin “Use Google Libraries”.
With the previous version, the plugin did not work if the plugin “Use Google Libraries” was active.
You can close the thread on github.com
Thank you very much
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Publicize Outage persistsI have reactivated the plugin and problem solved.
Forum: Plugins
In reply to: [Firelight Lightbox] iframe: width and heightThank you very much
Forum: Plugins
In reply to: [Advanced Excerpt] image captions showing in excerptForum: Plugins
In reply to: [Advanced Excerpt] Issue with captionOption “Remove shortcodes from the excerpt. (recommended)” does not work.
Temporary solution: modify file class/advanced-excerpt.php
$text = get_the_content( '' ); $text = apply_filters('the_content', $text);change
$text = get_the_content( '' ); if(1 == $no_shortcode) $text = strip_shortcodes($text); $text = apply_filters('the_content', $text);Forum: Plugins
In reply to: [Broken Link Checker] PHP 7 WarningYou are wrong. I use PHP 7 with that plugin and perfect
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] SharingThanks for the info.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] SharingI found the problem in the file “sharing-service.php”
V 4.5 = it works
if ( !is_array( $options ) ) $options = array( 'global' => $this->get_global_options() );V 4.6 = bug “Add a new service”
if ( ! is_array( $options ) || ! isset( $options['button_style'], $options['global'] ) ) { $options = array( 'global' => $this->get_global_options() ); }Forum: Plugins
In reply to: [Broken Link Checker] Unlinking not workingVersion 1.11.2: the storage engine of the tables (blc_filters, blc_links, blc_instances and blc_synch) must be MyIsam; with others storage engines the plugin doesn’t work correctly.