Forum Replies Created
-
AuthorPosts
-
Hi,
Happy new year!
Did you adjust the selector here?
$( '#my-selection' ).css( "color", c ); $( '#my-color' ).css( "color", c );You may need to target the heading tag directly.
#heading-color h4If you want to apply the changes to multiple elements, make sure to use the class attribute or name and not the ID attribute. An ID should be unique and should be only applied to a single element.
Example:
$( '.change_this_element' ).css( "color", c );Best regards,
IsmaelHi,
Thank you for the update.
We cannot open the zip file for some reason. Please provide a direct link to the flaticon fonts so that we can create a different zip file.
How many fonts are there? Try to limit the font icons to 5 per zip file and make sure that they are all monocolored icons. If the icons with black and fill options are getting rejected, try to upload a different set of font icons with different styling.
Best regards,
IsmaelHey Chiefi,
Thank you for the inquiry.
Instead of applying the background to the color section, try to add a 1/1 column element inside the section and apply the background to it. You can adjust the font size and other element styling in the Enfold > General Styling panel or edit the element and go to the Styling tab.
Best regards,
IsmaelJanuary 4, 2022 at 8:12 am in reply to: Is there a way to have multiple videos play in the same element? #1334150Hey Julio,
Thank you for the inquiry.
This is not available in the theme by default but you can use a learning management system (LMS) plugin such as Sensei, Learndash or Learnpress, which offers this kind of functionality.
// https://www.learndash.com/
// https://wordpress.org/plugins/learnpress/
// https://wordpress.org/plugins/sensei-lms/Best regards,
IsmaelHey omega388,
Thank you for the inquiry.
1.) What do you mean? Why do you have to upload the enfold zip file again?
2.) That is the compressed css and js files. If you want to disable it, please go to the Enfold > Performance panel and disable the File Compressions settings.
Happy new year!
Best regards,
IsmaelHey dondela,
Thank you for the inquiry.
We are not yet sure why the error occurs but it might be due to the image name. Temporarily, you can remove the 1 pixel images and use this css code to limit the width of the slider entries on mobile view.
@media only screen and (max-width: 479px) { .responsive #top #wrap_all .avia-logo-element-container .slide-entry { width: 25%!important; } }Best regards,
IsmaelHey sitesme,
Thank you for the inquiry.
It might be due to a custom css that limits the button or element width. Please post the site URL in the private field so that we can inspect the elements.
Best regards,
IsmaelHey koomo,
Thank you for the inquiry.
You can use a plugin such as the Contact Form 7 and create a custom shortcode that retrieves a certain contact form based on the value of a query parameter.
This is an example of the default contact form shortcode.
[contact-form-7 id="1234" title="Contact form 1"]You can create another custom shortcode based on the default one and instead of embedding the value of the id attribute directly, you will retrieve the value of a specific query parameter from the URL and use it as the contact form ID.
Example:
[contact-form-7 id="'. $_GET["contact_form_id"] .'" title="Contact form 1"]The URL may look something like this.
https://site.com/form?contact_form_id=1234To learn more about custom shortcodes, please check this documentation.
// https://codex.wordpress.org/Shortcode_API
Please note that this kind of customization is beyond the scope of support and additional help from third party developers might be necessary.
Best regards,
IsmaelHey laptophobo,
Thank you for the inquiry.
You may need to contact the plugin developers because they are more familiar with the plugin. We are not really sure how the plugin actually renders the image. You may need to embed the html directly instead of using the shortcode.
Best regards,
IsmaelHi,
Thank you for the update.
We modified the script a bit and added a timeout so that it doesn’t execute immediately on page load. It is working correctly now. Please make sure to purge the cache before checking.
// deep linking to Portfolio Ajax add_action( 'wp_footer', 'enfold_customization_portfolio_linking', 999 ); function enfold_customization_portfolio_linking() { ?> <script type = "text/javascript"> (function($) { $(document).ready(function(){ setTimeout(function() { $('.post-entry-'+ getUrlParameter('custom_ajax') +' .grid-image').trigger("click"); }, 500); }); })(jQuery); function getUrlParameter(sParam) { var sPageURL = window.location.search.substring(1); var sURLVariables = sPageURL.split('&'); for (var i = 0; i < sURLVariables.length; i++) { var sParameterName = sURLVariables[i].split('='); if (sParameterName[0] == sParam) { return sParameterName[1]; } } } </script> <?php }Best regards,
IsmaelHey michaelmiller68,
Thank you for the inquiry.
You have to set the Styling > Table Styling > Table Purpose to the second option (Use the table to display tabular data) if you want every columns in the row to align automatically, or ensure that the columns will have the same height.
Best regards,
IsmaelHey mbesh,
Thank you for the inquiry.
1.) The issue with the images occurs because of an error in the themes/angular/js/aviapoly.js, around line 1436.
if ($.browser.msie && $.browser.version < 9) { animTime = 600; }$.browser functions have been removed from the latest version of jQuery starting from version 1.9. Downgrading jQuery to an older version might fix the issue.
2.) Please note that Enfold and Angular are completely different themes and don’t share the same functionality. The global templates on Angular cannot be converted to Enfold templates. You will have to recreate them manually from scratch using the Advance Layout Builder from Enfold.
As you may already know, we have removed older themes from Themeforest including Angular since 2020, which also ended the product support. There has been no update or compatibility fixes since, so any issues that will arise from then on will have to be forwarded to a different developer.
// https://kriesi.at/archives/wordpress-5-0-and-enfold-4-5-1
Best regards,
IsmaelHey Alwin,
Thank you for the inquiry.
Yes, you are correct. The lazy loading option for images is disabled by default irregardless of the global option, which can be adjusted in Enfold > Performance > Lazy Loading settings, so you have to set it manually. But please note that when the global settings is disabled, it will override and also disable the elements’ lazy loading option.
Best regards,
IsmaelHey w,
Thank you for the inquiry.
Are you using any posts sorting plugin? These types of plugin could alter the default posts query and affect the Blog Posts element or template. Temporarily, you can try this filter in the functions.php file to completely exclude the job_application post type from the blog posts grid layout.
add_filter("avia_post_slide_query", function($query) { unset($query["post_type"]["job_application"]); return $query; }, 10, 1);Let us know if that helps.
Best regards,
IsmaelHi,
Yes, that should be possible. Just create a new Enfold installation, export the _layerslider table, then import it to the actual site. Hopefully, it will fix the issue with the layer slider. You may need to import a demo first if the _layerslider table does not exist.
Best regards,
IsmaelHi,
Thank you for the info.
We could define the minimum and maximum height of the image but it might get distorted on certain screen sizes. If that is not a problem, try try this css code.
img.wp-image-3530.avia-img-lazy-loading-not-3530.avia_image { height: 50vh !important; max-height: 50vh !important; min-height: 50vh !important; }You may need to apply a custom css class name or ID to the image element and replace the css selector above.
Best regards,
IsmaelHi,
Thank you for all the info.
We cannot be really sure what happened in the past months but according to the graph, the traffic is now coming back to normal or to what it used to be before the incident. We also checked the site today and the tracker seems to be working as it should as shown in the screenshot below. Please observe the site in the coming days or weeks and let us know if the issue happens again.
Happy holidays to both of you!
Best regards,
IsmaelHi,
Thank you for the update.
We adjusted the script in the functions.php file a bit. What we did is check for the text inside the clicked button and apply the corresponding color to the text within the target section. The modified script is below.
/**************************** * Apply Color Scheme *****************************/ function apply_color_scheme() { ?> <script> (function($) { $( '#button-row a' ).on( "click", function(e) { e.preventDefault(); var color = $(this).find(".avia_iconbox_title").text(); var c = "white"; switch (color) { case "Blanc": c = "white"; break; case "Bleu": c = "blue"; break; case "Rouge": c = "red"; break; case "Vert": c = "green"; break; default: break; } $( '#my-selection' ).css( "color", c ); $( '#my-color' ).css( "color", c ); }); })(jQuery); </script> <?php } add_action('wp_footer', 'apply_color_scheme');Best regards,
IsmaelHi,
Thank you for the info.
We may need to access the server in order to debug the issue further. Please post the FTP login details in the private field so that we can check the site.
Best regards,
IsmaelHi,
Thank you for the info.
Which icon fonts exactly? Please provide a direct link to the font set so that we can test it on our end. We cannot open the existing zip file in the media library for some reason.
Best regards,
IsmaelHey bluestare,
Thank you for the inquiry.
It only looks like the sidebar is cut off because of this css code, which applies a background to the sidebar container.
.sidebar { background-color: #8e2851 !important; }To fix it or to make it look like the background is completely covering the sidebar, you will have to adjust the width of the content and add a padding to the right of the sidebar container.
.container .av-content-small.units { width: 67%; } .sidebar { padding-right: 50px; }Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css code.
Best regards,
IsmaelDecember 23, 2021 at 2:41 pm in reply to: enfold menu on left no scroll on iPad (landscape format ) #1333870Hi,
Thank you for the update.
Are you testing it on an iPad Pro? Adjusting the max-width value should work on tablet with wider screens. And make sure to purge the cache or remove the browser history before testing the page.
Best regards,
IsmaelHi,
Thank you for the clarification.
In the portfolio editor, you can define a custom link by adjusting the Additional Portfolio Settings > Overwrite Portfolio Link settings to the second option (Define custom link). You can then manually define the URL in the Link portfolio item to external URL field.
Best regards,
IsmaelHi,
Thank you for the update.
As it turned out, there is already a gradient color option in the button editor. Please set the Styling > Colors > Button Colors Selection settings to the second option to display the advance options, then select the very last option in the Button Background Color settings.
Best regards,
IsmaelHey Julien,
Thank you for the inquiry.
Are the newly generated files still 12 GB in size? How many posts and pages are there in total? It might be due to the post css files, which is a dedicated stylesheet or css file for each post. You can disable this feature by adding this filter in the functions.php file.
/** * Filter to skip css file generation. * You can add logic to skip for certain pages/posts only. * * @since 4.8.6.1 * @param boolean $create * @return boolean true | false or anything else to skip generation of css file */ function custom_avf_post_css_create_file( $create ) { return false; } add_filter( 'avf_post_css_create_file', 'custom_avf_post_css_create_file', 10, 1 );Best regards,
IsmaelHey wock_legacy,
Thank you for the inquiry.
Only one title will render in the post based on the selected blog style. Where can we see an example of the duplicated title? You might be referring to the default title container, which can be toggled in the Enfold > Header > Header Title and Breadcrumbs settings.
Best regards,
IsmaelDecember 23, 2021 at 1:10 pm in reply to: Blog Post Grid Display – Remove Category & Limit Excerpt Characters #1333855Hey KellyKilgallon,
Thank you for the inquiry.
We cannot find the blog posts section in the home page. Where did you place it? Please provide a direct link to the page containing the blog posts element.
Best regards,
IsmaelHey enfold,
Thank you for the inquiry.
You have to adjust the menu item URL a bit. The site refreshes because the menu item link or URL is different from the actual domain name. You can omit the domain name and use the anchor directly instead. (see private field)
Best regards,
IsmaelDecember 23, 2021 at 1:02 pm in reply to: Translate just countdown information (days, hours, minutes, seconds) #1333852Hey enfold,
Thank you for the inquiry.
Did you set the site language to Spanish? You can set it back to English in the Settings > General > Site Language options. You can also use this plugin to translate a specific text or string.
// https://wordpress.org/plugins/say-what/
Best regards,
IsmaelHey KellyKilgallon,
Thank you for the inquiry.
We could apply a minimum height to the title container with css but it will leave a line of empty space on items with shorter titles. Please try this css code.
.av-masonry-entry-title.entry-title { min-height: 38px; }Also, please make sure to use images with the size for every masonry items.
Best regards,
Ismael -
AuthorPosts
