Forum Replies Created
-
AuthorPosts
-
Hi,
Great! Glad it helped. We’ll close the thread now.
Have a nice day.
Best regards,
IsmaelHi,
Great! Glad it helped. We’ll close the thread now.
Have a nice day.
Best regards,
IsmaelHi,
Could you give us a screenshot of what you’re trying to implement? Do you want the icon to stick, or set it as a fixed element? You can start with this css code:
.whatsapp-icon { position: fixed; bottom: 50px; right: 50px; z-index: 1000; }Make sure that the icon container has the “whatsapp-icon” class attribute.
Best regards,
IsmaelHi,
The excerpt or summary is not displayed because you’re using the Advance Layout Builder for your posts. You have to manually add a summary in the Excerpt field.
Best regards,
IsmaelHi,
Great! Glad it’s fixed. We’ll close this thread now.
Have a nice day. And thank you for using Enfold!
Best regards,
IsmaelHey Excention,
Thank you for using Enfold.
You can use this css code to adjust the position of the logo.
div .logo { float: none; position: absolute; left: 50%; transform: translateX(-50%); }Best regards,
IsmaelJanuary 15, 2019 at 3:33 am in reply to: After password protection removed my page.php child theme code is not working #1053926Hey 110percent,
Thank you for using Enfold.
We need to see the actual modifications. Please post the page.php codes on pastebin.com.
Best regards,
IsmaelHey mitiuphoto,
Thank you for using Enfold.
This is possible but it will require modifications that are beyond the scope of the support. Please a hire a freelance developer or contact our partner, Codeable.
// https://kriesi.at/contact/customization
Best regards,
IsmaelHi,
I get this error on IE:
https://platform.twitter.com/widgets/widget_iframe.2e05bcc02f9198c4399ba5dc0c61000f.html?origin=https%3A%2F%2Fwww.smith-scott-mullan.co.uk&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings SCRIPT5: Access is denied. File: widget_iframe.2e05bcc02f9198c4399ba5dc0c61000f.html, Line: 1, Column: 1It seems to be related to a twitter widget. Did you install any twitter related plugin?
Best regards,
IsmaelHi,
Did you enable the File Compression settings in the Enfold > Performance panel? You should disable it temporarily, while editing the site or until you’re completely done with it. Same with caching and minification plugins if there are any.
Best regards,
IsmaelHey Florian,
Thank you for using Enfold.
The button is not working because the admin-ajax.php file is blocked or the access to it is forbidden.
/wp-admin/admin-ajax.php:1 Failed to load resource: the server responded with a status of 403 (Forbidden) jquery.js?ver=1.12.4:4 POST https://phototravellers.de/wp-admin/admin-ajax.php 403 (Forbidden)Please disable the plugins temporarily and ask your hosting provider if the mod-sec rule is blacklisting the said file.
Best regards,
IsmaelJanuary 15, 2019 at 3:09 am in reply to: Adding Social Media Icons at bottom of mobile menu #1053916Hi,
Use this code:
// https://kriesi.at/support/topic/social-icons-in-mobile-menu-3/#post-835215
.. but then remove this line:
if(isMobile == 'none') return;And replace this code:
htmlString = $('#header_main .social_bookmarks').find('li a'),.. with:
htmlString = $('#footer .social_bookmarks').find('li a'),Best regards,
IsmaelJanuary 15, 2019 at 2:08 am in reply to: Cover photo on mobile | font size on posts without sitebar #1053910Hi,
The p or paragraph element is actually set to be 15% bigger than the default font size.
#top .fullsize .template-blog .post .entry-content-wrapper { text-align: justify; font-size: 1.15em; line-height: 1.7em; max-width: 800px; margin: 0 auto; overflow: visible; }Best regards,
IsmaelHi,
Thanks for the update.
We moved the image inside the slider caption field, use “snap-pronosgame” as a class attribute and added this css code.
.avia-slideshow li img.snap-pronosgame { width: 180px; height: 180px; } @media only screen and (max-width: 767px) { .avia-slideshow li img.snap-pronosgame { width: 90px; height: 90px; } }Best regards,
IsmaelHi,
They are still valid but some options may not work or may not be compatible with the current site’s setup and server. You have to play around with the configuration in order to find the best combination of options for optimization.
Best regards,
IsmaelJanuary 15, 2019 at 1:00 am in reply to: Unpredictable scrolling behaviour of submenu and anchors #1053899Hey wpompen,
Thank you for using Enfold.
Did you add an overflow css property to an element somewhere? The scroll bar looks a bit off and the header should not go over it.
Best regards,
IsmaelHi,
Thanks for the update.
You need to modify the includes > loop-index.php file. Look for this code around line 268:
echo "<time class='date-container minor-meta updated' >".get_the_time(get_option('date_format'))."</time>";// https://codex.wordpress.org/Function_Reference/get_the_modified_time
Best regards,
IsmaelHi,
Thanks for the update. This css code should help:
@media only screen and (max-width: 989px) { .av-tab-section-tab-title-container { min-width: 920px !important; } }Best regards,
IsmaelJanuary 15, 2019 at 12:42 am in reply to: improved: added rel='nofollow' ? Excuse me? What? This is the biggest nonsense #1053894Hi,
How do I reduce the number of nodes?
You can do that by removing some elements, in this case products, from your home page.
Also the speed test says to consider lazy loading images.
There are available plugins out there but some of them may not be compatible with the theme.
Eliminate render-blocking resources
This should help: https://kriesi.at/archives/scoring-100-100-in-google-pagespeed-insights-gtmetrix-pagespeed-and-yslow
Best regards,
IsmaelJanuary 15, 2019 at 12:35 am in reply to: No more responsive and blocks that can't be deleted on AVIA #1053890Hi,
You have to add it in the functions.php file. Please disable the cache and minification plugin temporarily.
Best regards,
IsmaelHi,
Alright. I would like to check the functions.php file but the Appearance > Editor panel is not accessible. Please take a look at that file and disable any function that you think is related to google maps.
Best regards,
IsmaelHi,
Thanks for the update. Is it working properly if you remove the masonry element?
Best regards,
IsmaelHi,
Thanks for the update. This filter might help:
// exclude meat add_filter('avia_blog_post_query', 'avia_blog_post_query_mod', 10, 2); function avia_blog_post_query_mod($query, $params) { $query['tax_query'][] = [ 'taxonomy' => 'category', 'field' => 'name', 'terms' => 'meat', 'operator' => 'NOT IN', ]; return $query; }// https://codex.wordpress.org/Class_Reference/WP_Query#Taxonomy_Parameters
Best regards,
IsmaelHi,
Great! Glad we could help!
Please take a moment to review our theme and show your support https://themeforest.net/downloads
Don’t forget to bookmark Enfold Documentation for future reference.Thank you for using Enfold :)
Best regards,
IsmaelHi,
Thanks for the update.
Replace the previous code with the following:
add_action('wp_head', 'wp_head_pagination_mod'); function wp_head_pagination_mod() { global $wp_query; $page = get_query_var( 'paged' ) ? get_query_var( 'paged' ) : get_query_var( 'page' ); $page = ! $page ? 0 : $page; $url = (isset($_SERVER['HTTPS']) ? "https" : "http") . "://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]"; $url = substr($url, 1, strpos($url, "page")); $link_prev = $url . 'page/' . ($page - 1); $link_next = $url . 'page/' . ($page + 1); if( ! $page ) { $output .= ' <link rel="next" href="'. $link_next .'" />' . PHP_EOL; } else if( $page == $wp_query->max_num_pages ) { $output = ' <link rel="prev" href="'. $link_prev .'" />' . PHP_EOL; } else { $output = ' <link rel="prev" href="'. $link_prev .'" />' . PHP_EOL; $output .= ' <link rel="next" href="'. $link_next .'" />' . PHP_EOL; } echo $output; }Best regards,
IsmaelJanuary 15, 2019 at 12:04 am in reply to: Latest Enfold [5.+] not working with H5P plugin [no errors in console] #1053877Hi,
How can I edit that quiz? It redirects to the same page when I click the “Edit Quiz” link.
Best regards,
IsmaelJanuary 14, 2019 at 8:39 am in reply to: Blog Header images not rendering correctly on mobile #1053572 -
AuthorPosts
