Forum Replies Created
-
AuthorPosts
-
May 4, 2018 at 8:13 am in reply to: TinyMCE Missing Essential Buttons in Advanced Layout Builder Text Blocks #951423
Hi Ismael,
There are no such extensions installed. You can check yourself using the credentials I provided in my first post on April 27, 2018.
Thanks,
StephanMay 3, 2018 at 9:13 am in reply to: TinyMCE Missing Essential Buttons in Advanced Layout Builder Text Blocks #950570Hi Victoria,
OS: Windows 10 Pro, version 1709, build 16299.371
Browser: Firefox Quantum 59.0.3 (64-Bit) / Chrome 66.0.3359.139 (64-Bit)Text block editor looks like this:
Thanks,
StephanMay 2, 2018 at 9:43 am in reply to: TinyMCE Missing Essential Buttons in Advanced Layout Builder Text Blocks #949906Connected with the “false” editor is the following behaviour: When I open a page for editing and click on an existing text block, this “false” editor opens, I change some text, then click on the Save button – the changes are not saved. When I click on this text block again, the editor opens without any text at all. After I reload that page for editing (ignoring the WP warning that there are changes), click on that text block, change the text, then save the changes they are saved. Strange, isn’t it?
StephanMay 1, 2018 at 4:06 pm in reply to: TinyMCE Missing Essential Buttons in Advanced Layout Builder Text Blocks #949566Hi Vinay,
I can see the private content of my own message, but no such content in Victoria’s message.
Thanks,
StephanApril 30, 2018 at 7:36 am in reply to: TinyMCE Missing Essential Buttons in Advanced Layout Builder Text Blocks #948825Hi Victoria,
What did you want to say in your post? I don’t assume, just “Hi”. ;-)
Thanks,
StephanApril 27, 2018 at 5:09 pm in reply to: TinyMCE Missing Essential Buttons in Advanced Layout Builder Text Blocks #948045Same problem here. WP 4.9.5, Enfold just updated to 4.3. Latest versions of Firefox and Chrome.
Funny thing is, after the Enfold update I edited several text boxes without any problems – then, out of the blue, in the same session, the “normal” version of the text editor was replaced by what seems to be a very reduced version, labeled in the right lower corner as “Powered by TinyMCE”. What happened here? How can I get back to the original text editor?Thanks,
StephanYou forgot an opening { at the end of the the first line.
Correct code:@media only screen and (min-width: 990px) { .responsive .av-image-hotspot { height: 32px; width: 32px; line-height: 32px; } .responsive .av-image-hotspot-pulse { top: -11px; left: -11px; }}
Hi Ismael,
I already did so. Great to hear that this will be fixed in the next update, so that my correction won’t be overwritten again.Thanks,
StephanMarch 4, 2016 at 10:13 am in reply to: Breadcrumb shortcode and Header Title and Breadcrumbs options #593188Didn’t know that, thanks for the hint! :)
March 3, 2016 at 7:54 am in reply to: Breadcrumb shortcode and Header Title and Breadcrumbs options #592471@WebVizion: Yeah, saw your support request when I searched for a possible existing solution. Submitted a feature request yesterday, please vote for “Independent [bread_crumb] shortcode” at https://kriesi.at/support/enfold-feature-requests/
By the way, am I overlooking something or is there no search function for feature requests?
March 2, 2016 at 8:24 am in reply to: Breadcrumb shortcode and Header Title and Breadcrumbs options #591947I’m fine with this now, but it would be great if in future versions the [bread_crumb] shortcode would work independent of the Enfold Header option “Header Title and Breadcrumbs” settings and would create different code.
Thanks,
StephanOh, and it’s the build-in widget that comes with enfold: \enfold\config-templatebuilder\avia-shortcodes\events_upcoming.php
Hi Rikard,
I want to change that because it’s a bug. It makes no sense to set the title of an element to the string ‘av-upcoming-event-title’. It looks bad if a user moves the mouse pointer over that element and ‘av-upcoming-event-title’ shows up. The programmer most likely intended to use ‘class’ instead of ‘title’ tag here. Please correct this in the next version.
Thanks,
StephanMarch 1, 2016 at 8:07 am in reply to: Breadcrumb shortcode and Header Title and Breadcrumbs options #591396Hi Rikard,
meanwhile I managed to achieve the desired result, but by a rather laborious approach based on overwriting some css classes. I generally don’t like hiding unwanted elements by just not displaying them – none-displayed by css they remain in the sourcecode nonetheless. In case of certain meta data (e.g. usernames) this isn’t of much help.
However, here’s what I did to hide breadcrumbs in the header but show them by [bread_crumb] shortcode in a text block elsewhere (but it would be great if there were a much simpler solution).
Unfortunately the source code (used html elements and css classes) resulting from the [bread_crumb] shortcode is exactly the same as used in the header section, so I had to distinguish the shortcode result from the standard code in order to address the standard and the shortcode css classes in different ways (I didn’t want just hide the breadcrumbs in the header, but wanted to style the shortcode results differently).
In order to use [bread_crumb] shortcode at all I added
add_shortcode( 'bread_crumb', 'avia_title' );
to my child theme’s functions.phpThen, to remove the title from the breadcrumb, I added
add_filter('avf_title_args', function($args) { $args['html'] = "<div class='{class} title_container'><div class='container'>{additions}</div></div>"; return $args; });
to functions.php as well.
Now by adding
add_theme_support('avia_template_builder_custom_css');
to functions.php I turned on custom CSS class field for all ALB elements.Then I assigned the text block containing the [bread_crumb] shortcode a custom css class (“my_breadcrumb”).
To hide the breadcrumb in the header, I added
.title_container { display:none; }
to my child theme’s style.css.
But since this hides the result from [bread_crumb] shortcode as well, I had to show it again by using my custom css class (and doing some styling on this occasion):
.my_breadcrumb .title_container { display:block; background: transparent !important; padding: 0px !important; }
Further styling involved:
.my_breadcrumb .title_container .container { padding: 0px !important; min-height:10px !important; } .my_breadcrumb .container_wrap { border:none; } .my_breadcrumb .title_container .breadcrumb { position:relative; right:auto; }
This may be tackling it in a roundabout way, but it finally worked for me.
-
AuthorPosts