raufaser
Forum Replies Created
-
Forum: Plugins
In reply to: [Social Slider Feed] Bug: Hashtags not working for german umlautsThis change will solve it…
file:
instagram-slider-widget/includes/class-wis_instagram_slider.phpLine 776
$caption = preg_replace( '/\#([\p{L}\p{N}]+)/iu', ' <a href="https://www.instagram.com/explore/tags/$1/" rel="nofollow" target="_blank">$0</a> ', $caption);
Line 809
$caption = preg_replace( '/\#([\p{L}\p{N}]+)/iu', ' <a href="https://www.instagram.com/explore/tags/$1/" rel="nofollow" target="_blank">$0</a> ', $caption);
Forum: Plugins
In reply to: [Personal Fundraiser] Bug in cause displayOutput example:
https://german-rifle-association.de/campaign/fundraising-anschreiben-an-alle-eu-kandidaten-in-deutschland/(without using wpautop all the text is one paragraph wich look terrible!)
Forum: Plugins
In reply to: [Youtube to WP Post] [Plugin: Youtube to WP Post] No Embeded VideoOn line 47 add:
'post_content' => '<p>[youtube ' . $youTubeURL . ']</p><p>' . $postContent . '</p>',
That makes ist perfect and it uses WP integrated shortcodes… ??
Forum: Plugins
In reply to: [article2pdf] [Plugin: article2pdf] Multisite setup is missing images.It is possible, but not a very good solution, because on some servers the php option is active that php cant read files from an url due to security reasons. If I’ll find the time I will add an option for reading images from the image url and not from the filesystem.
Forum: Plugins
In reply to: [WoW-Character-Display] [Plugin: WoW-Character-Display] Armory movedIf I’ll have time, I will release a new version soon. Sorry but in the last 2 years many private stress blocked me. I will see what I can do.
Forum: Plugins
In reply to: [Plugin: WoW-Character-Display] WoW Character Display in custom themeNo, not “echo = wowcd_shortcode( $atts );”
use “echo wowcd_shortcode( $atts );”
misstyped it…
Forum: Plugins
In reply to: [Plugin: Twitter for WordPress Extended] Doesn’t update with wp-super cacheThats a normal behaviour as far as I know. If you use a cache system all content get cached also the output of your plugins. Sorry I see no solution for the problem.
Forum: Plugins
In reply to: [Plugin: WoW-Character-Display] WoW Character Display in custom themeHere is a solution:
In your theme use the following php code:
<?php // Output character sheet $atts = array( 'character' => 'Charactername', 'guild' => '' ); echo = wowcd_shortcode( $atts ); // Output guild sheet $atts = array( 'character' => '', 'guild' => 'Guildname' ); echo = wowcd_shortcode( $atts ); ?>
Should work (but I have not tested it…)
cu,
MarcForum: Plugins
In reply to: [Plugin: PDF24 Posts to PDF] It’s OKThe plugin article2pdf is another alternative.
Forum: Plugins
In reply to: plugin article2pdf error help!Yes I can: Search for “getimagesize” in the article2pdf.php – a few lines down is the image added to the page.
Forum: Plugins
In reply to: plugin article2pdf error help!No it’s not an issue of the file suffix in uppercase letter, the problem is the path: […]/html/sessions//sessions/[…]
Maybe the path is totaly wrong OR the “//” is the problem. “//” means root directory… and then session and deeper, but that path surely does not exist.
What are your configured path in the article2pdf plugin options?
Forum: Plugins
In reply to: plugin article2pdf error help!I think the path is misconfigured, but I don’t know where… I will have al look at my wordpress options table, maybe I can finde something.
Forum: Plugins
In reply to: [Plugin: WP-Options-Manager] – WordPress 2.8I have fixed the problems. Please download the new version that works with 2.8 – have fun.
Marc
Forum: Plugins
In reply to: [Plugin: WP-Options-Manager] can’t enter my admin panelAre really all entrys set to blog_id = 0 ?
I can’t explain that – the code of the wp options manager plugin could not do that. No options are changed until the users deletes something by choice.Try the following SQL query:
SELECT blog_id FROM wp_options WHERE 1 GROUP BY blog_id;
Please report the result to me.
Forum: Plugins
In reply to: [Plugin: WP-Options-Manager] can’t enter my admin panelHello Njualem,
I think the problem is, that the plugin trys to rewrite the option “active_plugins” to ensure that WPOM is the first plugin that is loaded. You can find this option in the database table “wp_options”. I think on WP MU there are more than one entrys with this option name, for each blog one – and there is a problem.
Check the database with phpmyadmin or something and search for this option in the wp_options table.Note: “Warning: file_put_contents(/home/co[…]” – that just means that the directory was not writable, which is in generally no problem, and has nothing to do with you main problem.
I will add a warning for WP MU Users not to use that plugin.