Forum Replies Created
-
AuthorPosts
-
Hey!
The theme options are saved in the database. You can find it in the wp_options table, it usually called “avia_options_enfold”. If you want to know where the Quick CSS codes resides, you can find it in the enfold.css file located in wp-content > uploads > dynamic_avia folder.
Cheers!
IsmaelHi!
You forgot to close the link tag and there’s something wrong with the quotation marks. I think it’s OK now. Please hard refresh the page.
Regards,
IsmaelHi!
I want to login to the site but it’s not loading. Is it up? Please check. Make sure that the Lightbox Modal Window option is enabled in the Theme Options panel.
Best regards,
IsmaelHi blaircomm!
Thank you for using Enfold.
There is no list of incompatible plugins at the moment but since the advance layout builder is not using the default woocommerce loop for products, most plugins that use action or filter hooks is not going to work when you use the ALB. Use the default editor if you’re planning to install third party woocommerce extensions.
Best regards,
IsmaelHey bibbitybop!
Thank you for using Enfold.
You can add something like this in a text block:
In, cappuccino kopi-luwak frappuccino, strong decaffeinated cup spoon aromatic saucer whipped. Aroma, macchiato, caffeine caramelization crema, strong plunger pot sit americano french press percolator. Et coffee, white robusta ut americano trifecta lungo. Grinder, cappuccino, single origin, barista aged grounds barista single shot mocha galão cortado espresso. <a class="click-learn-more" href="#">Learn more…</a> <span class="learn-this">MORE AMAZING CONTENT</span>Use this in the functions.php file to create a toggle:
add_action('wp_footer', 'ava_custom_script', 10); function ava_custom_script(){ ?> <script> (function($) { $('.click-learn-more').on('click', function() { $('.learn-this').toggle(); }); }(jQuery)); </script> <?php }Don’t forget to add this in the Quick CSS field:
.learn-this { display: none; }Cheers!
IsmaelJuly 13, 2015 at 11:08 am in reply to: Change floating navigation to the next or previous portfolio items. #472250Hey!
@Michael: You can add this in the Quick CSS field:#top .avia-post-nav { display: none !important; }Cheers!
IsmaelJuly 13, 2015 at 10:57 am in reply to: Help! Price showing in size dropdown box. Need it GONE! #472234Hey!
The options are saved inside the product_variations data attribute so there’s no way to remove it without removing the entire form. Yes, please contact the plugin author regarding the issue.
Cheers!
IsmaelHi eliuserman!
Thank you for using Enfold.
I tried to recreate the issue on my installation but the current menu item is being applied even on portfolio items. Did you set the menu as Enfold Main Menu?
Best regards,
IsmaelHi alex5252!
Thank you for using Enfold.
Yes, that’s possible. Try to turn on the custom css class field first. Refer to this link:http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
Edit a button element, add a custom css class attribute. Use “custom-button” for example. Add this in the function.php file:
add_action('wp_footer', 'ava_custom_script', 10); function ava_custom_script(){ ?> <script> (function($) { $(window).load(function() { setTimeout(function() { $('.custom-button').css({'opacity' : 1}); }, 5000); }); }(jQuery)); </script> <?php }After that, use this in the Quick CSS field:
.custom-button { opacity: 0; }The button will show 5 seconds after page load.
Best regards,
IsmaelHey Bernanke0!
Thank you for using Enfold.
Unfortunately, you can’t change the theme name in the style.css file if you already configured the options. If you do, you will have to start from scratch because the theme will not recognize the previous theme options. This is usually the case for most premium themes.
If you’re trying to change the folder name, change it then reactivate the theme in the Appearance > Themes panel. Or you can use the theme’s import/export panel in order to export the theme settings from the current installation then import it back after. Before doing anything, please create a backup or a restore point just in case.
Regards,
IsmaelHey Erich Nolan!
Thank you for using Enfold.
You can try this in the Quick CSS field:
.main_color .av-inner-masonry-content, .main_color .avia-arrow { background-color: red; }Best regards,
IsmaelHi Vital!
Thank you for using Enfold.
The example site is using the prettyPhoto lightbox plugin. You can disable the default theme lightbox on Enfold > Theme Options > Lightbox Modal Window option then install the prettyPhoto plugin: https://wordpress.org/plugins/prettyphoto/
Best regards,
IsmaelHi fanlokbun!
Thank you for using Enfold.
Yes, you can test it but make sure to get a regular license for each client or project.
Best regards,
IsmaelHi!
You can adjust the position of the button with this:
#mc-embedded-subscribe { right: 146px !important; height: 38px !important; }Regards,
IsmaelHey!
The problem is, you can’t use the advance layout builder when you set a page as shop base page. However, you can move the sidebar on top of the content. Please refer to this link: https://kriesi.at/support/topic/widget-in-sidebar-disappear-in-responsive/#post-468104
Remove browser cache then reload the page.
Regards,
IsmaelHi!
I checked the home page but I don’t see any post slider there. Where can we find the page with the post slider?
Best regards,
IsmaelHi shoo!
Thank you for using Enfold.
Yes, it’s possible. You can adjust the content width in the Quick CSS field:
.container .av-content-small.units { width: 73%; }If you want to use this code for a particular page, you need to get the page id.
Best regards,
IsmaelHey!
Please give us a link to the website. We need to check it. The code above should work. Please try it again then remove browser cache before testing the page.
Regards,
IsmaelHi emin!
Thank you for using Enfold.
You can add this in the Quick CSS field:
.breadcrumb-title { display: none; }Best regards,
IsmaelHey InspireCreations!
Thank you for using Enfold.
You can try this in the functions.php file:
add_filter('avf_title_args', 'avf_portfolio_title_args', 10, 1); function avf_portfolio_title_args($args) { $title = get_the_title($id); if(is_singular('portfolio') && is_single()) { $terms = get_the_terms( $id, 'portfolio_entries' ); }elseif(is_singular('post')){ $terms = get_the_terms( $id, 'category' ); } if(is_singular(array('portfolio', 'post')) && is_single()) { $portfoliocat = array(); foreach ( $terms as $term ) { $portfoliocat[] = $term->name; } $args['title'] = $portfoliocat[0]; } else { $args['title'] = $title; } return $args; }This code will get the first category of the post.
Cheers!
IsmaelHi dominiquehurley!
Thank you for using Enfold.
What stats exactly? Did you use a plugin? A screenshot of this will help.
Regards,
IsmaelJuly 13, 2015 at 7:30 am in reply to: An error occurred while updating Enfold: Could not create directory. #472149Hey!
I don’t think I suggested any of those before. Granting full access to folder or files is not safe so we will not advice it unless necessary. Did you even try it? Actually, hiring someone who is more familiar with server configurations will help in this case.
Cheers!
IsmaelHey!
You can try this:
add_action('avia_breadcrumbs_trail', 'ava_after_main_title_mod'); function ava_after_main_title_mod() { echo do_shortcode("[av_submenu which_menu='custom' menu='41' position='center' color='main_color' sticky='aviaTBsticky' mobile='disabled'] [av_submenu_item title='Menu Item 1' link='' linktarget='no' button_style=''] [av_submenu_item title='Menu Item 2' link='' linktarget='no' button_style=''] [av_submenu_item title='Menu Item 3' link='manually,http://' linktarget='' button_style=''] [/av_submenu]"); }Regards,
IsmaelHi!
The difference between the events in your installation and the ones in mine is the “recurrence” option which is only available in the pro version of the plugin, I think. We will test this again with the recurrence option enabled. Actually. the next event is there but the opacity is set to 0 and the countdown timer is not working for some reason. If you add this in the Quick CSS field, you’ll see the next event:
.av-countdown-timer { opacity: 1; }Best regards,
IsmaelHi!
Please try this in the functions.php file:
add_action('ava_after_main_title', 'ava_after_main_title_mod'); function ava_after_main_title_mod() { echo do_shortcode("[av_submenu which_menu='custom' menu='41' position='center' color='main_color' sticky='aviaTBsticky' mobile='disabled'] [av_submenu_item title='Menu Item 1' link='' linktarget='no' button_style=''] [av_submenu_item title='Menu Item 2' link='' linktarget='no' button_style=''] [av_submenu_item title='Menu Item 3' link='manually,http://' linktarget='' button_style=''] [/av_submenu]"); }Check one of the page or post.
Regards,
IsmaelHi!
I changed the socket background to a different color, it’s the container at the very bottom of the site, and it works fine. Please check it here: http://gorkagorospe.com/en/
Note that you have to switch to english language before you can edit the englist option, you can find the language switcher in the wp admin bar right beside Theme Options. You have to edit each languages’ theme options separately.
Regards,
IsmaelJuly 10, 2015 at 10:39 am in reply to: Remove image fade-in and resize of gallery thumbnails #471375Hey Aljoscha!
Thank you for using Enfold.
The image height of image inside the big preview container is based on the width / height ratio of the avia-gallery-big container. It will keep the image ratio and proportion of the big preview images intact. And more importantly, the whole part of the images will be visible inside the big preview container. This is why they are resized that way. You can set the height property to auto but most part of the images, specially big images, will get cut off. Try this in the Quick CSS field, let us know which one you prefer:
#top div .avia-gallery .avia-gallery-big-no-crop-thumb img { height: auto !important; }Best regards,
IsmaelHey!
A: You can apply a top padding to the section to vertically align the content inside it:
div#av_section_3 .container { padding-top: 60px; }Apply a unique id to the color section then use that selector instead of the generic selector above.
B: Instead of using the special heading, you can manually code the title using a code or a text block. Apply the link: http://www.w3schools.com/html/html_links.asp
Best regards,
IsmaelHey!
Alright. Before we start with the modification, I want to know if you remove the code we suggested above. I look for it in the functions.php file but it’s not there. We need to confirm this because if we put the same function, the site will produce an error and we will not be able to edit the file again without FTP access.
Cheers!
IsmaelJuly 10, 2015 at 10:12 am in reply to: An error occurred while updating Enfold: Could not create directory. #471367Hey!
A lot of forum threads, which seems to be having the same issue, suggested that you have to set the file permission to 775 or 777, basically granting full access to all user groups temporarily. Run the auto update then change the permission back to normal.
OR
This is just a wild guess, I’m not really sure if this is really going to help but please give it a try. Try to look for this directory or folder: C:\Windows\temp
Right click on the folder, click properties then disable the Read Only attribute. Restart the server then try the auto update.
Let us know if it helps. Aside from that, I don’t think we can provide any more useful information. I’m sorry if we can’t provide a knowledgeable or direct solution. Please contact a server administrator or hire a freelance developer. You can find someone here: http://kriesi.at/contact/customization
And again, you can still update the theme via FTP.
Cheers!
Ismael -
AuthorPosts
