Forum Replies Created
-
AuthorPosts
-
Hey style960!
Your currently using Enfold 3.0.2. Go ahead and update to 3.0.4 and let us know when your done.
Best regards,
ElliottHi GOWD!
Not sure what’s going on there. It seems to only be that specific page that is having trouble.
Let’s try creating a new page and set it as your front page and then add your elements in one by one and keep checking your homepage to see which one is breaking it.
Regards,
ElliottHi!
1. Try clearing your browser cache and any caching related plugins you might have installed after updating the page.
2. We don’t have any control over your themeforest account so you will need to contact themeforest about this, https://help.market.envato.com/hc/en-us.
Once you get that resolved it would be best to update via FTP, http://kriesi.at/documentation/enfold/portfolio-item/update-theme-files-with-ftp/.
Regards,
ElliottHi!
@fraktale911, The special heading tags are actual headings, H1, H2, H3, etc etc, so you should not place HTML inside. Let us know exactly what your trying to do and we’ll be able to offer an alternative.
@Schuns, Your getting a weird javascript error. Make sure all plugins are deactivated and then try deleting the slider element and recreate it. If your still having problems then send us a WordPress login and we’ll take a closer look.Regards,
ElliottNovember 22, 2014 at 12:10 am in reply to: Usages of Avia Layout Builder for Content Templates #355709Hey stedia!
Thanks for using Enfold.
It doesn’t look like that plugin is going to be compatible but send us a WordPress login and we’ll take a look. You should be able to create any type of layout you need with just our advanced layout editor.
Regards,
ElliottHey!
@twenty1design, I see an iframe being inserted right below your body tag which is causing the space. Are you sure you have deactivated all plugins? It’s an iframe related to google ads, not google analytics. Send us a WordPress login and we’ll take a closer look.
@mchi8600, Deactivate all plugins and send us a link and we’ll take a look. You can set your reply as private if you wish.Regards,
Elliott- This reply was modified 10 years ago by Elliott.
Hi lflask!
Let’s try the following.
1. Deactivate all plugins.
2. Update Enfold to 3.0.4 (your currently using 3.0.2).
If the above does not work then send us a WordPress login and set your reply as private and we’ll take a closer look.
Cheers!
ElliottHey!
Try this.
#your-custom-id { background: -webkit-linear-gradient(#999999, white); background: -o-linear-gradient(#999999, white); background: -moz-linear-gradient(#999999, white); background: linear-gradient(#999999, white); }
Best regards,
ElliottHi!
Try adding this to your custom CSS.
.av-menu-button-colored .avia-menu-text { background-color: orange !important; border-bottom: darkorange !important; }
Cheers!
ElliottHey kenreimer!
Try adding this to your custom CSS.
.iconlist_icon { background: none repeat scroll 0 0 transparent !important; color: black !important; }
Regards,
ElliottHi!
I sent you a test email. Let us know what it looks like.
Cheers!
ElliottNovember 21, 2014 at 11:28 pm in reply to: Show parent page above nested subpages in sidebar navigation #355679Hi Boulanger!
Open up /enfold/functions-enfold.php and around line 991 you should see this.
$default_sidebar = false;
Add this beneath it.
$sidebar_menu .= get_the_title($parent);
Regards,
ElliottHey FlawlessWeb!
Your caching plugin is minifying the CSS. If there is an option for disabling that then turn it off to see if that fixes it.
If it’s still happening then try deactivating all of your plugins to see if it goes away.
Regards,
ElliottHey!
Try adding a separator element above the textblock element and play around with the margin sizes until it looks good. You can set the style so it’s not visible when you edit the element.
Regards,
ElliottHi!
Send us a WordPress login and set your reply as private and we’ll take a look.
Regards,
ElliottNovember 21, 2014 at 10:50 pm in reply to: Username in URL of Topics / Nickname in old topics #355651Hey!
I’ll flag this for the rest of our team to see what we can do.
Best regards,
ElliottHey!
Try deleting lines 166 – 171 in /enfold/includes/loop-index.php.
if(!empty($cats)) { echo '<span class="blog-categories minor-meta">'.__('in','avia_framework')." "; echo $cats; echo '</span><span class="text-sep text-sep-cat">/</span>'; }
Best regards,
ElliottHey!
Setup a child theme, http://kriesi.at/documentation/enfold/downloads/, and add the code in the child theme functions.php file so it will be saved between updates.
Regards,
ElliottNovember 21, 2014 at 10:41 pm in reply to: Mobile responsive Logo area does not match the below scrolling sections #355638Hey!
It looks like your probably wanting to set a custom pixel value for your header in Dashboard > Enfold > Header > Header Size. If that’s not correct then send us a WordPress login and take a screenshot highlighting what your trying to do so we can get a better idea.
Also, it looks like you created two topics for this. Please do not double post.
Best regards,
Elliott- This reply was modified 10 years ago by Elliott.
Hey tjswarbs78!
You can use our image element to have an image open in lightbox. To have more images open along with it then drag a codeblock element to your content and add this inside.
<a style = "display: none;" rel = "lightbox" href="URL to your image">Lightbox</a>
And add as many as you want to have them open up in lightbox as well.
Best regards,
ElliottNovember 21, 2014 at 10:15 pm in reply to: Can not edit anything on my website… Fatal error appears! #355620Hey!
As long as you haven’t renamed the theme folder and moved the database correctly then the settings should be preserved. Besides that you can export the settings in Dashboard > Enfold > Import / Export.
Regards,
ElliottHey infigic!
Navigate to Dashboard > Settings > Permalinks and select the custom permalink option and insert this.
/blog/%postname%/
Regards,
ElliottHi!
Go ahead and remove all custom CSS and then take a screenshot and highlight exactly what your trying to do so we can get a better idea.
Cheers!
ElliottHey rpl_admin!
First off download the starter child theme here, http://kriesi.at/documentation/enfold/downloads/.
Next open up the child themes functions.php file and add this to the bottom.
add_filter('avf_blog_style','avia_change_archive_blog_layout', 10, 2); function avia_change_archive_blog_layout($layout, $context){ global $avia_config; if($context == 'archive') { $layout = 'blog-grid'; } return $layout; }
If your still getting an error then send us a WordPress login in a private reply and we’ll take a look.
Cheers!
ElliottHi!
It looks like Open Sans does not have a 200 weight but it does have 300. You can do a search for open sans here to see, http://www.google.com/fonts.
Try this.
add_filter( 'avf_google_content_font', 'avia_add_content_font'); function avia_add_content_font($fonts) { $fonts['Open Sans'] = 'Open Sans:300,400,600,800'; return $fonts; }
If it’s still not working then send us a WordPress login and we’ll take a closer look.
Cheers!
Elliott- This reply was modified 10 years ago by Elliott.
Hey hypnorich!
What is the code it gave you to use?
I found this plugin, https://wordpress.org/plugins/all-in-one-schemaorg-rich-snippets/, which may help.
Cheers!
ElliottHi!
Your link is giving me a 500 internal server error. Check with your hosting provider to make sure everything is ok.
Cheers!
ElliottHi koinoniaweb!
I’m not seeing any fixed widths on your container class. I see a max-width of 1030.
.responsive .container { max-width: 1030px; }
Is this what your referring to? Your site looks fine on my end so try clearing your browser cache.
Best regards,
ElliottHey!
Enfold 3.0.4 changed the following files.
/enfold/config-templatebuilder/avia-template-builder/php/shortcode-template.class.php
/enfold/config-templatebuilder/avia-shortcodes/buttons.phpBest regards,
ElliottHey!
Did you recently update WordPress to 4.0.1? If so then be sure to update Enfold to 3.0.4 to fix that. Otherwise send us a link and we’ll take a look.
Best regards,
Elliott -
AuthorPosts