Forum Replies Created
-
AuthorPosts
-
October 31, 2018 at 2:36 am in reply to: Google Structured Data hcalender "Location" Error & The Event Calendar #1028333
Hi,
You can override that template in your child theme. Have you tried that?
Best regards,
IsmaelHi,
The theme’s preloader script initiates a browser redirect when you click on a link. You can add the “no-transition” class attribute to that button or link if you want to exclude it from the preloader script.
Best regards,
IsmaelHi,
Is it still not working when you enable the compression back?
Best regards,
IsmaelOctober 31, 2018 at 12:56 am in reply to: Google Search Console reports usability problems after update to Enfold 4.5 #1028312Hey KELmedia,
Thank you for using Enfold.
This is what I got when I ran the usability or mobile friendly test.
// https://imgur.com/a/VPKKx6N
Are you seeing any layout issues on mobile view? If there are none, you can just ignore those warnings because they’re probably false positives.
Best regards,
IsmaelHi!
This is all I get: https://imgur.com/a/qsBOS0Y
Please open a new thread and then post the FTP details in the private field.
Regards,
IsmaelHi,
Unfortunately, you can’t add nested columns inside a tab section. The layout that you’re after is still possible though, but you have to extract the actual html code of the icon boxes and then put it inside a text or code block. Example here:
// https://marokko-adventures.de/wp-admin/post.php?post=1593&action=edit
This is the extracted html code of the icon boxes below the tab section.
// https://pastebin.com/bmFZFBfL
You can extract it directly from the browser inspector.
// https://www.lifewire.com/view-html-source-in-chrome-3466725
Best regards,
IsmaelHi,
Glad to hear that you’re not having this issue anymore! Yes, a patch for the element manager was included in the latest version.
Best regards,
IsmaelHey!
We’ve already notified our devs regarding the “image hover effect” issue. You can use this css code temporarily.
.avia_image { -webkit-transition: all 0.7s; transition: all 0.7s; } .av-hover-grow:hover img { -webkit-transform: scale(1.1); transform: scale(1.1); }
Regards,
IsmaelOctober 31, 2018 at 12:17 am in reply to: Parent page link works correct but translation doesn't #1028297Hi,
You can keep the modification in the parent theme for now. I’ll push this thread to the dev team so that they can include that filter in the next patch.
Best regards,
IsmaelOctober 31, 2018 at 12:13 am in reply to: Bild leicht vergrößern und Bild mit Link fubktioniert in Version 4.5 nicht mehr #1028296Hi,
You don’t need to modify any css files. Just add that css code in the Enfold > General Styling > Quick CSS field or your child theme’s style.css file.
Best regards,
IsmaelOctober 31, 2018 at 12:09 am in reply to: Portfolio grid image load effect speed (version 4.4 and higher) #1028294Hi,
You can override the shortcode files in your child theme. Just add this filter:
// https://kriesi.at/documentation/enfold/intro-to-advanced-layout-builder/#add-elements-to-alb
Create a folder called “shortcodes” in the child theme directory and then put the create copies of the parent theme shortcode files.
Best regards,
IsmaelHi,
Is it saving properly? Sometimes, you won’t be able to modify those files directly from the dashboard.
Best regards,
IsmaelHi,
The template-builder.php file is missing from the parent folder, so the pages are using the default page.php template. Please upload the theme again via FTP.
Best regards,
IsmaelHi,
You can add it in the Quick CSS field or the child theme’s style.css file.
I’m not really sure why the width calculation of the first sub menu is off but that css code should fix it.Best regards,
IsmaelHi,
@Antonia: I replied here: https://kriesi.at/support/topic/fixed-image-scrolling-on-mobile/#post-1027879
Best regards,
IsmaelOctober 30, 2018 at 11:48 pm in reply to: Color section fixed background doesn't work on iPhone #1028284Hi,
Fixed background are disabled on mobile devices by default. You may need to do this modification…
// https://kriesi.at/support/topic/playing-with-new-demos/#post-871865
Best regards,
IsmaelHi,
Actually, it’s still not supported on Android.
// https://caniuse.com/#search=fixed
Look for the android column under background-attachment.
Best regards,
IsmaelOctober 30, 2018 at 6:27 am in reply to: Default Template Settings Missing from Event Calendar Pro #1027878Hi,
Look for this line:
remove_action('tribe_events_template', 'avia_events_tempalte_paths', 10, 2);
Replace it with:
remove_action('tribe_events_template', 'avia_events_template_paths', 10, 2);
Best regards,
IsmaelOctober 30, 2018 at 6:25 am in reply to: Parent page link works correct but translation doesn't #1027877October 30, 2018 at 6:23 am in reply to: "Slightly increase the image on hover" not workin after update to 4.5 #1027874Hi,
Yes, I found a thread with the same issue today. You can use that css code for now.
Best regards,
IsmaelHi,
I don’t think you can add css in the editor unless it’s wrapped inside a < style > tag.
<style> // style here </style>
Best regards,
IsmaelOctober 30, 2018 at 6:15 am in reply to: Table of contents widget: how to show it on top of the content of a post or page #1027872Hi,
You can move that code in the includes > loop-index.php file where the post elements reside, right about line 262 where the title is.
echo $title;
– And could you please give me a hint, how to make a shortcode out of it please?
The shortcode:
add_shortcode('avs_toc', 'avs_toc_function'); function avs_toc_function() { $args = array ( 'name' => 'Displayed Everywhere', 'id' => 'av_everywhere', 'description' => '', 'class' => '', 'before_widget' => '<section id="avia_auto_toc-2" class="widget clearfix avia_auto_toc">', 'after_widget' => '<span class="seperator extralight-border"></span></section>', 'before_title' => '', 'after_title' => '', 'widget_id' => 'avia_auto_toc_custom', 'widget_name' => 'Enfold Child Table of Contents', ); $instance = array ( 'title' => 'Toc', 'exclude' => '', 'style' => '', 'level' => 'h1', 'single_only' => 1, 'indent' => 1, 'smoothscroll' => 1, ); $toc = new avia_auto_toc; return $toc->widget($args, $instance); }
You can then use this code to render the toc in the template file:
echo do_shortcode('[avs_toc]');
Or use it directly in the editor.
Best regards,
IsmaelHi,
Unfortunately, this is still not working. After logging in, I get to a blank page with the text “error”.
What did u do?? Pure magic!!! :-)
Yeah.. It’s pure magic! I didn’t do anything. :D
Best regards,
IsmaelHi,
Great! Not really sure how that modification fixed it but I’m glad it did.
Have a nice day. :)Best regards,
IsmaelOctober 30, 2018 at 5:58 am in reply to: Fatal error updating theme – Fatal Error: Call to undefined function avia_is_bur #1027861Hi,
The old theme doesn’t have a google services field and the scripts are very different. You need to upgrade to the latest version.
Best regards,
IsmaelOctober 30, 2018 at 5:57 am in reply to: Multiple Enfold purchases and Token doesn't seem to work #1027859Hi,
Have you tried using the same token for every site that you owned? You may need to wait for a few minutes or hours before you can use a newly generated token.
Best regards,
IsmaelHi,
You can try this filter in the functions.php file but I’m not sure if this is going to work because it’s not working on my installation. It’s supposed to include every scripts and stylesheets in the compression but I don’t see the distinction between the “all” value and the default “avia-module” when I review the compression script.
add_filter('avf_merge_assets', function() { return array('css' => 'all', 'js' => 'all'); });
Please post the FTP details in the private field.
Best regards,
IsmaelOctober 30, 2018 at 5:13 am in reply to: Portfolio grid image load effect speed (version 4.4 and higher) #1027848 -
AuthorPosts