Forum Replies Created
-
AuthorPosts
-
Hey!
Thank you for the update.
I checked the website again but the mega menu only got one image on it and there is a weird bright green color on the submenu. Please add the images again on the mega menu. We need to inspect it.
Cheers!
IsmaelHey!
Thank you for the update.
Please use this instead:
#top .fullsize .template-blog .blog-meta { display: none; } time.date-container.minor-meta.updated, span.text-sep.text-sep-date, span.blog-author.minor-meta, span.text-sep.text-sep-cat { display: none; }Remove browser cache then reload the page a few times.
Cheers!
IsmaelHi venturephoto!
Thank you for using Enfold.
Do you mind if we take a look at the actual page? You can somehow remove the padding with this:
#header .avia_mega_div .units { padding: 0; }You might still need to adjust the width of the mega menu units.
Cheers!
IsmaelSeptember 2, 2014 at 10:16 am in reply to: Child theme – open links of post format link in a new window #312166Hey frescova!
Thank you for using Enfold.
You can copy the whole post type link function on the child theme’s functions.php. Copy this one: http://pastebin.com/aRZjTdYT
Best regards,
IsmaelHi paolomusic!
Thank you for using Enfold.
There are scripts errors on avia.js and shortcodes.js when I checked the site. Please override the whole theme files again via ftp. If that doesn’t work, deactivate all plugins then test it on another browser.
Best regards,
IsmaelHey satucker!
Thank you for using Enfold.
Maybe you have category called photography. You can change the title of the photography page or change the slug of the photography category.
Cheers!
IsmaelHey indy1003!
Thank you for using the theme.
You can’t remove the actual pages but you disable the author links on Enfold > Blog layout > Blog meta elements. Disable the Blog Post Author. You can also redirect all author links to another page. Add this on functions.php:
add_filter( 'author_link', 'my_author_link' ); function my_author_link() { return home_url(); }Cheers!
IsmaelSeptember 2, 2014 at 9:57 am in reply to: Iconbox – is it possible to add our own image to the icons? #312156Hi Peter!
Thank you for using Enfold.
I’m sorry but the screenshot is on your localhost. Please use imgur, dropbox etc for the screenshot.
Regards,
IsmaelHey!
No problem. Glad you figured it out. If you still have questions, let us know. :)
Regards,
IsmaelHi!
Thank you for the update.
That is why you need to use media queries to adjust the width on different screen sizes.
@media only screen and (min-width: 768px) and (max-width: 989px) { #adjust-section .container { width: 750px; } #adjust-section .container .twelve.units { margin-left: 0; width: 750px; } }Please refer to this link to learn more about media queries: http://css-tricks.com/css-media-queries/
Cheers!
IsmaelHi krisfosh!
Thank you for using the theme.
Please go to the Media Library then delete all images that doesn’t have the correct thumbnail. After that, regenerate the thumbnails using this plugin: http://wordpress.org/plugins/regenerate-thumbnails/
Another user is having the same issue and fix it with this solution: https://kriesi.at/support/topic/gallery-edit-issues/#post-277654
Best regards,
IsmaelHey comcom77!
Thank you for using Enfold.
You might need to contact your host because this is a server configuration issue. Try to increase the wordpress php memory limit. Please refer to this link: http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP
Best regards,
IsmaelHi khrystian!
Thank you for using Enfold.
You can add this on functions.php:
add_action('avia_meta_header', 'ava_icl_language_selector'); function ava_icl_language_selector(){ do_action('icl_language_selector'); }Cheers!
IsmaelHi jlhaisma!
Thank you for using Enfold.
If you want to use the accordion slider as fullwidth then you have to enable the Advance Layout Builder for posts. Add this on functions.php:
add_theme_support('add_avia_builder_post_type_option'); add_filter('avf_builder_boxes','enable_boxes_on_posts'); function enable_boxes_on_posts($boxes) { $boxes[] = array( 'title' =>__('Avia Layout Builder','avia_framework' ), 'id'=>'avia_builder', 'page'=>array('page','post', 'portfolio'), 'context'=>'normal', 'expandable'=>true ); $boxes[] = array( 'title' =>__('Layout','avia_framework' ), 'id'=>'layout', 'page'=>array('page','post', 'portfolio'), 'context'=>'side', 'priority'=>'low'); $boxes[] = array( 'title' =>__('Additional Portfolio Settings','avia_framework' ), 'id'=>'preview', 'page'=>array('page','post','portfolio'), 'context'=>'normal', 'priority'=>'high' ); return $boxes; }Unfortunately, there maybe some issues when using ALB on posts. You won’t have the share section and the comment section by default. You need to add it manually using the advance layout builder.
Cheers!
IsmaelHi!
Thank you for using Enfold.
The layout box should be there by default. Do you mind if take a look at the actual website? You can also create your own shop using the advance layout builder. Insert the Product Grid element under Plugin Additions panel. 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,
IsmaelHi!
Thank you for the info.
You added this on grid.css:
html { min-width: 910px; }Cheers!
IsmaelHi broodjekaas!
Thank you for using Enfold.
You don’t need to use a plugin if you want to use the Open Sans google font. You can set it on Enfold > General Styling > Fonts panel.
Cheers!
IsmaelHey!
Thank you for the update.
I tested this on my end and the shrink header doesn’t cover the scrolled section. Make sure that you’re running the latest version of the theme plus WordPress 3.9.2. If the site is already live, we would like to check it.
Regards,
IsmaelSeptember 2, 2014 at 9:09 am in reply to: Social sharing and printer friendly icons at the end of posts using ALB #312120Hey!
Thank you for using Enfold.
Note that we don’t usually provide support for those who want to use the ALB for posts because of issues such as this one. If you want the share section entry below the post content, you can use this:
add_filter('avf_template_builder_content', 'avia_add_social_toolbar_template_builder', 10, 1); function avia_add_social_toolbar_template_builder($content = "") { if(is_single()) { $content .= '<div class="container">'; $content .= avia_social_share_links(array(), false); $content .= '</div>'; $content .= '<div style="height:1px; margin-top:50px;" class="hr"></div>'; } return $content; }Cheers!
IsmaelHi Kayzel!
Thank you for using Enfold.
You can use this for the caption title:
h2.avia-caption-title { font-size: 50px; }This one for the caption content:
.avia-caption-content { font-size: 25px; }Cheers!
IsmaelHey medtronica!
Thank you for using the theme.
Do you mind if we take a look at the actual page? You can try this on Quick CSS or custom.css:
.template-blog .blog-meta { display: none; }Best regards,
IsmaelHey!
Thank you for the info.
You can use these:
#header .avia_mega_div { border-radius: 20px; } .container_wrap.container_wrap_first.main_color.sidebar_right { border-radius: 20px; }The header is a bit tricky, I’m not sure if you can apply a border radius on the main container and menu container separately. Please visit Envato Studio or Werkpress for further customization.
Best regards,
IsmaelHey pachanights!
Thank you for using Enfold.
You can use this on functions.php if you want to insert an extra element anywhere on the header:
function ava_extra_header_element() { ?> ADD ANY CONTENT HERE! <?php } add_action('ava_main_header', 'ava_extra_header_element');Cheers!
IsmaelHi!
Thank you for the update and sorry for the delay.
Maybe using larger image backgrounds, 1500px in height will fix the issue. You can also try this on Quick CSS or custom.css:
.avia-full-stretch { background-size: 120% !important; }Best regards,
IsmaelSeptember 2, 2014 at 8:31 am in reply to: Warning: session_start() [function.session-start]: open(/var/lib/php-cgi/session #312100Hey glaucofmc!
Thank you for using Enfold.
This is actually a temporary error. Please refer to this link for a possible solution: https://kriesi.at/support/topic/several-issues-2/
Best regards,
IsmaelHi!
Thank you for the update.
What you’re referring to is the Tab shortcode. You can use html codes to add images inside the tab content. 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. :)
Thanks!Cheers!
IsmaelSeptember 2, 2014 at 8:26 am in reply to: Problems migrating the site to a different hosting account #312093Hi ullastret!
Thank you for using Enfold.
You need to increase the memory limit. Please refer to this link: http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP
Cheers!
IsmaelHi!
Thank you for the update.
If you only want to open an image, use something like this:
<a href="http://www.naikare.es/temp/wp-content/uploads/2014/07/IMG_1347-300x225.jpg"><strong>libro de firmas personalizado</strong></a>Best regards,
IsmaelHi kathrynmichaud!
Thank you for using Enfold.
1.) Unfortunately, the theme is using icon fonts for the social icons. You need to modify the code in order to do that or apply the new social image icon as background. If you want to change the twitter social icon for example, you can use this on Quick CSS or custom.css:
#top .social_bookmarks li a:before { content: ''; } li.social_bookmarks_twitter a { background: url('ICON IMAGE URI HERE') !important; }2.) You can change the menu and logo position on Enfold > Header > Menu and Logo Position.
3.) You can only use the Easy Slider on column layouts.
Best regards,
IsmaelSeptember 2, 2014 at 8:14 am in reply to: All background videos begins with a black background. #312077 -
AuthorPosts
