maiden_taiwan
Forum Replies Created
-
Forum: Plugins
In reply to: [Link Library] “No links found” and no resultsI am searching for a single word in the title. For example, one link has a Title of “2016-01-01:The Predictive Brain” and I search for the word “Brain”. Here are screenshots:
- https://blazemonger.com/links/1.png (list of links)
- https://blazemonger.com/links/2.png (after searching for Brain)
Forum: Plugins
In reply to: [Reusable Blocks Extended] On admin page, “Used in” column misses usesThank you. Thinking about actual use, as a WordPress admin, the most important things I would want to know about a block are:
- Is the block used at all? (So I can delete it if unused.)
- Where do the uses occur? (So I can view or edit them.)
The actual count of uses does not really serve a business purpose, as far as I can see.
So perhaps the ideal would be a column named “Used in…” that displays a list of links to edit each of the posts/widgets/etc where the uses occur. That would satisfy both cases (1) and (2) above. If the list of uses is too long, there could be a “More…” link that leads to another page to display links.
Just a thought. Thanks again for a great plugin.
Forum: Plugins
In reply to: [Reusable Blocks Extended] On admin page, “Used in” column misses usesOtherwise, GREAT PLUGIN!!!!
Thank you!!
Thank you very much for such a quick response!
Details: I simply added “AuthConfig” after the existing “FileInfo”.
<Directory "/var/www/html/example.com/public_html"> AllowOverride FileInfo AuthConfig </Directory>
That fixed the problem. Thank you very much.
It’s Apache/2.4.18 (Ubuntu).
The virtual host for this site is configured like this, on top of a stock Ubuntu 16.04 LTS apache2.conf.
<VirtualHost *:443> ServerName example.com ServerAdmin [email protected] SSLEngine On SSLCertificateFile /usr/local/etc/ssl/certs/example.com.crt SSLCertificateKeyFile /usr/local/etc/ssl/private/example.com.key SSLCACertificateFile /etc/ssl/certs/ca-certificates.crt DocumentRoot /var/www/html/example.com/public_html/ ErrorLog /var/www/html/example.com/log/error.log CustomLog /var/www/html/example.com/log/access.log combined </VirtualHost> <VirtualHost *:80> ServerName example.com ServerAlias www.example.com ServerAlias *.example.com ServerAlias example.net ServerAlias *.example.net ServerAlias example.org ServerAlias *.example.org ServerAlias example2.com ServerAlias *.example2.com ServerAlias example2.net ServerAlias *.example2.net ServerAlias example2.org ServerAlias *.example2.org RedirectPermanent / https://example.com/ </VirtualHost> <VirtualHost *:443> ServerName www.example.com ServerAlias *.example.com ServerAlias example.net ServerAlias *.example.net ServerAlias example.org ServerAlias *.example.org ServerAlias example2.com ServerAlias *.example2.com ServerAlias example2.net ServerAlias *.example2.net ServerAlias example2.org ServerAlias *.example2.org RedirectPermanent / https://example.com/ </VirtualHost> <Directory "/var/www/html/example.com/public_html"> AllowOverride FileInfo </Directory>
Forum: Plugins
In reply to: [Dropdown multisite selector] Bug: DMS sends you to “about:blank”Note: This is in the latest version of Chrome on Linux.
Forum: Plugins
In reply to: [Dropdown multisite selector] Suggestion: reset to initial stateI just tried this code, and it worked for me:
/* Reset the DMS dropdown to initial state on Back button */ (function( $ ){ $(window).bind("pageshow", function() { $('.dms-select').val(''); }); })(jQuery);
Forum: Plugins
In reply to: [Dropdown multisite selector] 0.6.1 broken for WordPress 4.7.1The new version, 0.6.3, appears to work fine. Thank you very much for your prompt solution.
Forum: Plugins
In reply to: [Dropdown multisite selector] 0.6.1 broken for WordPress 4.7.1Here are the errors in the logs:
PHP Warning: include_once(<path>/wp-content/plugins/dropdown-multisite-selector/functions/wordpress.php): failed to open stream: No such file or directory in <path>/wp-content/plugins/dropdown-multisite-selector/dropdown-multisite-selector.php on line 39 PHP Warning: include_once(): Failed opening '<path>/wp-content/plugins/dropdown-multisite-selector/functions/wordpress.php' for inclusion (include_path='.:/usr/share/php') in <path>/wp-content/plugins/dropdown-multisite-selector/dropdown-multisite-selector.php on line 39 PHP Warning: include_once(<path>/wp-content/plugins/dropdown-multisite-selector/functions/functions.php): failed to open stream: No such file or directory in <path>/wp-content/plugins/dropdown-multisite-selector/dropdown-multisite-selector.php on line 40 PHP Warning: include_once(): Failed opening '<path>/wp-content/plugins/dropdown-multisite-selector/functions/functions.php' for inclusion (include_path='.:/usr/share/php') in <path>/wp-content/plugins/dropdown-multisite-selector/dropdown-multisite-selector.php on line 40 PHP Warning: include_once(<path>/wp-content/plugins/dropdown-multisite-selector/functions/ajax.php): failed to open stream: No such file or directory in <path>/wp-content/plugins/dropdown-multisite-selector/dropdown-multisite-selector.php on line 41 PHP Warning: include_once(): Failed opening '<path>/wp-content/plugins/dropdown-multisite-selector/functions/ajax.php' for inclusion (include_path='.:/usr/share/php') in <path>/wp-content/plugins/dropdown-multisite-selector/dropdown-multisite-selector.php on line 41 PHP Warning: include_once(<path>/wp-content/plugins/dropdown-multisite-selector/functions/widgets.php): failed to open stream: No such file or directory in <path>/wp-content/plugins/dropdown-multisite-selector/dropdown-multisite-selector.php on line 42
Forum: Plugins
In reply to: Simple widget to display picture, a link, and text?Answering my own question:
Links Shortcode
https://www.ads-software.com/plugins/links-shortcode/By creating a flexible “template” in this plugin, and then adding my own CSS and JavaScript, I was able to turn WordPress “Links” into attractive, automated lists of links.