Forum Replies Created
-
AuthorPosts
-
Hi,
Thank you for the update.
Where can we see the page with the pdf files? Did you test it on another computer or network?
Best regards,
IsmaelJuly 11, 2018 at 1:33 am in reply to: Fresh install, getting 'Saving didn't work!' error message. #983924Hey whonym,
Thank you for using Enfold.
The address leads me to a 404 page. Is that the correct address? Please check it carefully. T
The theme’s documentation should help you get started. :)
// https://kriesi.at/documentation/enfold/
Ask us here in the forum if you need further assistance.
Best regards,
IsmaelHi,
Thank you for using Enfold.
Is this fixed? It was probably cached. You have to toggle or re-saved the theme options to regenerate the scripts and stylesheets.
Best regards,
IsmaelHey mhlebee,
Thank you for using Enfold.
The EN version is set to “maintenance mode”. Please configure the EN’s theme options.
Best regards,
IsmaelHey integritive,
Thank you for using Enfold.
This thread should help.
This fix or something similar is going to be included in the next patch.
Best regards,
IsmaelJuly 11, 2018 at 1:24 am in reply to: wp_enqueue_media() not working on frontend after latest update #983920Hey kaoh,
Thank you for using Enfold.
Where can we see the issue? The theme doesn’t contain any hooks or filters that should interfere with the wp_enqueue_media function. The theme actually loads the same script on the theme options page.
Best regards,
IsmaelHi,
The FTP access is invalid and I can’t get in on the dashboard. It redirects to a blank page which says “Blocked”. Please ask your hosting provider if they’re blocking any IP or countries from accessing the site. You may also need to disable the security plugin if you installed one.
Best regards,
IsmaelHi,
Awesome! 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,
Awesome! Glad that you figured it out. Please feel free to open a new thread if you need anything else. :)
Best regards,
IsmaelHey joshuamadrid,
Thank you for using Enfold.
Which specific element are you trying to modify? Please provide the css code that you’ve added in the style.css file. A link to the actual page will also help.
Best regards,
IsmaelJuly 11, 2018 at 1:09 am in reply to: "taxonomy-portfolio_entries.php" kills content of may website #983913Hey frankeee,
Thank you for using Enfold.
You don’t need to put the “taxonomy-portfolio_entries.php” file inside the “shortcodes” folder. Just put it directly in the child theme folder. Remove the filter if you don’t intend to modify the shortcode files.
Best regards,
IsmaelHey Moregraphics,
Thank you for using Enfold.
You should add the code right below this line.
$post = get_post( avia_get_option( 'footer_page', 0 ) );Or replace it with…
$post = get_post( avia_get_option( 'footer_page', 0 ) ); if(function_exists('pll_current_language')) { $slug = pll_current_language('slug'); $post = get_post( pll_get_post($post->ID, $slug) ); }Best regards,
IsmaelHi,
Thanks for the update.
This thread might help.
// https://kriesi.at/support/topic/masonry-element-flickering-on-load-more/#post-969885
Best regards,
IsmaelHi,
You need to add the latest analytics tracking snippet first.
// https://developers.google.com/analytics/devguides/collection/analyticsjs/
Implement the page tracking after enabling the analytics.js file.
// https://developers.google.com/analytics/devguides/collection/analyticsjs/pages
You can also create goals and trigger an analytics event based on a specific action (ex: ‘click’).
// https://developers.google.com/analytics/devguides/collection/analyticsjs/events
Best regards,
IsmaelJuly 10, 2018 at 2:35 pm in reply to: Default Lightbox must be activated for this feature to work #983697Hi,
The cookie “aviaPrivacyGoogleTrackingDisabled” is set to true when I visited the site and disabled the “av_privacy_google_tracking” button. If set to true or if the cookie exists, google tracking is disabled. (see private field)
Best regards,
IsmaelHi,
Thank you for using Enfold.
1.) The plugin “Post Types Order” alters the default orderby query of the masonry items. Disabling the plugin make the sorting function work again.
2.) That is the default behavior of the category sort. The category will only display when an item that belongs to that particular category is visible in the page.
Best regards,
IsmaelHey cipriana,
Thank you for using Enfold.
Edit the layer and then go to the Styles panel. Add the css property in the Custom CSS field.
text-shadow: 5px 5px 3px #000000;Best regards,
IsmaelHey Moondreamer21,
Thank you for using Enfold.
Adjust the padding property instead.
#top .av_minimal_header #s { padding: 7px 47px 7px 5px; }Best regards,
IsmaelHey joschro,
Thank you for using Enfold.
Where did you add the caption? The caption inside the lightbox is fetched from the images’ title or alt attribute.
Best regards,
IsmaelHey Guenter,
Yes, I did notice the advanced settings and I think I’ve tried to prepend or append a slider to a parent container before but had no success. Did you manage to make it work?
Best regards,
IsmaelHey Aline,
Thank you for using Enfold.
Mind if we take a look at the contact form? Please provide a link to the page. You can try this filter to set the autorespose email to null when the senders didn’t check the box.
add_filter('avf_form_autoresponder_from', 'avf_form_autoresponder_from_mod', 55, 3); function avf_form_autoresponder_from_mod( $to, $post, $params ) { if($post['3_1'] == false) { $to = null; } return $to; }Best regards,
IsmaelHey intimadecom,
Thank you for using Enfold.
This css code should center align the gallery items.
#top div .avia-gallery img { margin: 0 auto; float: none; position: relative; display: block; }Best regards,
IsmaelHey Andy,
Thank you for using Enfold.
Links from youtube or vimeo will automatically open inside a lightbox. You can add the video url to any elements with links such as button, image etc.
Best regards,
IsmaelHey catchbudapest,
Thank you for using Enfold.
The theme sets the highest possible quality for the uploaded image. The filter is in the functions-enfold.php file but you can override it in your child theme.
/** * Sets the default image to 100% quality for more beautiful images when used in conjunction with img optimization plugins * * @since 4.3 * @added_by Kriesi */ function av_return_100(){ return 80; } add_filter('jpeg_quality', 'av_return_100'); add_filter('wp_editor_set_quality', 'av_return_100');Default return value is 100.
Best regards,
IsmaelHey Tommy,
Thank you for using Enfold.
There is no option for that by default but you can use the Quick CSS field to specify the maximum height of given color section.
Example:
#color_section { max-height: 200px; }Replace the “color_section” with the Section ID value.
Best regards,
IsmaelJuly 10, 2018 at 12:42 pm in reply to: Change the sender name "WordPress" from autoresponder #983617Hey Stefano,
Thank you for using Enfold.
Use the “avf_form_from” filter to change the default “from” address.
Example: https://kriesi.at/support/topic/change-from-in-contact-form/#post-978160
You may also need to use the “avf_form_autoresponder_to” filter to set the autoresponse address if autoresponse is enabled.
Best regards,
Ismael-
This reply was modified 7 years, 9 months ago by
Ismael.
Hey Nicola_90,
Thank you for using Enfold.
Is this happening on every page? For the map, you need to generate a Google Map API key.
// https://developers.google.com/maps/documentation/javascript/get-api-key#key
Please create an online development site so that we can inspect the issue.
Best regards,
IsmaelHey Nicola_90,
Thank you for using Enfold.
Is this happening on every page? For the map, you need to generate a Google Map API key.
// https://developers.google.com/maps/documentation/javascript/get-api-key#key
Please create an online development site so that we can inspect the issue.
Best regards,
IsmaelHey hylandgraphics,
Thank you for using Enfold.
These plugins might help to prevent spams and get rid of third party scripts.
// https://wordpress.org/plugins/sucuri-scanner/
// https://wordpress.org/plugins/wordfence/Related article: https://www.wpbeginner.com/opinion/sucuri-review-how-sucuri-helped-us-block-450000-wordpress-attacks-in-3-months/
Best regards,
IsmaelJuly 10, 2018 at 1:32 am in reply to: Need immediate help, please-Enfold conflicting with WP-Admin login. Error code #983449Hey RockSolidGear,
Thank you for using Enfold.
You should ask your hosting provider to increase the default memory limit to at least 256M. It is probably set to 64M.
// https://docs.woocommerce.com/document/increasing-the-wordpress-memory-limit/
Best regards,
Ismael -
This reply was modified 7 years, 9 months ago by
-
AuthorPosts
