Forum Replies Created
-
AuthorPosts
-
September 3, 2019 at 6:38 am in reply to: Linien bei der Slide-Show auf den Satzspiegel begrenzen #1133224
Hey herzkirschen,
Vielen Danke, dass Sie Enfold verwenden.
Sie konnen diesen css code im der Quick CSS field verwenden, um den abschnitt schatten entfernen.
.avia-shadow { box-shadow: none; }Lassen es uns wissen, wenn es hilft.
Best regards,
IsmaelHi,
Thank you for the update.
We can’t seem to reproduce the issue on our end. We activated “Revisiones” in the Screen Options. Have you tried it on another computer or network?
Best regards,
IsmaelHi,
Sorry for the delay.
We didn’t know that you already opened a new thread.
Provide the login details in the private field so that we can see what’s going on with the plugin. And for additional help, please contact the plugin author.
Best regards,
IsmaelHey mclweb,
Thank you for using Enfold.
The cells are set to break to full width when the screen width is less than 767px. You can adjust that using the following css code.
@media only screen and (max-width: 1024px) { .responsive #top #wrap_all .av-flex-cells .no_margin { display: block; margin: 0; height: auto !important; overflow: hidden; padding-left: 8% !important; padding-right: 8% !important; } }`
Don’t forget to toggle the Enfold > Performance > File Compression settings after adding the css code.
Best regards,
IsmaelHi,
Thank you for the update.
Is this the watchlist page? (see private field)
Looks like you managed to adjust the product title or text to lowercase. Is that correct?
Best regards,
IsmaelSeptember 3, 2019 at 5:04 am in reply to: Avia Layout Builder not working with Plugin Popup Maker #1133191Hi,
@Leofiori: Can we access the site? Please open your own thread and post the necessary details in the private field. We’ll check the issue there.Best regards,
IsmaelHi,
How to set when reloads it starts from top so you can scroll back to bottom?
You can set the window’s scrollTop position to 0 on every page load. Would you like to implement that?
function ava_scroll_on_doc_ready(){ ?> <script> (function($){ $(document).ready(function() { $(window).scrollTop(0); }); })(jQuery); </script> <?php } add_action('wp_footer', 'ava_scroll_on_doc_ready');Add the script in the functions.php file.
Best regards,
IsmaelSeptember 3, 2019 at 4:32 am in reply to: Need to replace author name with guest-author if it exists #1133181Hi,
Do you want to add another name beside the author? Maybe you can use custom fields for that. This plugin might help.
// https://www.advancedcustomfields.com/
Enable the plugin, edit the post, add a custom field called “translated_by” and use the name of the translator as the value. In the includes > loop-index.php, get the custom field using the get_field function. Above this code:
echo '<span class="blog-author minor-meta">'.__('by','avia_framework')." ";..add this:
$translated_by = get_field('translated_by'); echo '<span class="blog-translator minor-meta">'.__('translated by','avia_framework')." "; echo '<span class="entry-translator">'; if($translated_by) echo $translated_by; echo '</span></span>';// https://www.advancedcustomfields.com/resources/get_field/
Best regards,
IsmaelHi,
I am sorry Ismael, I am not sure what URL you are trying to access.;
I was trying to access the cpanel using the URL that you provided above. We can’t reach the database and remove the “ghost” post if we can’t access the cpanel. (see private field)
Can you access the cpanel with that details?
Best regards,
IsmaelSeptember 3, 2019 at 4:18 am in reply to: Link to Tab in Tab Section Full-Width Submenu / active submenu color #1133175Hi,
Thank you for the update.
We added this script in the functions.php file.
function activateMenuItem(){ ?> <script> jQuery(document).scroll(function() { var sections = jQuery('.avia-section, .av-tab-section-container'), menu = jQuery('.av-submenu-container'), nav_height = menu.outerHeight(); jQuery(window).on('scroll', function() { var cur_pos = jQuery(this).scrollTop(); sections.each(function() { var top = jQuery(this).offset().top - 200, bottom = top + jQuery(this).outerHeight(); if (cur_pos >= top && cur_pos <= bottom) { menu.find('li').removeClass('active-menu-item'); menu.find('a[href="#' + jQuery(this).attr('id') + '"]').parent('li').addClass('active-menu-item'); } }); }); }); </script> <?php } add_action('wp_head', 'activateMenuItem');And this code in the style.css file.
/*—————————————- // CSS – Fullwidth Submenu highlight active menu //————————————–*/ /* Active menu styles */ #top .av-submenu-container .active-menu-item, #top .av-submenu-container .active-menu-item a { background: blue !important; color: red !important; } #top .av-submenu-container .av-subnav-menu > li > a { border-left-style: none !important; border-left-width: 0px !important; }The active menu item should be highlighted when you scroll to its designated section.
Best regards,
IsmaelHi,
Glad to know that you’ve found a solution. And thanks for sharing it. We’ll close the thread now.
Have a nice day.
Best regards,
IsmaelSeptember 3, 2019 at 3:58 am in reply to: Enfold (4.5.7.1-beta-2) Form missing senders email address #1133170Hi,
In the Newsletter signup form,
What do you mean? Are you using Mailchimp signup form? Please try to delete the contact form and add a new one. Make sure NOT to delete the default email field. Unfortunately, we don’t know if the firewall settings have something to do with it.
Best regards,
IsmaelSeptember 3, 2019 at 3:55 am in reply to: Table of contents widget: how to show it on top of the content of a post or page #1133169Hi,
Thank you for the update.
Yeah, that’s odd. We can’t find the script that’s doing that. What you can do is prepend it back to the “entry-content” container on page load using javascript.
// https://api.jquery.com/appendTo/
Best regards,
IsmaelHi,
You’re welcome. Glad we could help. Please feel free to open a new thread if you need anything else.
Have a nice day.
Best regards,
IsmaelSeptember 3, 2019 at 3:39 am in reply to: Text- and image-elements not visible when going live #1133161Hi,
Odd. We can see the issue on Firefox now. Looks like the animations are not working. We had to add this css temporarily to make the elements display.
.js_active .avia-slideshow li:first-child { visibility: visible; } .avia_transform.avia_desktop .av-animated-generic { opacity: 1; } .avia-slideshow li { opacity: 1; }We don’t see any error, so we are not really sure why the animations are not working in your installation. Please try to upgrade the theme from v4.5.7 to v4.6. The upgrade might help fix the issue.
Best regards,
IsmaelHi,
Thank you for the update.
We moved the color sections around, updated the page and brought them back to their original position, then updated the page again. We did that to regenerate the shortcodes and remove the unnecessary spaces.
Best regards,
IsmaelHi,
Thank you for the update.
Do you import the parent theme options after activating the child theme? Right after the theme activation, go to the Enfold > Import/Export panel and import the parent theme options.
Yes, please create a backup of the site. Let us know when it’s ready.
Best regards,
IsmaelSeptember 3, 2019 at 3:08 am in reply to: Erweiterter Text-Editor / Textfarbe / individuelle Farben (default) #1133157Hi,
@COLORIT: Thank you for the info. He’s referring to the default editor or the tinymce’s color picker.Best regards,
IsmaelSeptember 3, 2019 at 3:06 am in reply to: Bilderanzeige in "Medien" defekt nach Änderung von Widgets #1133156Hi,
Danke fur das Update.
Die Anmeldeinformationen sind falsch. Wir konnen nicht auf das Dashboard zugreifen. Bitte überprüfen Sie es sorgfältig. Sind Sie sicher, dass Sie keine cached Version der Seite suchen?
Best regards,
IsmaelHi,
Thank you for the update.
there is no option to hide the 2nd image on a tablet as it does on a mobile?
Yes, you’re correct. Use this css code to adjust the media condition so that the selected cells are hidden on tablet view.
@media only screen and (max-width: 1024px) { .responsive #top .av-hide-on-mobile, .responsive #top .av-hide-on-tablet { display: none !important; } }Best regards,
IsmaelSeptember 3, 2019 at 2:42 am in reply to: Help image fallback does not follow the slider minimum height set in option #1133151Hi,
This shouldn’t have needed any revision if the code was correct in the first place
The image slides’ minimum width and left position are calculated on the fly, so they are resized differently compare to the fallback image. Yes, I agree. This calculation should be applied to the fallback image as well.
Best regards,
IsmaelHi,
Sorry for the late response.
We can’t access the sites because they are asking for the “flywheel” credentials. Please include it in the private field. For the meantime, try to regenerate the thumbnails using the following plugin.
// https://wordpress.org/plugins/regenerate-thumbnails/
Best regards,
IsmaelHi,
Thank you for using Enfold.
@dynamicdesignsnw: The login details didn’t work. Please provide a valid account so that we can check the dashboard.
@yohopower: Do you have the latest version of the theme (v4.6)? Please create a thread and include the necessary details in the private field. We’ll check the issue there.Best regards,
IsmaelSeptember 2, 2019 at 12:56 pm in reply to: How to edit the Category page like as the post page? #1132957Hi,
Thanks for the update.
Do you want the archive pages to have a grid layout? You can set that in the Enfold > Blog Layout panel. Set the “Blog Layout” to “Grid Layout”. Now, this is not going to work if you’re using WooCommerce, but it doesn’t seem like that’s the case, so it’s fine.
Best regards,
IsmaelHey honkatech,
Thank you for using Enfold.
Are you using the default product template? This is actually a known Woocommerce issue.
// https://github.com/woocommerce/woocommerce/issues/22896#issuecomment-477074896
Please follow the suggestions there.
Best regards,
IsmaelSeptember 2, 2019 at 7:16 am in reply to: Text- and image-elements not visible when going live #1132849Hey Wulius,
Thank you for using Enfold.
The site looks fine on our end — checked it on Firefox Windows 10. See screenshot.
Screenshot: https://imgur.com/a/He8EShV
Where are you testing it? Please provide a screenshot.
Best regards,
IsmaelHey jp,
Vielen Dank, dass Sie Enfold verwenden
Konnen Sie uns einen Link zur Seite oder Webseite geben, damit wir die Menuitems prüfen konnen? Haben Sie versucht, die Farbe im General Styling panel zu ändern?
LG,
IsmaelSeptember 2, 2019 at 6:57 am in reply to: Enfold (4.5.7.1-beta-2) Form missing senders email address #1132843Hi,
Sorry for the delay.
Are you saying that the value of the email field in the contact form is not being included in the email content? Please try to deactivate the plugins temporarily, then test the form again. Did you activate the recaptcha option?
Best regards,
IsmaelSeptember 2, 2019 at 6:52 am in reply to: Enfold Masonry Blog – Modern Tribe Calendar & Other posts #1132842 -
AuthorPosts
