eiland
Forum Replies Created
-
Forum: Plugins
In reply to: [Search Exclude] Unwanted debug info in error log after update 2.6.2same here, thanks for finding the culprit
Forum: Plugins
In reply to: [Secondary Title] secondary title shown in the_titleNo i’m fine.
Forum: Plugins
In reply to: [Secondary Title] secondary title shown in the_titleHi, I tried it, and it seems to work, although I’m a bit confused, but I think that was maybe of the previous logic which didn’t make sense. Now I just have a huge list of IDs and thinking what to do with that…
Forum: Plugins
In reply to: [Secondary Title] secondary title shown in the_titlethe little question marks at the settings page point to https://docs.kolja-nolte.com/secondary-title//usage/settings.html#_1-auto-show
I’m using
get_secondary_title()so you mean that i shouldn’t rely on excluding-by-omitting-id, and turn off the auto-show?Forum: Plugins
In reply to: [Open Graph and Twitter Card Tags] BUG: performance drain on non-root installHi, I have the latest version of WP.
Its not a support quesiton, as I have resolved it myself through theDo not get image size-checkbox, but it seems to me you’d like to fix it in an upcoming version.Forum: Plugins
In reply to: [WP Super Cache] Sitemap with CDN-urls?Hm, strange because i get a 404 at
https://www.google.com/amp/s/www.blog.com/clean-url-pageid%3fampGoogle says www-blog-com.cdn.ampproject.org could not be found. Please check the name and try again
I guess you’re right its not the Supercache cdn, but google’s CDN, but still i was surprised….Forum: Themes and Templates
In reply to: [Twenty Twelve] Css sticky doesnt work in twenty twelveto fix my own issue, added the following to my child-theme’s style.css:
@media screen and (min-width: 600px)
{
.site
{
overflow: clip;
}
}Forum: Plugins
In reply to: [Open Graph and Twitter Card Tags] totally disable plugin on certain pagesOk nailed it:
<?php
/* Plugin Name: zzz-disable-opengraph */
if( multi_strpos($_SERVER[ 'SCRIPT_FILENAME'], array('myscript.php', 'domain.com/folder/')) !== false ) {
add_filter("fb_og_enabled", function($enabled){ enabled = false; }, 10, 1 );
}
/**
* Multi string position detection. Returns the first position of $check found in
* $str or an associative array of all found positions if $getResults is enabled.
*
* Always returns boolean false if no matches are found.
*
* @param string $str The string to search
* @param string|array $check String literal / array of strings to check
* @param boolean $getResults Return associative array of positions?
* @return boolean|int|array False if no matches, int|array otherwise
*/
function multi_strpos($string, $check, $getResults = false)
{
$result = array();
$check = (array) $check;
foreach ($check as $s)
{
$pos = strpos($string, $s);
if ($pos !== false)
{
if ($getResults)
{
$result[$s] = $pos;
}
else
{
return $pos;
}
}
}
return empty($result) ? false : $result;Forum: Plugins
In reply to: [Shariff Wrapper] Feature Request: Add Support for Bluesky Media Button@harmr seems to be working fine. Curious if this will integrate with subsequent updates…
Forum: Plugins
In reply to: [WebFinger] htaccess rules for blog hosted in subfolderThanks, looking forward!
Yes, here too.
Forum: Plugins
In reply to: [Enable Mastodon Apps] Open basedir restrictionForum: Plugins
In reply to: [Enable Mastodon Apps] Open basedir restrictionit comes and goes with enabling and disabling the plugin?
Forum: Plugins
In reply to: [Enable Mastodon Apps] Open basedir restrictionwhen i turn off error eeporting, it works, but when i turn it on, my error log is drowned….
Forum: Plugins
In reply to: [Enable Mastodon Apps] Open basedir restrictionit actually triggers this error site wide.