Forum Replies Created
-
AuthorPosts
-
Hey summersalad!
Go ahead and send us a link to your page and take a screenshot highlighting what your trying to do and we’ll take a look. Also take a screenshot of your advanced styling theme options panel so we can see the CSS rules your using.
Cheers!
ElliottMarch 5, 2015 at 10:25 pm in reply to: Willing to analyse the structure and elements of the Enfold Restaurant One Page #406721Hi Blaise!
When you do the demo import then all of the pages should have downloaded. You can view them in Dashboard > Pages. Also check the trash folder to see if they are in there instead.
Regards,
ElliottHey Rob!
That sounds like a javascript error. What happens when you deactivate all plugins?
Make sure your using the latest version of Enfold, 3.0.8. See here for updating via FTP, http://kriesi.at/documentation/enfold/portfolio-item/update-theme-files-with-ftp/.
Best regards,
ElliottHi Gashland Evangelical Presbyterian Church!
Try this out, https://kriesi.at/support/topic/a-conflict-with-gravity-forms/#post-405917.
Best regards,
ElliottMarch 5, 2015 at 10:20 pm in reply to: Sidebar elements overlapping end up over socket color area #406716Hey Alejandro!
Try adding this to your custom CSS.
html, #wrap_all { background: white !important; }As for facebook are you using our facebook likebox widget there correct? Not sure what’s going on there. What happens when you deactivate all plugins?
Regards,
ElliottHey Michael64142!
Add this to your custom CSS.
.html_header_sidebar #header .av-main-nav > li { margin-left: 0px !important; margin-right: 0px !important; } .html_header_sidebar #header .av-main-nav > li > a { padding-left: 40px !important; }Best regards,
ElliottHi!
Here you go.

Regards,
ElliottHi suchfin!
Are you trying to disable the featured image for the single post view or for the taxonomy / archives? Go ahead and send us a link and we’ll give you some CSS to use.
Cheers!
ElliottMarch 5, 2015 at 10:06 pm in reply to: LayerSlider "show until" has no effect, transition out is never triggered #406710Hey dynamitec!
Perhaps it’s designed to wait until the video is done. Send us a WordPress login and we’ll try playing around with it but it would probably be best to contact the LayerSlider support about this as it’s not really an Enfold problem.
Cheers!
ElliottHi!
Hmm, I’m not sure. It looks like you have some CSS to align them to the center when they should be aligned to the left by default. Can you send us a link?
Regards,
ElliottHey pako69!
We rely on our customers to do the translations. If there are some areas your not satisfied with then you could try installing this plugin, https://wordpress.org/plugins/codestyling-localization/, and do a search for the theme texts to translate them.
Best regards,
ElliottHey heinrichvk!
Hmm, do you have a category named blog? Try deactivating all plugins and then send us a link and we’ll take a look.
Also try creating a backup of your .htaccess file and then delete it from your server and then update your permalinks in Dashboard > Settings > Permalinks.
Cheers!
ElliottHey Diego!
Add this to your custom CSS.
#wrap_all { position: relative !important; }Cheers!
ElliottMarch 5, 2015 at 9:47 pm in reply to: Advanced Layout editor and custom post types after update #406697Hey fawnulm!
Not sure what it could be. Is the post content displayed in the default editor? It’s just the advanced layout editor that is not working? Which version did you update from?
Go ahead and send us a WordPress login and let us know if we can deactivate your plugins while testing.
Regards,
ElliottHey!
Send us a WordPress and FTP login and we’ll take a look.
Regards,
ElliottMarch 5, 2015 at 9:42 pm in reply to: Blog post detail does not display author, author pic or post date #406694Hi levlaneadvertising!
It looks like you have this in your custom CSS which is hiding it.
.post-meta-infos { display: none !important; }It should display beneath the post title.
Regards,
ElliottHi kevinveerbeek!
That specific page is using the fullscreen slider. When you edit your page find the header visibility setting and set it to “Transparent header”.

Cheers!
ElliottHey Sasolini!
Try adding this to a codeblock element in your page.
<style type = "text/css"> .entry-content-wrapper .flex_column { background: none repeat scroll 0 0 rgba(255, 255, 255, 0.3); padding: 20px; } </style>If you only want it done for a few columns then nest the columns inside a color section and give the section an ID and use that in the CSS code instead.
#yourID .flex_column { }Best regards,
ElliottHey atef123!
You should be able to use the “ava_inside_main_menu” hook to add stuff to the end of the menu.
I’m not really sure I understand what your trying to do though. Can you send us a link to your page and take a screenshot highlighting your intentions?
If your trying to add extra menu items then you could just edit the menu your using. Whatever you add to the menu should be displayed in the mobile menu as well.
Best regards,
ElliottHi angeloca!
Yep, if you want to move them back around then try this CSS code, https://kriesi.at/support/topic/modify-cart-buttons-apply-coupon-update-cart-and-proceed-to-checkout/.
Best regards,
ElliottMarch 5, 2015 at 9:24 pm in reply to: Easyslider not displaying content on mobile devices – Enfold 3.0.8 #406681Hi!
There are a few javascript errors. Let’s try the following.
1. Deactivate all plugins.
2. Completely delete Enfold from your WordPress theme directory before downloading + uploading a fresh copy from themeforest.
Let us know when your done with those two steps so we can take another look.
Regards,
ElliottHey lewebat!
Add this to the bottom of your functions.php file.
add_action( 'wp_footer', 'enfold_customization_hotspot' ); function enfold_customization_hotspot() { ?> <script type = "text/javascript"> jQuery(document).ready(function(){ jQuery('.av-image-hotspot_inner').attr('target', '_blank'); }); </script> <?php }Best regards,
ElliottHi hasbeat!
Make sure in the slider settings that the “Responsive” and “Full width” settings are turned on and that the “responsive under” and “layers container” is around 1140.
If your still having trouble then send us a WordPress login and we’ll take a look.
Best regards,
ElliottHi!
Paste the code your using here and we’ll test it on our end.
Make sure Enfold is updated and all plugins are deactivated while testing.
Regards,
ElliottMarch 5, 2015 at 9:03 pm in reply to: Blog categories display the full post, instead of single autor small preview img #406671Hi!
Open up /enfold/includes/loop-index.php and change line 8 from this.
$blog_content = !empty($avia_config['blog_content']) ? $avia_config['blog_content'] : "excerpt";To this.
$blog_content = !empty($avia_config['blog_content']) ? "excerpt" : "excerpt";Regards,
ElliottHi dlannetts!
It looks like your using the WordPress default gallery there. Try dragging a codeblock element to your page content and add this inside.
<style type = "text/css"> .avia-gallery img { max-height: 110px; } </style>Regards,
ElliottHi!
I checked on a Nexus 7 but everything looks the same as it does on desktop. What browser are you using on the Androids? If it’s not the official Chrome browser then try downloading and viewing on that.
Best regards,
ElliottHi!
@reisp, I checked your site but the lightbox is working now. I’m assuming you got it worked out with the MagicToolbox team.
@MagicToolbox, Thanks for the help!Best regards,
ElliottHi!
Lines 547 – 555 should look like this.
$markupTitle = avia_markup_helper(array('context' => 'entry_title','echo'=>false, 'id'=>$entry->ID, 'custom_markup'=>$this->atts['custom_markup'])); $markupContent = avia_markup_helper(array('context' => 'entry_content','echo'=>false, 'id'=>$entry->ID, 'custom_markup'=>$this->atts['custom_markup'])); if ( get_post_type() === TribeEvents::POSTTYPE ) { $markupTime = tribe_get_start_date(); } else { $markupTime = avia_markup_helper(array('context' => 'entry_time','echo'=>false, 'id'=>$entry->ID, 'custom_markup'=>$this->atts['custom_markup'])); } $format = get_post_format($entry->ID) ? get_post_format($entry->ID) : 'standard'; $type = get_post_type($entry->ID);Best regards,
ElliottHi!
Try adding this to your custom CSS.
.menu-item.menu-item-type-custom.menu-item-object-custom.menu-item-top-level.menu-item-top-level-3 { margin-right: 140px; } strong.logo { left: 51.5% !important; top: 70px; }Cheers!
Elliott -
AuthorPosts
