-
AuthorPosts
-
October 3, 2019 at 12:53 pm #1144460
Hi 4.6.3.1 still suffers from some issue that should have been fixed in 4.6.3:
– the text-block element still has an empty developer tab thus no custom id and/or custom class can be set
– links in the testimonial element get rendered with target _blank but rel=”noopener nofollow” is missing. If you are it to fix you might think about a small redsign of the entire link and to apply a filter hook to it.At least to allow manipulation of target and rel attribute.October 3, 2019 at 11:39 pm #1144793this must have something to do with the new toggle of screenoptions. Previously (4.6.2) it wasn’t like that, but like all elements without toggle containers.
Till it was fixed i copied the 4.6.2 textblock.php to my child-themeOctober 3, 2019 at 11:57 pm #1144794Aha – something has been forgotten:
open textblock.php – in : function popup_elements()
before the tab_container closes there is a close_div missing
so find of that function this:
array( "type" => "close_tab_container", //close tab container 'nodescription' => true ),
there has to be just before a closing div:
array( "type" => "close_div", 'nodescription' => true ),
all tabs had to be closed propper.
here is a corrected textblock.php to download: pastebinOctober 3, 2019 at 11:58 pm #1144795Hi Günter, long time since we talked. Hope you are well. I had no time to debug the issue. It just came to my attention while working on a site. I think it is not a big deal and Kriesi and his team will fix it in 4.6.4.
October 3, 2019 at 11:59 pm #1144796no debug – just download – and replace ;)
October 4, 2019 at 12:31 am #1144801Thank you. Your second post came in while i was posting my answer :-)
November 1, 2019 at 2:58 pm #1153062Hi
I still get an empty page under Developer. I uploaded the pastebin texblock.php to my childtheme but nothing happens. I put the file in wp-content – themes – enfold child. Maybe the wrong place?Jacob
November 3, 2019 at 8:40 pm #1153550there is no automatic load of the child-theme replacement files:
there is a child-theme functions.php snippet that induces the replacement: https://kriesi.at/documentation/enfold/intro-to-layout-builder/#add-elements-to-albthe place then for the substitutes is: child-theme/shortcodes/
in this case i would overwrite the parent theme file – because it will be fixed in next update
November 4, 2019 at 11:00 am #1153657Thank you Guenni. That worked perfectly. You are a star.
Jacob
November 8, 2019 at 9:46 am #1154881 -
AuthorPosts
- The topic ‘4.6.3.1 issues’ is closed to new replies.