Forum Replies Created
-
AuthorPosts
-
Hi,
Thank you for the screenshots.
You can use the following filter to add a custom button inside the masonry content but it won’t trigger the quickview container because the masonry item is already a link in and of itself. You may need to create a custom script to trigger the quickview container when you clicked on the custom button.
add_filter('avf_masonry_loop_prepare', 'avia_change_default_link', 10, 2); function avia_change_default_link($loop, $entries) { { if($loop['post_type'] == "product") { $more = "<span class='add_to_cart'>".__('Add to cart', 'avia_framework')."</span>"; $loop['content'] .= $more; } return $loop; }Best regards,
IsmaelHey taylorwedo,
Thank you for contacting us.
The site is using another theme called “Synergia”, not “Enfold”. Are you sure that’s the correct url? The error refers to a non-existent custom icon font files. Did you upload a custom icon font in the Enfold > Import/Export > Iconfont Manager section?
Best regards,
IsmaelHi,
Thank you for using Enfold.
The site is running on an older version of the theme, 4.2.2. Please upgrade to version 4.4.1. That should fix the issue with theme options and the builder.
// https://kriesi.at/archives/the-complete-guide-to-updating-enfold
Best regards,
IsmaelHey MysticMimi,
Thank you for using Enfold.
Are you trying to create your own products? Which element are you trying to configure? A screenshot from imgur or dropbox` will help.
Best regards,
IsmaelJune 26, 2018 at 1:39 am in reply to: Google Maps are not free anymore – July 16th billing changes – what's your plan? #977729Hey royaltask,
UPDATE: Looks like they’re going to remove the free 25,000 request per day limit and replace it with a $200 monthly free credit.
Can I still use Google Maps Platform for free?
Yes. Starting July 16, 2018, when you enable billing, you get $200 free usage every month for Maps, Routes, or Places. Based on the millions of users using our APIs today, most of them can continue to use Google Maps Platform for free with this credit.That is more than enough for common websites.
Best regards,
IsmaelHi,
You can create or add multiple custom icons in the filter. Example.
// Register new icon as a theme icon function avia_add_custom_icon($icons) { $icons['Spotify'] = array( 'font' =>'fontello', 'icon' => 'ue800'); $icons['Netflix'] = array( 'font' =>'fontello', 'icon' => 'ue801'); $icons['Slack'] = array( 'font' =>'fontello', 'icon' => 'ue802'); return $icons; } add_filter('avf_default_icons','avia_add_custom_icon', 10, 1); // Add new icon as an option for social icons function avia_add_custom_social_icon($icons) { $icons['Spotify'] = 'spotify'; $icons['Netflix'] = 'spotify'; $icons['Slack'] = 'slack'; return $icons; } add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);Adjust the icon name and icon code. You may also need to adjust the “font” parameter based on how you named the custom font.
Best regards,
IsmaelJune 26, 2018 at 1:20 am in reply to: logoslider images not showing in translated page (WPML) #977725Hey zarlekin,
Thank you for using Enfold.
You have to re-select the images manually because it’s still using the thumbnails from the first language.
Best regards,
IsmaelHi,
You’re welcome! You should visit Palawan or Siargao when you get here. :)
Best regards,
IsmaelJune 26, 2018 at 1:11 am in reply to: Mobile Menu Showing on Desktop After Enfold Upgrade to 4.9.6 #977722Hey Cary,
Thank you for using Enfold.
Disable the css/js compression in the Enfold > Performance panel, purge the cache and re-minify the scripts and stylesheets if the BWP Minify or Autoptimize plugin is installed. You may also need to re-configure the Main Menu and Header settings.
Best regards,
IsmaelHi,
Thanks for the update.
We didn’t modify anything aside from adding the custom css code. The post content should be wider than before.
Best regards,
IsmaelJune 26, 2018 at 1:05 am in reply to: Chrome problem with autoplay video with sound. Need unmute button for video. #977720Hi,
The theme applies special class attributes to the html tag based on the current browser. You can use that to display a different element for Safari users. Example:
.element-to-display { display: none; } .avia-safari .element-to-display { display: block; }Best regards,
IsmaelHi,
Thanks for the update.
We didn’t login to the site because you’re just asking where the prefined colors are coming from so we explained it. I’m not sure who changed that. Did you create a backup or a restore point? Please ask your hosting provider to restore the site from a backup.
Best regards,
IsmaelHi,
I replaced the files in the folder as you suggested, and all my custom work that I paid someone to do broke
You should ask him/her to re-implement the changes properly because what he did is not in accordance with the theme development standards.
// https://codex.wordpress.org/Theme_Development#Theme_Development_Standards
Unfortunately, we can’t help you trace back these modifications. Please contact the previous contractor or visit our partner, Codeable.
// https://kriesi.at/contact/customization
Best regards,
IsmaelHi,
Thanks for the update.
We modified the structure a bit. The send button is now located below the captcha form.
Best regards,
IsmaelHi,
Thanks for the update.
My bad. It turned out that the style.css file is generated by the “Improved Variable Product Attributes for WooCommerce” plugin. Please disable the plugin temporarily and contact the author for additional help.
Best regards,
IsmaelJune 26, 2018 at 12:34 am in reply to: [SOLVED]Adding shortcode to event list Events Calendar pro #977711Hi,
Thanks for the update.
Use the elements’ Screen Options instead of the fall back image. The options there can be easily understood. It enables you to display different elements on various screen sizes.
Best regards,
IsmaelHi,
That is possible but you’ll have to modify the config-templatebuilder > aviashortcodes > google_maps > google_maps.js file. Look for this code around line 286.
full = new google.maps.Size(size , size ) ; //marker sizeAdjust the value of the size parameter.
full = new google.maps.Size(143, 143) ; //marker sizeNOTE: The default marker size settings will be ignored when you do this modification.
Best regards,
IsmaelHi,
Download the latest version from your themeforest account then update the theme via FTP.
// https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#update-via-ftp
// https://kriesi.at/archives/the-complete-guide-to-updating-enfoldBest regards,
IsmaelHi,
Thanks for the update.
We placed the filter in the functions.php file. The additional informations tab should not be displayed now.
Best regards,
IsmaelHi,
Thanks for the update.
The FTP login details are not valid. Please check it carefully. Try this filter.
add_filter( 'woocommerce_product_tabs', 'av_remove_product_tabs', 98, 1 ); function av_remove_product_tabs( $tabs ) { unset( $tabs['additional_information'] ); return $tabs; }It works on my installation.
Screenshot: https://imgur.com/a/PzfKDJn
Best regards,
IsmaelHi,
Thanks for the update.
Use this css code to adjust the width of the container inside the “block360” section.
.responsive #top #wrap_all #block360 .container { width: 100%; max-width: 100%; margin: 0; padding: 0; }Best regards,
IsmaelHi,
You have to set the “Header” > “Header Layout” > “Menu and Logo Position” to the 4th option if you want to place the menu below the logo and the header widget.
Best regards,
IsmaelHi,
Thanks for the update.
i also paid for the layerslider plugin
You have to deactivate the theme’s layer slider plugin in the Enfold > Layout Builder > “Integrated (Bundled) LayerSlider Plugin” settings. Select the second option and then install the paid version of the layer slider in the Plugins panel.
Best regards,
IsmaelHi,
Thanks for the update. You should not put your mouse over the element or shortcode’s buttons (template, clone, edit) when you want to drag or move it. It works fine on a test page. (see private field)
Best regards,
IsmaelJune 25, 2018 at 5:26 am in reply to: Image logo with subtext – on mobile and tablett displays over burger #977313Hi,
Am I right with the positioning of your code or doesn’t it matter?
It doesn’t matter where you put the code but css media queries are usually added at the very bottom of the stylesheet or the Quick CSS field because it’s supposed to override the default styles. Please provide the login details in the private field. And provide a screenshot of the expected header layout on mobile view.
Best regards,
IsmaelHi,
Thank you for the update.
The blog page is set as posts page in the Settings > Reading panel. We reset the options to default and then adjusted the Enfold > Blog Layout settings. It should display the full content of the posts. If you don’t like the current blog settings or style, just change it to something else.
Best regards,
IsmaelHey amin0o,
Thank you for using Enfold.
Did you purge the cache after the update? You may also need to disable the theme’s css/js compression in the Performance panel features. Let us know if it helps.
Best regards,
IsmaelHey Pearl,
I hope you’re doing good! :)
I don’t think one of us or the team created that website but it is using Enfold. This is one of our themes and is available on Themeforest if you’d like to check it.
// https://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990?s_rank=1
// https://themeforest.net/item/enfold-psd-/5189320?s_rank=2Let us know if we can help you with anything else.
Best regards,
IsmaelHi,
Thank you for using Enfold.
Yes, you can’t use the template as a global element but there’s another element called “Page Content”. You can use that element to display the content of a particular post or page. It’s the same as a global template.
Best regards,
IsmaelHi,
Thanks for the update.
This script might help fix the issue.
// https://kriesi.at/support/topic/masonry-gallery-overlapping-images/#post-911462
It will trigger the resize event causing the masonry items to reposition until the page is fully loaded.
Best regards,
Ismael -
AuthorPosts
