tigrom
Forum Replies Created
-
Forum: Reviews
In reply to: [My YouTube Channel] Completely waste of time!Thank you for your input here.
Yes, indeed.
I can now see the Icon (Youtube Channel) in the TinyMCE editor.
This was NOT definitely clear from any description / screenshots.Yes, i have set the shortcode side by side with the Help Tab in the left, but i was hoping for some GUI.
Anyway, thank you for further explanations and help.
I have positively reviewed.regards.
Forum: Fixing WordPress
In reply to: 4.5 causes infinite redirect on static front pageno snipped code required for me.
Forum: Fixing WordPress
In reply to: 4.5 causes infinite redirect on static front pageso i have discovered that i made a category slug named
blog
that somehow and from that point on the static pagewww.domain.com/blog/
started to redirect towww.domain.com
.Finally,
renaming the category slug to something else likeblog-post
removed the auto redirections.now everything is back to normal and the static blog page is accessible via https://www.domain.com/blog/ url.
so, you might have to check if your
blog
slug term is unique on your wordpress site.good luck!
Forum: Plugins
In reply to: [WP htaccess Control] php 7 supportanyone having this issue when upgrading to php7
THE SOLUTION is to replace
line this
$rewrite_rules = unserialize( preg_replace ( '!s:(\d+):"(.*?)";!se', "'s:'.strlen('$2').':\"$2\";'" , $rewrite_rules ) );
with this
$rewrite_rules = unserialize( preg_replace_callback('!s:(\d+):"(.*?)";!s' , function (array $m) { return sprintf('s:%d:"%s";', strlen($m[2]), $m[2]);} , $rewrite_rules));
anyone having this issue when upgrading to php7
THE SOLUTION is to replace
line this
$rewrite_rules = unserialize( preg_replace ( '!s:(\d+):"(.*?)";!se', "'s:'.strlen('$2').':\"$2\";'" , $rewrite_rules ) );
with this
$rewrite_rules = unserialize( preg_replace_callback('!s:(\d+):"(.*?)";!s' , function (array $m) { return sprintf('s:%d:"%s";', strlen($m[2]), $m[2]);} , $rewrite_rules));
Forum: Plugins
In reply to: [WP htaccess Control] php 7 supporthi,
please it’s urgent, do you have any fix for this?Forum: Plugins
In reply to: Upload media to different subdomains though Media Library?hi,
i’m strugling (for hours) with the same thing…can you please share the solution?
thank you