Forum Replies Created
-
AuthorPosts
-
July 22, 2014 at 4:34 am in reply to: Child functions.php Not Overriding Parent functions.php #294146
Hi!
Gunter’s code should work. Did you upload the image again or regenerate the thumbnails? Use can use the suggested plugin above to regenerate the thumbnails or use this one: http://wordpress.org/plugins/regenerate-thumbnails/
Best regards,
IsmaelHi!
If you want to move the google analytics code inside the head tag, remove the ga code on the theme options then add this on functions.php:
function ava_ga() { $uacode = "UA-33354906-1"; // Set the UA code here, example "UA-33354906-1" $gacode = " <script type='text/javascript'> var _gaq = _gaq || []; _gaq.push(['_setAccount', '".$uacode."']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script> "; echo $gacode; } add_action('wp_head', 'ava_ga');Get your ga UA code, replace the default $uacode value. You can find it on this line:
_gaq.push(['_setAccount', 'UA-33354906-1']);Regards,
IsmaelHi daza84!
Thank you for visiting the support forum.
Try adding this on Quick CSS or custom.css to fix it:
header#header { -webkit-transform: translate(0); }Regards,
IsmaelHi!
Add this on Quick CSS or custom.css to change the background color of the html document:
html { background-color: #ffffff; }Cheers!
IsmaelHi Frank!
Thank you for using the theme.
They should be horizontally and vertically centered by default. Mind giving us the url to the actual page with the tables? We would like to check it.
Cheers!
IsmaelHi nicolasweh!
Thank you for the screenshot.
You’re using an old version of the theme, 2.4.2, which is not compatible with WP 3.9.1. Please download the latest version from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/
Note that upgrading to 2.9.1 from 2.4.2 might break some of the elements on the theme so you might need to reconfigure the options or create them from scratch.
Cheers!
IsmaelHey!
Instead of copying the HTML code of the google map, try to use the do_shortcode function with the help of a plugin. Refer to this link: https://kriesi.at/support/topic/jquery-needed-for-animations-to-work-on-viewpoint/#post-294123
Cheers!
IsmaelHi!
Thank you for the update.
No, unfortunately you can’t see the HTML code on the advance layout builder. You can use the do_shortcode ( http://codex.wordpress.org/Function_Reference/do_shortcode ) function then use a plugin to enable php on the editor. Install this plugin: https://wordpress.org/plugins/insert-php/
Best regards,
IsmaelHey pbennion!
Thank you for using the theme.
Do you mind if we take a look at the actual website? Please post it here. Make sure that you’re running Enfold 2.9.1 with the latest version of WordPress.
Best regards,
IsmaelHey tonyiatridis!
Thank you for visiting the support forum.
Do you have the latest version of the theme? I’m sorry I can’t seem to open the website. Please refer to this link for a possible fix: https://kriesi.at/support/topic/layer-slider-problem-before-update/#post-260563
Best regards,
IsmaelHey odmv91!
Thank you for visiting the support forum!
I checked the website but I don’t see two sliders appearing at the same time. I tested it using Chrome Windows 8.
Regards,
IsmaelHey Kate!
Thank you for using the theme.
Please go to Enfold > Export/Import panel then click the Import Dummy Data. :)
In case you have any questions, please take some time to review all of the resources in the Theme Documentation as a lot of basic stuff like theme installation, css snippets etc are already available in there with better explanation and awesomeness. Watch some of our Video Tutorials to learn more about the different aspect of the theme. You can also search the forums for queries that has been answered before that might be related to your problem.
If you find that you still have questions after taking the time on our documentations, don’t hesitate to let us know and we will be happy to assist you. If you have any requests or you feel like giving us a warm hug? You can definitely post it on our Feature Requests page. :)
Regards,
IsmaelHi P. Bert!
Thank you for using the theme.
I’m sorry but the theme doesn’t include a new plugin called Punch Font and I’m not sure if such plugin exist. Are you sure you’re using Enfold? Do you mind if we take a look at the actual website?
Best regards,
IsmaelJuly 21, 2014 at 9:36 am in reply to: How to achieve a boxed fixed layout for smaller screens like mobile? #293753Hi!
Thank you for using the theme.
Try to set the width of the boxed layout to 90% when viewing on smaller screens. Add this on Quick CSS or custom.css:
@media only screen and (max-width: 767px) { .responsive .boxed#top { width: 90%; } }Adjust the width if necessary.
Regards,
IsmaelHi fgrippe!
Thank you for using the theme.
Please post the website URL here. We would like to check it. I’m sure we can fix it via CSS.
Cheers!
IsmaelHey CloudChoice!
Thank you for visiting the support forum!
Edit the color section then add a Custom Background Color. Change it to white.
Regards,
IsmaelJuly 21, 2014 at 9:07 am in reply to: How do I make the Single Post with full-screen wide Featured image? #293744Hi Riavon!
Thank you for using the theme.
It’s actually not possible without modifying the theme files but I tried to recreate what you want via CSS:
.template-single-blog { width: 100% !important; } .template-single-blog main.content.units.twelve.alpha { width: 100%; } .template-single-blog main.content.units.twelve.alpha article > *, .template-single-blog main.content.units.twelve.alpha > * { width: 1030px; margin: 0 auto; float: none; } .template-single-blog main.content.units.twelve.alpha article .big-preview.single-big, .template-single-blog main.content.units.twelve.alpha article { width: 100%; }You need to use media queries to change the width of the blog post content.
Best regards,
IsmaelHi c2bailey!
Thank you for visiting the support forum!
Please post the url of the actual page here. We would like to check it. A screenshot will help. Try to adjust the content padding with this on Quick CSS or custom.css:
.content { padding-top: 10px; padding-bottom: 10px; }Cheers!
IsmaelHi arthurhpaulino!
Thank you for using the theme.
The code looks correct. Please edit functions.php, find this code on line 16:
if(isset($avia_config['use_child_theme_functions_only'])) return;Below, add this code:
add_filter( 'avf_google_heading_font', 'avia_add_heading_font'); function avia_add_heading_font($fonts) { $fonts['Yanone Kaffeesatz'] = 'Yanone Kaffeesatz:400,700,300,200'; return $fonts; } add_filter( 'avf_google_content_font', 'avia_add_content_font'); function avia_add_content_font($fonts) { $fonts['Yanone Kaffeesatz'] = 'Yanone Kaffeesatz:400,700,300,200'; return $fonts; }Best regards,
IsmaelHi!
Thank you for using the theme.
Please try to use the Contact Form 7 or Gravity Forms, see if that works. You need to check the server configuration if both plugins don’t work. Our contact form use the standard wp_mail function: http://codex.wordpress.org/Function_Reference/wp_mail to send emails. Please contact your server administrator for more info.
Regards,
IsmaelHey CloudChoice!
Thank you for using the theme.
I’m sorry but what do you mean by “opening inline element in the address url”? Can you please explain it a little bit further?
Cheers!
IsmaelHey 500Webmaster!
Thank you for using the theme.
Use this for the background and icon color:
.main_color .avia-icon-list .iconlist_icon { background-color: blue; color: red; }Regards,
IsmaelHi!
Did you use the advance layout builder to create the page? If yes then edit the homepage, look for the “Taladrado” image for example. On the image options, look for the Image Link. It is set to “No Link” by default so you have to add a link to those images either manually, or via lightbox etc.
In case you have any questions, please take some time to review all of the resources in the Theme Documentation as a lot of basic stuff like theme installation, css snippets etc are already available in there with better explanation and awesomeness. Watch some of our Video Tutorials to learn more about the different aspect of the theme. You can also search the forums for queries that has been answered before that might be related to your problem.
If you find that you still have questions after taking the time on our documentations, don’t hesitate to let us know and we will be happy to assist you. If you have any requests or you feel like giving us a warm hug? You can definitely post it on our Feature Requests page. :)
Best regards,
IsmaelHey 500Webmaster!
Thank you for visiting the support forum!
1.) Add this on Quick CSS or custom.css:
form.avia_ajax_form h3 { margin-bottom: 20px; }You can also leave the title field blank then add a special heading on top of the contact form element.
2.) Use this to change the initial state of the button:
.main_color input[type='submit'] { background: red; color: #ffffff; border-color: black; }This one for the hover state:
.main_color input[type='submit']:hover { background: black; color: #ffffff; border-color: red; }Regards,
IsmaelHi Pearwcz!
Thank you for using the theme.
Just to clarify, you want to add a space below the menu? You can do it via CSS or add a horizontal rule element. Set it as white space then adjust the height. If possible, please give us a link to actual page.
Best regards,
IsmaelHi!
Glad we could help. If you still have questions, let us know. :)
Regards,
IsmaelJuly 21, 2014 at 4:01 am in reply to: Blog grid with always the same preview picture of each category #293705Hi!
If you’re using the blog grid layout, edit config-templatebuilder > avia-shortcodes > postslider.php file. I’ll ask the rest of the support team to check the thread. Maybe they are available. If not, please hire a freelance developer to modify the blog for you.
Best regards,
IsmaelHey!
The code should work. Please remove browser cache then reload the page a few times. Give us the link to the actual website so that we can inspect it.
Best regards,
IsmaelJuly 21, 2014 at 3:55 am in reply to: Product Zoom issue — When I hover over the product nothing happens like in demo #293702Hi!
Did you regenerate the thumbnails after you change the thumbnail size? The theme will resize the catalog images to 450x450px by default so you have to upload larger image than the default size. The best way is to resize them to 450x450px using image editor before uploading them as product image.
Best regards,
Ismael -
AuthorPosts
