Forum Replies Created
-
AuthorPosts
-
June 12, 2019 at 4:55 am in reply to: Mobile responsiveness not working after installing enfold #1109334
Hi,
Awesome! Glad that you found that option. Please feel free to open a new thread if you need anything else.
Have a nice day.
Best regards,
IsmaelHi,
Thanks for the update.
Have you tried wrapping those columns inside a color section? You should be able to toggle the visibility of the color section for difference devices using the Screen Options.
Best regards,
IsmaelHi,
Good to hear. Please don’t hesitate to open a new thread if you need anything else.
Have a nice day.
Best regards,
IsmaelJune 12, 2019 at 4:49 am in reply to: how to take off the white over on navigation menu's widget #1109331Hey mediafacto,
You can add this code in the Quick CSS field to remove the menu overlay.
#top .content .flex_column .widget_nav_menu li a:hover, #top .content .flex_column .widget_nav_menu ul:first-child>.current-menu-item, #top .content .flex_column .widget_nav_menu ul:first-child>.current_page_item { background-color: transparent; }Thank you for using Enfold.
Best regards,
IsmaelHi,
You should be able to move the post nav by editing the single.php file. Look for this code around line 42:
$blog_disabled = ( avia_get_option('disable_blog') == 'disable_blog' ) ? true : false;Below, add this code:
echo "<div class='custom-post-nav'>"; echo avia_post_nav(); echo "</div>";And then use this css code to change the style of the navigation:
#top .custom-post-nav { clear: both; } #top .avia-post-nav { position: relative; height: 110px; } #top .avia-post-nav .entry-info-wrap { width: auto; }After that, edit the footer.php file and remove this code around line 239 to disable the default navigation:
echo $avia_post_nav;Best regards,
IsmaelHi,
Glad that you were able to fix the initial issue. Have you tried setting another page as your 404 page?
If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.
Thanks!
Best regards,
IsmaelJune 11, 2019 at 9:47 am in reply to: Advanced Layout Builder – can't enable Layout meta box #1109058Hey Grant,
Thank you for using Enfold.
You can disable the block or gutenberg editor from the Enfold > Theme Options panel. Look for the “Select Your Editor” settings. Let us know if it makes any difference.
Best regards,
IsmaelHi,
Thanks for the update.
The account is still invalid. Please check it carefully. And make sure that the site is running on version 4.5.7.
The translations in the lang > de_DE.po file seem to be correct.
# @ avia_framework #: enfold/config-templatebuilder/avia-shortcodes/tab_section/tab_section.php:228 msgid "Display Tabs above content" msgstr "Reiter drüber anzeigen" # @ avia_framework #: enfold/config-templatebuilder/avia-shortcodes/tab_section/tab_section.php:229 msgid "Display Tabs below content" msgstr "Reiter darunter anzeigen"Are those the correct translations?
Best regards,
IsmaelHi,
Thank you for the update.
The images in the layer slider are not displaying because of Jetpack’s lazyload option. We disabled the plugin temporarily.
Best regards,
IsmaelHey Webvriend,
Thank you for your concerns.
We will ask @Gunter and @Kriesi to check this thread so that either one of them can you personally. Please wait for their response.
Best regards,
IsmaelHi,
Thank you for the info.
The gallery should be hidden on page load. You can use the following css code to do that.
.my-custom-gallery { display: none; }Turn on the custom css class field first so that you can apply a special class attribute (ex: my-custom-gallery) to the gallery.
You can then create a custom script that will toggle the visibility of the gallery when someone clicked on the “photo” button. The following function should help.
// http://api.jquery.com/toggle/
Best regards,
IsmaelHi,
Have you tried using the suggested plugin above to translate the strings or text?
// https://wordpress.org/plugins/loco-translate/
You can find more info in the plugin’s documentation.
// https://localise.biz/wordpress/plugin/beginners
Best regards,
IsmaelJune 11, 2019 at 4:58 am in reply to: The Events Calendar PRO Mobile View not working on Desktop or Mobile #1108995Hi,
Looks like a script is preventing the default action of the links, so it can’t open the assigned URL.
Please add this script in the functions.php file to override that script:
function ava_tribe_events_mobile_link(){ ?> <script> (function($) { $('#tribe-events-content a').on('click', function(e) { e.preventDefault(); window.location.href = $(this).attr('href'); }); })(jQuery); </script> <?php } add_action('wp_footer', 'ava_tribe_events_mobile_link');Thanks for the update.
Best regards,
IsmaelHi,
Thank you for the update.
Have you tried changing the tab title to “User Reviews” or “Customer Reviews” instead of just “Reviews”? It scrolls down because there is a container or anchor called “reviews” inside the tab section content.
It does scroll down on my end, but I can still access the whole page properly after.
Best regards,
IsmaelHi,
The theme is using the following filters to redirect to the page set as front page.
add_filter('pre_option_show_on_front', 'avia_show_on_front_filter'); add_filter('pre_option_page_on_front', 'avia_page_on_front_filter');You should be able to check that in the themes\enfold\includes\ folder. Look for the helper-template-logic.php file > avia_modify_front function.
Best regards,
IsmaelHi,
What is the login url for your WordPress site? The URL above takes us to a joomla site.
Thank you for the update.
Best regards,
IsmaelHi,
Thank you for the update.
We applied an additional custom css class to the icons and adjusted the script accordingly.
//------------------------------- // Social Media icons + tracking //------------------------------- add_action('wp_footer', 'ava_social_gtag'); function ava_social_gtag(){ ?> <script type="text/javascript"> (function($) { $('.cta-icons-kontakt-1 li:nth-child(1) a').on('click', function(e) { gtag('event', 'Click', { 'event_category': 'Whatsapp' }) }); $('.cta-icons-kontakt-1 li:nth-child(2) a').on('click', function(e) { gtag('event', 'Click', { 'event_category': 'Facebook' }) }); $('.cta-icons-kontakt-2 li:nth-child(1) a').on('click', function(e) { gtag('event', 'Click', { 'event_category': 'Phone' }) }); $('.cta-icons-kontakt-2 li:nth-child(2) a').on('click', function(e) { gtag('event', 'Click', { 'event_category': 'Email' }) }); })(jQuery); </script> <?php }The icons executes the gtag function now when clicked. (see private field)
Best regards,
IsmaelHi,
Awesome! Glad it worked. Please don’t hesitate to open a new thread if you need anything else.
Have a nice day.
Best regards,
IsmaelHi,
That hook removes the default sort element.
You have to disable that code because it removes the default sorting element for the shop page.
Best regards,
IsmaelHi,
I gave you the wrong link to the documentation. Sorry about that.
// https://kriesi.at/documentation/enfold/icon/#adding-your-own-fontello-or-flaticon-icons-
Your icon or image should have an svg format so that you can convert it to an icon font as described in the documentation above. That’s how you extend or include another icon font.
Best regards,
IsmaelHi,
You should try another compression plugin like Autoptimize instead of using the option in the theme.
// https://wordpress.org/plugins/autoptimize/
Let us know if it helps. Please open a new thread if it doesn’t make any difference. We’ll close this thread now.
Best regards,
IsmaelHi,
Sorry for the confusion. We are not asking you to select the parent category. You need to select the child or sub category so that the element will only display items that belong to that particular category. For example, if you have a parent category called “Parent” and two sub categories “Child A” and “Child B”, all you need to do is select the category “Child A”. The element will then only display items that belong to the category “Child A”. Do not select or highlight the parent category because it will display both “Child A” and “Child B” items.
Please post the login details in the private field so that we can check the portfolio setup. And additional screenshots will help.
Best regards,
IsmaelJune 11, 2019 at 3:25 am in reply to: Masonry Gallery pagination links jump to top of page instead of to gallery #1108962Hi,
I don’t have the budget for it though.
Moving to a child theme is quite easy, so there’s no need to hire someone else. Just follow the instructions in the documentation.
// https://kriesi.at/documentation/enfold/child-theme/#how-to-install-the-child-theme
If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.
Thanks!
Best regards,
IsmaelJune 11, 2019 at 3:23 am in reply to: Customize and show Next/Previous Buttons on Portfolio and Blog Post Entry Pages #1108961Hi,
Thanks for the update.
Use this css code to have the navigation display on load, without hovering.
.avia-post-nav .entry-info-wrap { width: auto; }Best regards,
IsmaelJune 11, 2019 at 3:13 am in reply to: Layerslider Text Padding to Match Content Width of Site #1108960Hi,
Thanks for the update.
We can’t access the dashboard using the account above. Did you disable it? We would like to check the slider settings.
Best regards,
IsmaelJune 11, 2019 at 3:11 am in reply to: Masonry gallery – "Load more" starts shaking the website + random border #1108959Hi,
Thanks for the update.
1-2.) This should adjust the size of the masonry image and get rid of the white border.
.av-masonry-image-container img { width: 100%; object-fit: cover; }Sorry for the delay. We ask users to avoid including multiple questions in a single thread, however closely related they are, so that other users can effectively search the forum. And to keep the thread as short as possible. Thank you for understanding.
Best regards,
IsmaelJune 10, 2019 at 12:59 pm in reply to: Portfolio grid display issue with Chrome and Firefox #1108810Hi,
Thanks for the update.
We adjusted the following line a bit and it seem to have fixed the issue. Please don’t forget to delete the cache prior to checking the page.
$(window).trigger('debouncedresize');Best regards,
IsmaelJune 10, 2019 at 12:53 pm in reply to: Masonry Gallery mobile Version do not work like the desktop Version #1108808Hi,
Thanks for the update.
You should wrap the code inside a css media query if you don’t want it to affect the desktop view.
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .main_color .container .av-inner-masonry-content, .main_color .container .av-masonry-entry .avia-arrow { background-color: transparent; } }Best regards,
IsmaelHi,
Thanks for the update.
The css code in the following threads should help adjust the header/sidebar breakpoint.
// https://kriesi.at/support/topic/changing-global-breakpoint-didnt-work/#post-1102885
// https://kriesi.at/support/topic/change-media-break-to-activate-burger-menu-in-enfold-photography/#post-1085626Best regards,
Ismael -
AuthorPosts
