Forum Replies Created
-
AuthorPosts
-
December 17, 2014 at 4:09 am in reply to: Increase number of max. columns of portfolio grid / masonry grid? #369317
Hey!
Select 6 columns on the Portfolio Grid. You can use this for the portfolio entries:
#top .grid-entry.no_margin.av_one_sixth { width: 10%; }Adding a 7 or more column selection will require modification on the theme that is beyond the scope of support. Please hire a freelance developer or visit Envato Studio or Werkpress for further modifications.
Best regards,
IsmaelHey!
I tested the portfolio links on the page (http://broelando.nl/masonry-test/) with the video lightbox and it plays find without redirecting. I’ll ask the rest of the support team to check.
Cheers!
IsmaelDecember 17, 2014 at 4:01 am in reply to: Avia Layout Builder: Bildelement in Textelement einbetten möglich? #369313Hey schorni!
Thank you for using Enfold.
Use the “Add Media” button. Set the Alignment and the size of the thumbnail before you insert the image.
Regards,
IsmaelHey!
You didn’t choose the Portfolio thumbnail on the Post Slider’s On Select custom preview image size setting. Post the login details here so that we can take a look. Also, some of the images that you’re using are very small. Example: http://www.josemontero.es/ceain/wp-content/uploads/2014/11/4fb5c93a8b04b61b.jpg
Please use images with a minimum width of 900px and above.
Cheers!
IsmaelHey!
Use the Codestyling Localization plugin. Search for the strings inside the $search_messages array.
Cheers!
IsmaelHi!
Add a color section then add apply an id to it using the For Developers: Section ID field. Use “white-bg” for example. Apply a background color or image. After that, use this on Quick CSS:
#white-bg .container { background: #ffffff; }This will work better for Stretched Layout.
Regards,
IsmaelHi!
Thank you for using Enfold.
You can follow @Flikk’s suggestion. Or change the Highlight Color on Enfold > General Styling. :)
Regards,
IsmaelDecember 17, 2014 at 3:37 am in reply to: Alternate Content Area – how to set Avia Layout Builder to 1/2 or else #369302Hi!
We can’t see the preview because we don’t have the login details. Please post a screenshot of what you’re trying to do. Use the Grid Row element if you want to create two blocks or cells with different background or style.
Cheers!
IsmaelDecember 17, 2014 at 3:35 am in reply to: Enfold Advanced Editor – I am unable to use the Text Box and Code Block #369301Hi!
Glad you figured it out. Regretfully, we cannot provide support for third party plugins or scripts as stated on our support policy due to the fact that there is simply no way to account for all of the potential variables at play when using another developer’s plugin or script. Because of this, any questions you have regarding setup, integration, or troubleshooting any piece of functionality that is not included on the theme package will need to be directed to the plugin author.
Thank you for your understanding.
Cheers!
IsmaelHi wunderdojo!
Thank you for using Enfold.
You can set the Sticky Sidebar menu to Never Sticky so that the sidebar will not scroll with the content. A link to the actual website will help.
Cheers!
IsmaelHey grwebs!
Thank you for using Enfold.
Did you transfer the website? Make sure that you transfer the database correctly or you will lose the theme options. We usually recommend the WP MigrateDB or WP MigrateDB PRO plugin. A link to the website will help.
Cheers!
IsmaelHi!
You can add a top padding on the menu items:
.main_menu ul:first-child > li a { padding-top: 30px; }Use css media queries to adjust the top padding on smaller screen sizes. Or use this:
.main_menu > div > ul.av-main-nav > li > a { padding-top: 30px !important; }Cheers!
IsmaelHey!
You can try this:
.home div#av_section_1 p.form_element:last-child { width: auto; clear: none; margin-left: 2%; top: 25px; } .home div#av_section_1 .form_element .button { width: 100%; } .home div#av_section_1 .avia_ajax_form .form_element_third { width: 26%; }Apply a unique id on the color section which contains the form fields. Replace the div#av_section_1 id.
Regards,
IsmaelDecember 17, 2014 at 2:24 am in reply to: Different portfolio Items displaying single portfolio picture #369282Hi!
If you use the Advance Layout builder for portfolio items, it will not show the featured image by default. You need to add it manually using a slider or the image element. If you want to show the featured image automatically, switch to the Default Editor. Please remove the Portfolio Grid element on the portfolio items.
Cheers!
IsmaelHi!
This is what it looks like on iPad screen width:

Add this on Quick CSS to adjust the minimum height of the input fields container.
@media only screen and (min-width: 768px) and (max-width: 989px) { .flc-inputdata { min-height: 60px; } }Cheers!
IsmaelHi!
The filter doesn’t work because hover overlay icons are declared directly via CSS. It will work when you want to change the icons declared inside the data-av_icon attribute, for example, social icons. This will change the twitter icon to something else:
add_action('init', 'avia_replace_default_icon', 10, 1); function avia_replace_default_icon($icons) { global $avia_config; $avia_config['font_icons']['twitter']['icon'] = 'ue877'; return $icons; }Note that you can’t use custom font icon on the theme aside from fonts generated on fontello.com.
Cheers!
IsmaelDecember 17, 2014 at 1:58 am in reply to: fullpage slider with less then 100% height to teaser next section #369278Hi!
You can edit js > shortcodes.js, find this code on line 2139:
wh100 = win.height(),Replace it with:
wh100 = Math.round( win.height() * 0.80 ),It will only show 80% of the slider. You can adjust the value. Remove browser cache then reload the page.
Cheers!
IsmaelHi!
You didn’t set the Head Menu as Enfold Main Menu on Appearance > Menus panel. Please check your site now: http://souvenirsingular.com/
Best regards,
IsmaelHi Arjan de Wit!
Thank you for using Enfold.
You can try this on functions.php:
add_action('after_setup_theme','avia_load_additional_widget'); function avia_load_additional_widget() { // portfolio if (!class_exists('avia_customcptbox_portfolio')) { class avia_customcptbox_portfolio extends avia_newsbox { function avia_customcptbox_portfolio() { $this->avia_term = 'portfolio_entries'; $this->avia_post_type = 'portfolio'; $this->avia_new_query = ''; //set a custom query here $widget_ops = array('classname' => 'newsbox', 'description' => 'A Sidebar widget to display latest portfolio entries in your sidebar' ); $this->WP_Widget( 'customcptbox_portfolio', THEMENAME.' Latest CPT Portfolio', $widget_ops ); } } register_widget( 'avia_customcptbox_portfolio' ); } // post if (!class_exists('avia_customcptbox_post')) { class avia_customcptbox_post extends avia_newsbox { function avia_customcptbox_post() { $this->avia_term = 'category'; $this->avia_post_type = 'post'; $this->avia_new_query = ''; //set a custom query here $widget_ops = array('classname' => 'newsbox', 'description' => 'A Sidebar widget to display latest post entries in your sidebar' ); $this->WP_Widget( 'customcptbox_post', THEMENAME.' Latest CPT Post', $widget_ops ); } } register_widget( 'avia_customcptbox_post' ); } }This will show entries for portfolio items and default post type.
Best regards,
IsmaelDecember 17, 2014 at 1:23 am in reply to: The translation of the theme does not work on my site #369271Hi!
I’ll report the issue to Kriesi. Please wait for his response.
Best regards,
IsmaelHi!
Are you referring to the layer slider or the color section below? If you want to fix the layer slider, go to the Layer Slider panel then follow the instructions above. If you’re looking to adjust the color section background, add this on Enfold > General Styling > Quick CSS field:
@media only screen and (max-width: 1200px) { div#av_section_1 { background-position: 80% !important; } }Regards,
IsmaelHey!
Looks like it is fixed. Can you please create a test page with the Special Heading element? We would like to see it in action. Maybe, we can reproduce the issue.
Cheers!
IsmaelHey!
I don’t see any fullwidth submenu element on the page. Please add it then we’ll check it again.
Best regards,
IsmaelHi!
We tested this on our installation and the private posts are not visible on the grid layout. The test page that you provided does not exist. Please check. If possible, please deactivate all plugins. We would like to check it.
Regards,
IsmaelHey!
Edit magazine.php located on config-templatebuilder > avia-shortcodes > magazine.php. Find this code:
$titleAttr = "title='".__('Link to:','avia_framework')." ".the_title_attribute('echo=0')."'";Replace it with:
$titleAttr = "title='".__('Link to:','avia_framework')." ".the_title_attribute(array('echo' => 0, 'post' => $entry->ID))."'";This should be fix on the next update. Unfortunately, the magazine element does not support sticky posts.
Cheers!
IsmaelHi!
Adjust the left and right padding:
@media only screen and (max-width: 768px) {
#top .av-large-testimonial-slider.avia-testimonial-wrapper .avia-testimonial { padding: 0px 30px; } #top .av-large-testimonial-slider .avia-slideshow-arrows a { font-size: 25px; } .prev-slide:before { text-indent: -30px; } .next-slide:before { text-indent: 30px; } }Remove browser cache then reload the page.
Regards,
IsmaelDecember 16, 2014 at 5:42 am in reply to: Different portfolio Items displaying single portfolio picture #368777Hi!
Why did you add a Portfolio Grid element inside the portfolio items? It will show all portfolio items. What you’re seeing right now is the first portfolio item. Please remove it. If you use the advance layout builder for the portfolio items, you need to add the featured image manually.
Regards,
IsmaelHi khoogteyling!
Thank you for using Enfold.
If you bought a license for the plugin, you need to disable the default layer slider that is included on the theme. Add this on functions.php:
add_theme_support('deactivate_layerslider');Install the layer slider plugin. Regarding the text, make sure that Responsive Mode is enabled on the Slider Settings. Add a value on the Full-width slider settings > Responsive Under and Layers Container field. Default is 1140.
Best regards,
IsmaelHi!
The latest version is 3.0.4. 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/
Best regards,
Ismael -
AuthorPosts
