Forum Replies Created
-
AuthorPosts
-
Hi!
You should make the strings translatable. Please refer to this link on how to do it: http://codex.wordpress.org/I18n_for_WordPress_Developers
Regards,
IsmaelHey!
There’s a script error from avia.js file. Please try to deactivate the plugins then test it again. Did you modify anything on that file? If possible, get a new copy of avia.js then override the old one.
Cheers!
IsmaelSeptember 5, 2014 at 6:03 am in reply to: Specify image dimensions – GtMetrix – Layerslider blank.gif #313815Hey!
Yes, that will be the case. Or you can purchase the layer slider then install it as a standalone plugin. Add this on functions.php to disable the default layer slider:
add_theme_support( 'deactivate_layerslider' );Cheers!
IsmaelHey vanderburg!
Thank you for using Enfold.
Please use this on Quick CSS or custom.css:
span.avia_iconbox_title { font-family: 'Oswald', sans-serif; font-size: 15px; }Add this on functions.php:
function oswald_font() { ?> <link href='http://fonts.googleapis.com/css?family=Oswald' rel='stylesheet' type='text/css'> <?php } add_action('wp_head', 'oswald_font');Cheers!
IsmaelHi alfincobain!
Thank you for using Enfold.
Edit functions.php, find this code on line 160:
'facebook' => array( 'font' =>'entypo-fontello', 'icon' => 'ue8f3'),Replace it with:
'facebook' => array( 'font' =>'entypo-fontello', 'icon' => 'ue920'),Regards,
IsmaelHi faterra!
Thank you for using Enfold.
You can change the line height and font size of the text with this:
body, body p { line-height: 26px; font-size: 15px; }Best regards,
IsmaelHey esemmel!
Thank you for using Enfold.
You can refer to this link: https://kriesi.at/support/topic/how-can-i-make-the-post-title-appear-above-the-featured-images-on-the-blog-page/
Best regards,
IsmaelHey!
Thank you for using Enfold.
Please try to deactivate the minify settings then check it again on another browser or computer. If you want to compress the theme scripts, please try this plugin: https://wordpress.org/plugins/bwp-minify/
Add this on functions.php to exclude some stylesheets:
add_filter('bwp_minify_style_ignore', 'exclude_my_css'); function exclude_my_css($excluded) { $excluded = array('avia-custom', 'avia-layout'); return $excluded; }Cheers!
IsmaelHi Tech!
Thank you for using Enfold.
You can create a static page on another website then add an iframe to show the actual enfold site. Something like this:
<iframe src="http://www.myenfoldsite.com" width="400" height="500"></iframe>Cheers!
IsmaelHey!
Thank you for the screenshot.
I checked the site on Chrome and the youtube video loads fine. It does take some time before it shows. There are lot of https errors or insecure content on the site, maybe because of a plugin.

Best regards,
IsmaelSeptember 5, 2014 at 4:47 am in reply to: Looks like a bug: left:245px in the comments section #313777Hi snyderl!
Thank you for using Enfold.
We can’t see the comment form if we’re not logged in. Please give us a temporary account. A screenshot of the issue will help.
Cheers!
IsmaelSeptember 5, 2014 at 4:46 am in reply to: If I click on "Proceed to checkout" page is reloaded but is blank #313776Hi profumopuntoit!
Thank you for using Enfold.
Please go to Woocommerce > Settings > Checkout panel then set the Checkout page and its endpoints.
Regards,
IsmaelHey Jagrav!
Thank you for using Enfold.
I’m sorry but you will have to modify the core theme files if you want to show the category image. The easiest way is to insert column layouts then add an Image element for each category. Link the category images on the category pages.
Best regards,
IsmaelHi!
Thank you for using Enfold.
What is the current resolution of your monitor? When you say resize the browser, you mean “zooming the browser out”? Please add this on Quick CSS or custom.css:
@media only screen and (min-width: 1600px) { #top #main .sidebar { left: -1px; } }Regards,
IsmaelSeptember 5, 2014 at 4:18 am in reply to: Enfold > Portfolio Ajax > Change portfolio grid images on hover #313772September 5, 2014 at 4:15 am in reply to: I'm contributing a free Child "screenshot.png" for anybody that wants to use it #313769Hi thjnk_ag!
Thank you for using Enfold.
Please contact your host and ask them to enable the ZipArchive php class which is currently disabled on your installation.
Best regards,
IsmaelHey peterd!
Thank you for using Enfold.
You can use this:
#top .avia_ajax_form .text_input, #top .avia_ajax_form .select, #top .avia_ajax_form .text_area { padding: 10px; height: 50px; }Best regards,
IsmaelHey peterd!
Thank you for visiting the support forum.
You can remove the border radius with this on Quick CSS or custom.css:
body div .avia-button, .avia_image { border-radius: 0; }Best regards,
IsmaelHey peterd!
Thank you for using the theme.
First, add the “peter” on the ID Section field of the Color Section. Your code should work by then. If possible, please give us a link to the actual website. We would like to inspect the Color Section.
Best regards,
IsmaelHi pbennion!
Thank you for using Enfold.
1.) If you want to have a next section button on the color section, please refer to this link: https://kriesi.at/support/topic/color-section-background-image-as-url/
2.) It is not actually full screen, it is a standard height chosen to cater most screen sizes.
3.) You can use the Fullscreen Slider if you want a “fullscreen” slider. There’s a difference between Fullwidth Easy Slider and Fullscreen Slider.
Best regards,
IsmaelHi!
Thank you for the info.
Have you tried deleting the enfold_child.css inside the dynamic_avia folder? Regenerate it again by toggling any settings on Enfold > Theme Options. Please activate the child theme then we’ll check the General Styling panel. Before activating the child theme, export the theme settings file then import it back after.
Best regards,
IsmaelHi ihf-eramstad!
Thank you for using Enfold.
You need to add the _trackEvent() method on the button. Edit config-templatebuilder > avia-shortcodes > button.php. Find this coed on line 226:
$output .= "<a href='{$link}' class='avia-button ".$this->class_by_arguments('icon_select, color, size, position' , $atts, true)."' {$blank} {$style} >";Add the onclick attribute provided by GA. Refer to this link: https://developers.google.com/analytics/devguides/collection/gajs/eventTrackerGuide#SettingUpEventTracking
You should replace the code above with something like this:
$output .= "<a href='{$link}' onClick='_gaq.push(['_trackEvent', 'Videos', 'Play', 'Baby\'s First Birthday']);' class='avia-button ".$this->class_by_arguments('icon_select, color, size, position' , $atts, true)."' {$blank} {$style} >";Best regards,
IsmaelHey Tim!
Thank you for using Enfold.
My answer on that query is a bit abrupt and a little misguided. Anyway, I’m not sure why it is closed. It is true that Color Sections will always be fullwidth and it will always push the sidebar below. What you can do to avoid this is to set the page to No Sidebar then use the Widget Area element and place it inside a column layout, either on top or bottom of a Color Section. Basic setup would be 3/4 column plus 1/4 column, all content placed on the 3/4 column and the Widget Area element on the 1/4 column which is basically the sidebar. You can then place the Color Section on top or bottom of the columns.
Cheers!
IsmaelHey!
Thank you for using Enfold.
Please refer to this link on how to fix it: https://kriesi.at/support/topic/accordion-slider-msg-error/#post-299271
Best regards,
IsmaelHey MennoPlace!
Thank you for using Enfold.
Do you have any plugin or server cache? Or maybe it’s just a browser cache? Try creating a new post then check the masonry page on another browser or computer.
Best regards,
IsmaelHey Cora!
Thank you for using Enfold.
Looks like you’re using the NextGen Gallery plugin as lightbox. Unfortunately, we don’t provide support for third party plugins as stated on our support policy. The latest version of the theme has a different lightbox plugin (MagnificPopUp) which is probably not compatible with NGG.
Regards,
IsmaelHey!
What is the website? Please create another thread. I’ll close this one for now.
Best regards,
Ismael -
AuthorPosts
