Jarada
Forum Replies Created
-
Forum: Plugins
In reply to: [Theater for WordPress] LocationsHey there,
Great! This is super useful. I’ll let you know how I get on.
David
Hi there,
Fantastic! Put these whitelisted URLs in, went to Relevanssi and saved without any 403 error while the Firewall was Enabled and Protecting.
That worked great! Thank you for all your help with this, it is much appreciated.
Hi there,
Apologies for the delay on this myself. I’ve just got this sent to you today.
Hey there,
Thank you for your replies.
We are using the latest versions of Wordfence (Version 6.3.6) and Relevanssi (Version 3.5.8), both free.
I’ve just tried the following:
– Tested Relevanssi Save options; 403 error
– Put WordFence into Learning mode
– Tested Relevanssi Save options; all OK
– Checked WordFence firewall rules; no new rules added
– Put WordFence into Enabled and Protected mode
– Tested Relevanssi Save options; 403 error
– Checked WordFence firewall rules; no new rules addedAmong the rules that we do have, I have got this one also which I added as a custom rule and has not had any effect:
/wp-admin/options-general.php request.queryString[page] 10/04/2017, 14:15:42 Whitelisted via Firewall Options pageForum: Plugins
In reply to: [Timeline Express] ERROR AFTER UPDATINGI can confirm I also encountered this error, and I had PHP Version 5.3 running, and that updating to version 5.6 fixed the error.
- This reply was modified 9 years, 2 months ago by Jarada.
I’m guessing since reset($arr) requires an array, and $images_list is an array, it is supposed to be:
$post_image = reset($images_list);Again, just looking at the surrounding code. No idea if that’s correct.
At the moment, as far as I can tell, thumbnail images will only display if you are showing the RSS description. Make sure you have Show Description ticked in your options.
If you want to show Thumbnails without the description, a temporary workaround would be to go into the Plugin Editor and edit the file super-rss-reader/super-rss-reader.php.
Find the following code:
$thumb = ''; if ($show_thumb == 1 && $enclosure = $item->get_enclosure()){ $thumburl = $enclosure->get_thumbnail(); if(!empty($thumburl)) $thumb = '<img src="' . $thumburl . '" alt="' . $title . '" class="srr-thumb" align="left"/>'; }And change it so it reads:
$thumb = ''; if ($show_thumb == 1 && $enclosure = $item->get_enclosure()){ $thumburl = $enclosure->get_thumbnail(); if(!empty($thumburl)) $thumb = '<img src="' . $thumburl . '" alt="' . $title . '" class="srr-thumb" align="left"/>'; } if (!$show_desc && $show_thumb) $title = $thumb . $title;This will display the thumbnail to the left of the title.