Forum Replies Created
-
AuthorPosts
-
Hi Rikard
Thank you for your support.
Kind regards
JeannetteHi Rikard
That was fast!
Yeah sure, that’s no problem. You can find the access data in the private field.Many thanks
JeannetteHello Rikard
Thank you very much for your analysis.
Were you able to systematically reproduce the problem in the presence of these characters? I had also initially suspected these characters, but the problem did not occur even after several attempts, although these characters were always present.
By the way, the customer even had the “paste as text” mode enabled.However, I will gladly consider your tip with the way over the text editor.
Kind regards
JeannetteHi Rikard
That’s great. Many thanks.
My workaround is to place the content in the color section above in columns.Kind regards
JeannetteHi Rikard
Many thanks for your answer.
You can find the original content on the “Büro & Gewerbe” page of the website in the staging area. It is the content in the bottom 1/3 columns. Before the problem occurred, I had duplicated the text blocks in the 1/3 columns and moved them to new 1/3 columns using drag’n’drop. Then I had copied the title of the first 1/3 column to the clipboard and was about to paste it into the second 1/3 column when the editor displayed incorrectly. Interesting: Both for me and for the customer the problem occurred only after a few copy-paste operations.
Kind regards
JeannetteHi Rikard
I had actually finished with the problem when it occurred today on another system in my local development environment. Like the customer, I was inserting text from an external source (Figma for me, Word for the customer). When I clicked another time on a text element to edit it, the editor looked like the one on the screenshot of my initial post. Closing and reopening another text element brought no change. Only when I returned to the page overview and opened the page again for editing, the correct text editor was displayed again.
The following error was reported in the Firefox console:
Uncaught TypeError: editor is null update_timout https://***.test/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/js/avia-builder.js?ver=5.8-4.8:1606 avia-builder.js:1606:6
Even after countless attempts, I have not been able to reproduce the problem. Can you still do something more with this information?
Thanks
JeannetteHI Rikard
Thank you anyway. I can understand that very well. After all, I feel the same way.
Kind regards
JeannetteHi Rikard
Unfortunately, I have not yet been able to reproduce the problem myself. Accordingly, I do not know if the problem also occurs with another theme. Unfortunately, I am not authorized to provide you with access to the system.
Despite the sparse information, do you perhaps have a guess as to what this could be?
Many thanks
JeannetteHi Ismael
All right, many thanks.
Kind regards
JeannetteHi IsmaelA
Thank you for your answer. You can find the access data to the website in the private field.
We would like to apply the following CSS rules to image elements:
#top #wrap_all .avia-image-container { margin: 1.7em 0; } #top #wrap_all .avia-image-container:first-child { margin-top: 0; } #top #wrap_all .avia-image-container:last-child { margin-bottom: 0; }
This works for normal pages, but not for the footer page because of the additional style tags. What is the deal with these style tags?
If the style tags are normal for the new Enfold versions, I can easily address the image tag in the footer differently. I just never encountered these style tags in older versions.Thanks Jeannette
Hi
I was able to add SVG support using Monkey Patching. In my JS file with the code for my child-theme I overwrite the elements to which the lightbox is applied with the following code:
let avia_activate_lightbox_orig = $.fn.avia_activate_lightbox; $.fn.avia_activate_lightbox = function() { avia_activate_lightbox_orig.apply(this, [{ autolinkElements: 'a.lightbox, a[rel^="prettyPhoto"], a[rel^="lightbox"], a[href$=jpg], a[href$=png], a[href$=gif], a[href$=jpeg], a[href$=svg], a[href*=".jpg?"], a[href*=".png?"], a[href*=".gif?"], a[href*=".jpeg?"], a[href*=".svg?"], a[href$=".mov"] , a[href$=".swf"] , a:regex(href, .vimeo\.com/[0-9]) , a[href*="youtube.com/watch"] , a[href*="screenr.com"], a[href*="iframe=true"]', }]); };
Maybe it’ll help somebody else.
Hi Victoria
Many thanks for your answer.
In the file avia-snippet-lightbox.js I see the definition of the functionavia_activate_lightbox(variables)
. With the parametervariables
I think there is a possibility to adjust the default values of the lightbox. But I’m not sure how to adjust the function call by the template so that I can set the parametervariables
with my own values.Thanks
February 10, 2020 at 10:23 am in reply to: Broken layout on CM Tooltip Glossary term single page #1182975Hi
I was able to solve the problem by adding the “glossary” post type to the array of ALB supported post types.
add_filter('avf_alb_supported_post_types', function( array $supported_post_types ) { $supported_post_types[] = 'glossary'; return $supported_post_types; } );
Kind regards
Hi Ismael
Great, this did the trick! Thank you so much.
Kind regards
JeannetteHi
I just found out that the problem only occurs when i insert the Masonry Gallery in the custom loop-index.php with
do_shortcode("[av_masonry_gallery ...]")
Is there an alternative way to use the ALB shortcodes without
do_shortcode()
?Thanks
JeannetteHi Ismael
Many thanks for your answer.
I’ve added the filter to the functions.php but with no luck. The problem still exists.In the meantime I found out that during the update only Enfold was updated from version 4.5.1 to 4.6.3.1. WordPress was already installed in the latest version 5.3.2.
Great, thanks a lot!
October 15, 2018 at 9:14 am in reply to: Need to show entire blog post with advanced editor #1021467Hi Ismael
Thanks for your answer. But that does not help. Can I change the file for the “Page Content”, that it will show also blog posts? Which file is it?
Kind regards
JeannetteOctober 10, 2018 at 11:03 am in reply to: Need to show entire blog post with advanced editor #1019871Hi Rikard
Thanks for your answer. Yes I am able to show the full content. But only when I have the default editor on. But I need to display the full content when the advanced editor is turned on for blog posts (see admin login details in privat).
If that’s not possible, could I just show you the latest blog post as single-post on my homepage?
Kind regards
JeannetteDear Rikard
Thanks for your answer. I need to show the newest entire blog post on the homepage (see privat content).
On this page I have the “Blog Post” element which only shows 1 post. It will always be just one blog post so it could also be a single post. But I dont know how to do this.
Kind regards
JeannetteHi
On my devices the solution didn’t work in Chrome but in Firefox. Finally, I’ve found a solution that works in both browsers:
jQuery('.close_menu_button').on('click touch', function() { jQuery('.menu-item-mega-parent').trigger('mouseleave'); }); jQuery('.menu-item-mega-parent').on('click touch', function() { jQuery('.menu-item-mega-parent').trigger('mouseenter'); }); jQuery('.avia_mega_div').on('click touch', function(e) { e.stopPropagation(); });
Unfortunately, the menu doesn’t open at all in MS Edge when touching the menu button. Monitoring the html code of
.avia_mega_div
I can see that the value uf of display changes from none to block to none and the opacity changes from 0 to 1 to 0. The problem remains, even if I remove the code mentioned above. Any ideas what could cause the problem in Edge?Many thanks, Jeannette
Hi
First of all: Thank you so much for your efforts.
I can confirm it’s working when clicking on the close button. However, if I tap the close button on a touch device I still cannot reopen the menu. Were you able to reopen the menu on a touch device or with touch emulation in browser developer tools?
Regards Jeannette
This reply has been marked as private.Hi Dude
Thank you for the code. I tested it, unfortunately without success. The menu won’t open once I close it with the code.
I compared the html code before opening and after closing the menu. the code is completely identical.
I have discovered the following: After closing the menu with the jQuery code, if I right click (touch) at any place, the context menu appears, which appears when clicking on a link. It seems as if a link was placed over the whole viewport. However, via developer tools I could not find anything corresponding.
Thanks, Jeannette
Hi Mike
The URL of the site is http://wp.musikschule-uri.ch. In the mega menu you can find a close button (near the search filed) without any functionality yet.
Many thanks, Jeannette
Hi Victoria
After I imported a backup several times, I had access to the backend and was able to uncheck the checkbox ‘Disable self hosted video and audio features’. Afterwards I was able to launch the website without any more problems. So I dont know, what exactly resolved the problem but I am quite happy now. I would recommend other users of enfold, do not use the checkbox ‘Disable self hosted video and audio features’ yet.
kind regards
blende 64I have the same problem after changing the siteurl of my website. Now I can not go live with the website, parts of the content are missing in the frontend and sometimes a 500 error appears. Also in the backend I can not reach the setting items from enfold anymore. So I can not change ‘Disable self hosted video and audio features’.
Can I reach this option in the database? Wich is the name?
Or an other quick fix?
And I have no patience, I need to launch the site today.
Thanks a lot.
April 20, 2017 at 6:05 pm in reply to: Add each selected category (not just one) to portfolio #780687I have changed my code to this:
function show_portfolio_category_func() {
global $post;
ob_start();
$sort_classes = “”;
$item_categories = get_the_terms( $post->ID , ‘portfolio_entries’ );
if(is_object($item_categories) || is_array($item_categories))
{
foreach ($item_categories as $cat)
{
$sort_classes .= $cat->name.'<span class=”cat-komma”>, </span>’;
}
}
echo $sort_classes;
$output = ob_get_clean();
return $output;
}
add_shortcode(‘portfolio_category’, ‘show_portfolio_category_func’);This works for me, no double entries. I had just an extra comma at the end of the list, which I did not display with this css code:
.avia_textblock .cat-komma:last-child {
display:none;
}
Sorry, no PHP programmer. Just know some HTML & CSS :-)Kind regards
JeannetteApril 19, 2017 at 3:27 pm in reply to: Add each selected category (not just one) to portfolio #780007Hi Andy
Hallo Guenni007Thanks so much for your help. I have now managed to get my categories with this code, I have added in my child theme functions.php:
function show_portfolio_category_func() {
global $post;
$sort_classes = “”;
$item_categories = get_the_terms( $post->ID , ‘portfolio_entries’ );
ob_start();
if(is_object($item_categories) || is_array($item_categories))
{
foreach ($item_categories as $cat)
{
$sort_classes .= $cat->name.’, ‘;
}
}
echo $sort_classes .= $cat->name;
$output = ob_get_clean();
return $output;
}
add_shortcode(‘portfolio_category’, ‘show_portfolio_category_func’);But I have the problem that it shows the last category in double (example : Geländer, Treppen, Treppen). How do I fix this?
April 13, 2017 at 12:17 pm in reply to: Add each selected category (not just one) to portfolio #777200Ja genau, ein Beitrag kann mehreren Kategorien angehören und dies würde ich gerne ausgeben. Und es geht auch gar nicht um meine Seite, sondern um eine für einen Kunden, welche noch gar nicht online ist.
-
AuthorPosts