dierofly
Forum Replies Created
-
Forum: Plugins
In reply to: [Polylang] Localized web can not be reached whit www prefixYes this option is checked.
I also tested this with German as preferred language in Chrome but still I am redirected to English website when I type https://www.domain.com/de.I have W3 Total Cache plugin installed I thought this might be causing this issue I turned it off but situation persists.
Forum: Plugins
In reply to: [Polylang] Localized web can not be reached whit www prefixHello, here it is: https://bit.ly/1PV26fU
Forum: Plugins
In reply to: [Polylang] Localized web can not be reached whit www prefixOK, so when I change the Polylang setting from “The language is set from the directory name in pretty permalinks” to “The language is set from content” I am able to reach local website by entering https://www.domain.com/de which is great.
On the other hand all urls of local website lost language directory (/de/) in urls.
Is there a way to keep language directory in local urls and still be able to reach localized website by entering https://www.domain.com/de?
Thank you.
Forum: Plugins
In reply to: [Polylang] Localized web can not be reached whit www prefixHello Chrystl,
thank you for your help. Unfortunately it did not solve this issue. In Polylang my default language is set to English so domain.com is displayed in English which I would like to keep.
I am able to reach local language when I put to browser domain.com/de however the issue persists when I include www prefix (www.domain.com/de) I am redirected to domain.com with English language.
Forum: Themes and Templates
In reply to: [Smpl Skeleton] Error in Extras area?ok, resolved by using
stripslashes()
in functions.phpForum: Plugins
In reply to: [SlickNav Mobile Menu] How to include more CSS Menu IDThanks for reply. I managed to solve this by including class that is in both menus instead of their individual IDs. So instead of combining #menu-menu-eng and #menu-menu in CSS Menu ID I simply put there .menu-header ??
Forum: Plugins
In reply to: [Email Address Encoder] Email not encoded in the headeryes ?? This is it. It works perfectly.
Thank you a lot for your prompt help.
Forum: Plugins
In reply to: [Email Address Encoder] Email not encoded in the headerI deleted this code:
if ( !function_exists( 'skeleton_header_extras' ) ) { function skeleton_header_extras() { $header_extras = skeleton_options('header_extras'); if (a) { $extras = "<div class=\"header_extras\">"; $extras .= $header_extras; $extras .= "</div>"; echo apply_filters ('skeleton_child_header_extras',$extras); } }
And replaced it with the one you suggested:
add_filter( 'skeleton_child_header_extras', 'eae_encode_emails' );
Unfortunately the entire header extras content disappeared.
Forum: Plugins
In reply to: [Email Address Encoder] Email not encoded in the headerThank you Till for fast reply. I tried to add the code as follow:
if ( !function_exists( 'skeleton_header_extras' ) ) { function skeleton_header_extras() { $header_extras = skeleton_options('header_extras'); if (a) { $extras = "<div class=\"header_extras\">"; $extras .= $header_extras; $extras .= "</div>"; echo apply_filters ('skeleton_child_header_extras', $extras); add_filter( 'skeleton_child_header_extras', 'eae_encode_emails' ); } } add_action('skeleton_header','skeleton_header_extras', 3); }
Unfortunately in the source code I can still see the email address.