Forum Replies Created
-
AuthorPosts
-
Hey 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 #1053572Hi,
I can’t see the theme version in the head tag. Is it on version 4.5.2? Please add the css code temporarily. We’ll forward this thread again to our developers.
Best regards,
IsmaelHi,
Thanks for the update. Are you open to removing the border or frame? You can use this css code to remove it.
#top .wp-caption img { padding: 0; }
Best regards,
IsmaelHi,
You can set the default archive style by adjusting the Enfold > Blog Layout > Blog Layout settings. You can also manually edit the archives.php template file if you want to add more customization to the archive pages.
Best regards,
IsmaelHi,
These two sections are not full width as well
Edit the grid row element and make sure that the “Mobile Behaviour” settings is set to the first option. The footer area looks ok now.
Best regards,
IsmaelHi,
This might help:
// https://kriesi.at/support/topic/video-on-hover-for-portfolio-items/
Best regards,
IsmaelJanuary 14, 2019 at 8:07 am in reply to: No more responsive and blocks that can't be deleted on AVIA #1053564Hi,
Thanks for the update.
I set the builder to debug mode and removed the invalid shortcodes from the debug mode field to get rid of the unwanted blocks or elements from the builder. These are the deleted shortcodes:
[av_cell_one_half vertical_align='top' padding='0px' padding_sync='true' background='bg_color' background_color='' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='center right' background_repeat='stretch' link='' linktarget='' link_hover='' mobile_display='av-hide-on-mobile' av_uid='av-7c5ryn'][/av_cell_one_half] [av_cell_one_half vertical_align='top' padding='0px' padding_sync='true' background='bg_color' background_color='' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='center right' background_repeat='stretch' link='' linktarget='' link_hover='' mobile_display='av-hide-on-mobile' av_uid='av-7c5ryn'][/av_cell_one_half] [av_cell_one_half vertical_align='top' padding='0px' padding_sync='true' background='bg_color' background_color='' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='center right' background_repeat='stretch' link='' linktarget='' link_hover='' mobile_display='av-hide-on-mobile' av_uid='av-7c5ryn'][/av_cell_one_half]
Best regards,
IsmaelHi,
You can use the Post Slider element. Just set the “Which entries?” settings to “Portfolio Entries”.
Best regards,
IsmaelHi,
Have you tried using the suggested plugin above?
// https://wordpress.org/plugins/simply-exclude/
You can remove the code if you decided to use the plugin.
Best regards,
IsmaelJanuary 14, 2019 at 3:56 am in reply to: Can I have a simple button in my main menu instead of the social icons? #1053499Hi,
You can make a button out of a menu item. Create a custom link and set the “Menu Style” to “Button Style”. There are two button style available.
Best regards,
IsmaelJanuary 14, 2019 at 3:53 am in reply to: Responsive layout changed so 1st image is full width then in 2x column #1053498Hi,
Which device are you checking this with? You can use this css code to adjust the width of the logo entry on mobile view..
@media only screen and (max-width: 768px) { .responsive #top #wrap_all .avia-content-slider-odd .slide-entry { margin-left: 0; clear: both; width: 100%; } }
Best regards,
Ismael -
AuthorPosts