Forum Replies Created
-
AuthorPosts
-
February 26, 2019 at 4:49 pm in reply to: Woocommerce / duplicate variables in the shopping cart #1071870
Hi,
Thanks for the update.
When I create a new article, the variable in the shopping cart is issued twice.
What do you mean by article? Please provide a screenshot of the issue because the product pages look fine.
Best regards,
IsmaelHi,
Thank you for using Enfold.
Have you tried adding a custom link to the masonry gallery images? You can see that field right before adding the image to the gallery. And providing the actual link to the page with the masonry gallery will help as @michaelH requested.
Best regards,
IsmaelHi,
Thanks for the update.
Yes, you can override that settings with css code. Try this:
.container .av-content-small.units { width: 85%; }If you would like to follow the golden ratio, best content to sidebar option is 73% | 27%.
Best regards,
IsmaelHi,
Thanks for the update.
You can use this filter in the functions.php file to change the cart icon.
add_filter('avf_default_icons','avia_replace_standard_icon', 10, 1); function avia_replace_standard_icon($icons) { $icons['cart'] = array( 'font' =>'entypo-fontello', 'icon' => 'ue85a'); return $icons; }The default icon character code is “uf290”. You can also upload your own icon if you don’t like that one.
// https://kriesi.at/documentation/enfold/icon/#adding-your-own-fontello-or-flaticon-icons-
Best regards,
IsmaelFebruary 26, 2019 at 7:23 am in reply to: Theme shortcodes not working in LearnDash lessons #1071655Hey keribird,
Thank you for using Enfold.
Could you give us a direct link to the lessons with the broken shortcodes? Have you tried setting the theme to use the classic editor? You can find that option in the Enfold > Theme Options > Select Your Editor section.
Best regards,
IsmaelHi,
Thanks for the update.
That is how the layer slider plugin handles links added via the layers’ Links & Attributes > Linking field. If you want to satisfy the evaluation tool, you have to remove that link and then replace it with a button or a text link instead.
Best regards,
IsmaelHi,
Thanks for the update.
You can use this filter to manually unset or disable specific thumbnails.
Or install the Simple Image Sizes plugin if you don’t to use the filter.
// https://wordpress.org/plugins/simple-image-sizes/
Best regards,
IsmaelFebruary 26, 2019 at 6:53 am in reply to: Need a reply from an Enfold developer who knows the Avia Template Builder #1071639Hey domainarchitect,
Thank you for using Enfold.
$clean_data = $this->get_posts_alb_content( $post_ID );That line is just an abstraction of this code.
$clean_data = get_post_meta( $post_id, '_aviaLayoutBuilderCleanData', true );That particular field (_aviaLayoutBuilderCleanData) contains the builder content or the actual shortcodes of the post.
Best regards,
IsmaelFebruary 26, 2019 at 6:33 am in reply to: Hide Video Title and YouTube Branding in the full screen slider #1071637Hey projectt_co_uk,
Thank you for using Enfold.
We can’t see the issue on our end. Could you provide a screenshot? Is the “Hide Video Controls” option enabled?
Best regards,
IsmaelHi,
Thanks for the update.
Another user reported the same issue and the solution that he provided on that thread should help fix the display temporarily.
// https://kriesi.at/support/topic/blurry-text-on-chrome/#post-1066519
You need to add this code to disable the default style.
avia-chrome #top .avia-content-slider, .avia-chrome #top .avia-content-slider-inner { perspective: unset; }Best regards,
IsmaelFebruary 26, 2019 at 6:09 am in reply to: How to make video automatically play when landing on page? #1071633Hey Nathan,
Thank you for using Enfold.
This is no longer possible because of the browsers’ recent changes in the media autoplay policy.
// https://developers.google.com/web/updates/2017/09/autoplay-policy-changes
Chrome’s autoplay policies are simple:
Muted autoplay is always allowed.
Autoplay with sound is allowed if:
User has interacted with the domain (click, tap, etc.).
On desktop, the user’s Media Engagement Index threshold has been crossed, meaning the user has previously play video with sound.
On mobile, the user has [added the site to their home screen].
Top frames can delegate autoplay permission to their iframes to allow autoplay with sound.Best regards,
IsmaelHi,
Thanks for the update.
You can use this css code to change the color of the secondary menu items to white.
.header_color .sub_menu>ul>li>a { color: #ffffff; } .header_color .phone-info { color: #ffffff; }If you want to include the social icons, add this:
.header_color .social_bookmarks a { color: #ffffff; }Please don’t forget to toggle the Enfold > Performance > File Compression settings after adding the modifications.
Best regards,
IsmaelHi,
UPDATE: I found some errors when I checked the “recent news” page. Please set the builder to debug mode so that we can inspect the actual shortcodes.
// https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode
Best regards,
IsmaelHi,
We would like to apologize for the late response.
You have to set the front and the blog page on the Enfold > Theme Options panel. If you want to use the advance layout builder for your posts or blog page, set the Enfold > Blog Layout > Blog Layout to the very last option.
Best regards,
IsmaelHey jojoba007,
Thank you for using Enfold.
Could we take a look at the dashboard? Please post the login details in the private field.
Best regards,
IsmaelHi,
The solution of @rsplaul is what I have to implement now for more clients and I hope a future update will not overwrite it
Do you have a child theme? You should put that filter in the child theme’s functions.php file to keep it from being overwritten during updates.
Best regards,
IsmaelHey restube,
Thank you for using Enfold.
The heading elements should be adjusting automatically on mobile view. Is the site live? Please post the site url so that we can inspect the element. We can use css media queries to adjust the font size for mobile view.
// https://www.w3schools.com/cssref/css3_pr_mediaquery.asp
Best regards,
IsmaelHi,
Thanks for the update.
We’ve added a script in the functions.php file, which would help adjust the portfolio items’ position once the page is fully loaded.
add_action('wp_footer', 'ava_auto_resize'); function ava_auto_resize(){ ?> <script> (function($){ $(window).on('load', function() { $(window).trigger('resize'); $(window).trigger('av-content-el-height-changed'); }); })(jQuery); </script> <?php }Best regards,
IsmaelHey!
I added a condition to the script so that it only affects the default posts. ( see private field )
Cheers!
IsmaelFebruary 26, 2019 at 12:33 am in reply to: Mobile Sticky Headers' Logo to big, but only on Iphone, works with Chrome #1071563Hey check-t,
Thank you for using Enfold.
This css code should help limit the height of the logo on mobile view.
@media only screen and (max-width: 767px) { .responsive #top .av_header_transparency .logo { height: 62px !important; } .responsive .logo img { max-height: 62px; } }Best regards,
IsmaelHi,
Thanks for the update.
You have to set the global variable $post.
// https://codex.wordpress.org/Function_Reference/$post
The code would look something like this:
function add_portfolio_punchline() { global $post; // more code hereBest regards,
IsmaelHi,
Thanks for the update.
We added the following css code and then modified the snippet in the functions.php file a bit.
.big-preview a { height: auto; width: 100%; }Best regards,
IsmaelHi,
Thanks for the update.
Remove the widget with the search icon and then add this code in the functions.php file to render the actual search icon inside the main header container.
add_action( 'ava_main_header', 'avia_append_search_nav_mod', 9997 ); function avia_append_search_nav_mod() { $search = ''; global $avia_config; ob_start(); get_search_form(); $form = htmlspecialchars(ob_get_clean()) ; $search .= '<div id="menu-item-search" class="noMobile"> <a href="?s=" rel="nofollow" data-avia-search-tooltip="'.$form.'" '.av_icon_string('search').'><span class="avia_hidden_link_text">'.__('Search','avia_framework').'</span></a> </div>'; echo $search; }Best regards,
IsmaelFebruary 25, 2019 at 10:50 am in reply to: How to change the Portfolio pages display order in the category? #1071205Hey mpq1470,
Thank you for using Enfold.
Are you referring to the portfolio category pages? Please explain your request a bit more so that we can understand it. The “pre_get_posts” hook might help.
// https://codex.wordpress.org/Plugin_API/Action_Reference/pre_get_posts
Best regards,
IsmaelHey pavlika,
Thanks for the update.
We are able to reproduce the issue on Chrome, Windows 8 but we’re not sure what’s causing it. The flipbox css code looks fine. Did you add any modifications to the theme? Please post the login details in the private field so that we can inspect the issue further.
Best regards,
IsmaelFebruary 25, 2019 at 10:34 am in reply to: Enfold Mailchimp subscription widget Not working #1071191Hi,
@artngo: It seems to be working properly when I test it. Which widget is not working?Screenshot: https://imgur.com/a/WXx9xGr
@jojoba007: Could you give us a link to the actual site?
@ChichesterDesign: Did you select a mailchimp list from the widget?Best regards,
IsmaelFebruary 25, 2019 at 10:26 am in reply to: Problem with update to 4.5.4 Update package Not available #1071187Hi,
We would like to apologize for the late response.
The site is already running on version 4.5.4. Did you update it manually?
Best regards,
IsmaelHey metafora29,
Thank you for using Enfold.
Where did you add the contact forms? We can’t find it anywhere in the home or the contact the page. And we also noticed that the sites are not running on the latest version of the theme. Please upgrade to version 4.5.4.
Best regards,
IsmaelFebruary 25, 2019 at 7:49 am in reply to: How can I implement "Organization" Structured Data? #1071151Hi,
Thanks for the update.
Replace the “wp_head” hook with “wp_footer” so that it inserts the code before the body closing tag instead of inside the head tag.
Best regards,
IsmaelFebruary 25, 2019 at 7:41 am in reply to: Enfold page builder layout broken with All In One SEO Pack compatibility issue #1071150Hi,
Thank you for the update.
Our developer added a fix for that particular issue, but it may require some testing. Please edit the config-templatebuilder/avia-template-builder/php/shortcode-template.class.php file and then replace everything with this code:
// https://pastebin.com/376ikyBJ
Let us know if it changes anything.
Best regards,
Ismael -
AuthorPosts
