iGudi
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Site doesn’t load properly in IE, unless I “power refresh”In regards to the unclosed IMG tag, this solved that:
1. Edit this file template.twig.
2. In this location: /wp-content/plugins/sitepress-multilingual-cms/templates/language-switchers/legacy-list-horizonta/
3. Simply add the closing tag for theelement in line 13 like this:
<img id="my-id" class="{{ css_classes_flag }}" src="{{ language.flag_url }}" alt="{{ language.code }}" title="{{ language.flag_title }}"/>Forum: Fixing WordPress
In reply to: Site doesn’t load properly in IE, unless I “power refresh”I changed the following
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />to
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />It seems to have helped, also disabled w3c temporary, so no caching messes up the testing.
Can anyone else force the error, so the forms do not display?
Forum: Fixing WordPress
In reply to: Site doesn’t load properly in IE, unless I “power refresh”I still have to quick-pres F5 to get it to show the forms. Emptying cache doesn’t change the behavior.
Forum: Fixing WordPress
In reply to: Site doesn’t load properly in IE, unless I “power refresh”added
charset="utf-8" type="text/javascript"to the <script> that has no tag below, this solved the validation, but forms still do not display.<!--[if lte IE 8]> <script charset="utf-8" type="text/javascript" src="//js.hsforms.net/forms/v2-legacy.js"></script> <![endif]--> <script charset="utf-8" type="text/javascript" src="//js.hsforms.net/forms/v2.js"></script> <script> hbspt.forms.create({ portalId: 'removed-my-id', formId: 'removed-this-id' }); </script>Forum: Fixing WordPress
In reply to: Site doesn’t load properly in IE, unless I “power refresh”Hi Sinip
Thank you for the input.Fixed the error by removing BOM tag and closing an
tag and removing an tag in the widget. This fixed the layout – nice!
So I’m left with the WPML language switcher looking wierd (also giving validation error because of unclosed img tags) – but still more inportant – the whole Hubspot Form part is stilling missing in IE.
Forum: Fixing WordPress
In reply to: Removing Emoji code from headerMy site stopped validating after the update, but after enabling the “Disable Emojis” my site once again validated at W3
I didn’t quite get the fix?
I have a group, and when i post something on my wordpress blog, the post is added to my facebook group propperly.
Also when someone add a comment on our facebook post, the comment is added to my wordpress post.
However, when someone add a comment on my wordpress post, i recieve an error: Add Link to Facebook – Weekendtur: Add comment: Facebook error: You do not have permission to post in this group.
Been thru the FAQ several times, but maybe I’m missing something.
Forum: Themes and Templates
In reply to: The perfect titleThanks to this page i have now made a working title.
Could someone please validate this?
<title><?php if($post->post_parent) { $parent_title = get_the_title($post->post_parent); echo $parent_title; echo ‘ · ‘; ?> <?php } ?><?php wp_title(”); ?><?php if(wp_title(‘ ‘, false)) { echo ‘ · ‘; } ?><?php bloginfo(‘name’); ?></title>