Forum Replies Created
-
AuthorPosts
-
Hi,
Thank you for the update.
Try to add this hook inside the category or archive template.
do_action( 'woocommerce_before_single_product' );This is where the wc_print_notices function or the wrapper woocommerce_output_all_notices is hooked.
Best regards,
IsmaelJanuary 23, 2020 at 9:42 am in reply to: old version of Enfold theme – someone else purchased and it needs to be updated – help? #1177469Hi,
@thetechpro: We would like to apologize for any inconvenience the update may have caused you. Upgrading from an old version of the theme v3.5.4 to the latest one v4.7.2 is indeed quite tricky because a lot has change since — new options, features, code refactors and bug fix, so errors are unavoidable. To prevent this issue from ever happening again and to save time, please make it a habit to update the theme whenever a new patch is available.
Thank you for your patience.
Best regards,
IsmaelHey analogetontraeger,
Thank you for the inquiry.
You should be able to add a widget inside the header using the available hooks inside the header template. Please check the documentation below for more info.
// https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area
Best regards,
IsmaelHi,
Thank you for following up.
We are not seeing the border below the second masonry element in the Members page. Did you manage to remove it?
Best regards,
IsmaelJanuary 22, 2020 at 1:52 pm in reply to: Advanced editor not working: running Enfold 4.6.3.1, PHP 7.2.24, and WordPress 5 #1177184Hi,
Thank you for the update.
Can you give us a direct link to a page or post with the issue? The advance layout builder is working when we open this page. (see private field)
Best regards,
IsmaelJanuary 22, 2020 at 1:44 pm in reply to: Google Analytics not tracking after Enfold theme update #1177181Hi,
Thank you for the info.
The Google Analytics script is functioning properly when we check the site. As you can see in the screenshot below, the script is collecting data from the site — sending a pageview hit type.
Screenshot: https://imgur.com/a/S67X8TK
We noticed that the Privacy & Cookies options are disabled. Did you disable it just now?
Best regards,
IsmaelJanuary 22, 2020 at 1:30 pm in reply to: WPML Language switcher offers languages in which no content is available #1177176Hey LMS,
Thank you for the inquiry.
The Enfold > Blog Layout > Blog Layout setting is set to “Use the advance layout builder..”, but the blog page itself is empty, so it’s not displaying anything. We added the Blog Posts element in the blog page. Please make sure that the settings or theme options for each language are set correctly.
Best regards,
IsmaelHi,
Thank you for the update.
The modification is intended for default or top headers, so it’s not going to work on a left/right header. We might be able to make it work by replacing the following line..
htmlString = $('#header_main .social_bookmarks:first').find('li a'),.., with:
htmlString = $('#header_main .av-sidebar-social-container:first').find('li a'),If it didn’t work, post the login details in the private field so that we can test the script. Make sure that the Appearance > Editor panel is accessible.
Best regards,
IsmaelHey Manuel,
Thank you for the inquiry.
The following steps should help you troubleshoot the issue with the contact form.
// https://kriesi.at/documentation/enfold/contact-form/#my-contact-form-is-not-sending-emails-
Setting the from address to the default WordPress mail address usually helps.
Best regards,
IsmaelJanuary 22, 2020 at 10:46 am in reply to: Adjusting JPEG compression via functions.php file (works only in theme file!) #1177104Hi,
Alright. What is the exact error? Can you post it here? Try to increase the priority value of your custom jpeg_quality filter.
Example:
function my_custom_jpeg_filter() { return 50; } add_filter('jpeg_quality', 'my_custom_jpeg_filter', 999);The priority value of the filter above is set to 999 — default is 10. It should override those with lower priority.
Best regards,
IsmaelHi,
Can we access the site? We tried to use the login account above, but it says that the username is unknown. Please check the info carefully, or provide another user account.
Thank you for your patience.
Best regards,
IsmaelHi,
Thank you for the update.
You don’t need to register them again. The popup_elements function will automatically register everything inside the elements array including the screen visibility options template. Please check the existing shortcode files and look for the popup_elements function so that you can recognize the pattern. For example, in the codeblock.php shortcode file, the following block of code inside the pop_elements function creates the Advanced tab and the toggles including the Responsive > Element Visibility and the Developer Settings.
array( 'type' => 'tab', 'name' => __( 'Advanced', 'avia_framework' ), 'nodescription' => true ), array( 'type' => 'toggle_container', 'nodescription' => true ), array( 'type' => 'template', 'template_id' => $this->popup_key( 'layout_settings' ) ), array( 'type' => 'template', 'template_id' => 'screen_options_toggle' ), array( 'type' => 'template', 'template_id' => 'developer_options_toggle', 'args' => array( 'sc' => $this ) ), array( 'type' => 'toggle_container_close', 'nodescription' => true ),Best regards,
IsmaelJanuary 22, 2020 at 10:13 am in reply to: Problem uploading images via Masonry Gallery in Portfolio #1177091Hey Magnus,
Thank you for the inquiry.
We found these errors in the console when we tried to edit the masonry gallery in a test page.
SyntaxError: missing ] after element list 10 avia-modal.js:712:8note: [ opened at line 712, column 0avia-modal.js:712 TypeError: this.obj._listeners is undefinedbackbone.min.js:1:3747It is working properly when the Enhanced Media Library PRO plugin is deactivated. Please contact the plugin authors for additional assistance.
Best regards,
IsmaelJanuary 22, 2020 at 9:47 am in reply to: Änderungen im Gutenberg-Editor werden nicht angenommen #1177043Hi,
Thank you for the update.
The style of the button should be added inline or directly in the html, but for some reason it’s not working in your installation. Please try to deactivate the plugins temporarily.
We are not able to reproduce the issue on our end. Check the screenshot below.
Screenshot: https://imgur.com/a/49DTypJ
Best regards,
IsmaelHey gregorh,
Thank you for the inquiry.
The option is inside the Advanced > Privacy Settings panel. Set the Lazy Load Videos to the third option. Please make sure that the theme is upgraded to version 4.7.2.
Best regards,
IsmaelHey John,
Thank you for the inquiry.
The font file loads in less than 200ms on our end without anything blocking it. Where did you test it? Please check the screenshot below.
// https://imgur.com/a/xcAsor3
Best regards,
IsmaelHi,
Thank you for the update.
This one should work. It will exclude the current portfolio item from the portfolio grid element.
add_filter('avia_post_grid_query','avf_post_grid_query_mod', 10, 2); function avf_post_grid_query_mod($query, $params) { if(is_singular('portfolio')) { $query['post__not_in'] = array(avia_get_the_ID()); } return $query; }Best regards,
IsmaelHi,
Thank you for the update.
The patch is now available in your Themeforest account. You can manually download it from there, or use the automatic updater from the theme. Let us know if the issue persists after upgrading the theme to 4.7.2.
Best regards,
IsmaelHey gregorh,
Thank you for the inquiry.
The plugin is probably not able to read or fetch the video URL inside the shortcodes in the pages. Please try to ask the authors how the plugin index the videos and ask them if there is an available filter that we can use to include additional URLS in the index. We might be able to extract URLs from the shortcodes generated by the advance layout builder and manually include them in the index using the filter.
Best regards,
IsmaelHi,
Thank you for the update.
We added this code in the Quick CSS field to adjust the position of the background container on tablet view.
.home #av_section_1 .av-parallax-inner { background-size: cover !important; top: 150px; }Best regards,
IsmaelHey navindesigns,
Thank you for the inquiry.
You can adjust the look of an option element but only to a limited extent because its style is browser dependent. You can try this css code for example.
.gform_wrapper select option { background: #000000; color: #ffffff; }Best regards,
IsmaelHey Pelikan Co KG,
Thank you for the inquiry.
The sliders from the theme doesn’t have that option, but you might be able to accomplish it using the layer slider plugin. Look for the Slider Settings > Slideshow > Cycles, and set the Cycles field value to 1 so that the slider will not repeat or restart.
Best regards,
IsmaelHey spitsdesign,
Thank you for the inquiry.
Did you disable the privacy & cookie option from the theme? You might have to delete the local storage or the browser cache including the cookies before checking it again.
Best regards,
IsmaelJanuary 22, 2020 at 2:56 am in reply to: recaptcha not working on my site since update to 4.6 #1176990Hi,
@hunter74: Please open a new thread and post the necessary details in the private field. We’ll check the issue there. Thank you.Best regards,
IsmaelJanuary 22, 2020 at 2:44 am in reply to: API Schlüssel für Google Maps kann nicht angesetzt werden. Keine Verbindung #1176989Hi,
Thank you for the update.
We didn’t find the API key in the Google Services > Map field. Please add it back so that we can see the error. Did you create a new project for the site in your Google Cloud Console?
Best regards,
IsmaelHi,
Thank you for the update.
@Dzimnikov: The hotspot image is stretched out or distorted because of the following css code.div#bottleview img.avia_image { height: 700px !important; width: 341px !important; }Where did you add the custom shortcode function for the shop page?
@ryanqb: Thank you for chiming in. Please create a new thread and post the necessary details in the private field.Best regards,
IsmaelJanuary 22, 2020 at 2:16 am in reply to: Responsiveness Issue on mobile device on woocommerce my account order page #1176987Hi,
Thank you for the update.
Would you like to remove the column containing the “View” buttons? The following css code should help.
.woocommerce-orders-table__header.woocommerce-orders-table__header-order-actions, .woocommerce-orders-table__cell.woocommerce-orders-table__cell-order-actions { display: none !important; }Best regards,
IsmaelJanuary 22, 2020 at 2:11 am in reply to: Hide .av_minimal_header on scrolling when using transparent header #1176986Hi,
Thank you for the info.
The header should have a background on scroll by default, but it’s not displaying because of the following css code.
.header-scrolled .header_bg { display: none !important; background-color: #ffffff !important; }It was added in the Quick CSS field.
Best regards,
IsmaelJanuary 21, 2020 at 4:47 pm in reply to: Adjusting JPEG compression via functions.php file (works only in theme file!) #1176828Hi,
Thank you for the update.
Can you post the error sent in your email? Did you copy the code from your email? Try to copy the code directly from the forum to avoid character conversion.
Best regards,
IsmaelHi,
Thank you for following up.
You should be able to create a new shortcode path in the child theme directory using the following filter. This will allow you to override existing shortcodes and create custom ones. Please check the documentation below for more info.
// https://kriesi.at/documentation/enfold/intro-to-layout-builder/#add-elements-to-alb
Best regards,
Ismael -
AuthorPosts
