Forum Replies Created
-
AuthorPosts
-
May 25, 2015 at 6:19 am in reply to: SEO Yoast Unable to see Avia Layout Builder body content. #449379
Hey!
Most of the advance page builders (visual composer, mini-max, fusion builder, etc) out there don’t work well with the Yoast SEO plugin’s analysis feature. This is something the plugin should improve on, not vice versa. You can contact the plugin author for more info.
Cheers!
IsmaelHi!
Try to move the blog posts element outside of the 1/1 column layout. It doesn’t change because the font size is being inherited from another parent container instead of the body container.
Regards,
IsmaelMay 25, 2015 at 5:57 am in reply to: verkürzte Weiterlesen-Beiträge auf Systemgenerierten Seiten (Kategorie) möglich? #449363Hi Luxususer!
Thank you for using Enfold.
I’m sorry but I’m not sure if understand your question. What do you mean by “contribution”? Are you trying to show an excerpt instead of the full content on the blog overview page? You can edit the blog post element then you can set the Blog Content length to Excerpt with read more link.
Cheers!
IsmaelHi!
The home page’s header is set to transparent, other pages are set to the standard header. Was that intentional?
Regards,
IsmaelHi!
I’m sorry but we can’t check your site unless it is actually live. Let us know once it’s live then we’ll check it. Make sure that you’re running Enfold 3.1.5 on WP 4.2.2.
Cheers!
IsmaelHi!
Thank you for using Enfold and sorry for the delay.
Looks like you created the single post entry using the advance layout builder. Note that the ALB will remove all default elements in the post including the title, post meta info, featured images, comments etc. You have to add all of it manually. And since you disable the title and breadcrumb container, you will have to manually add the single post title as well, you can use the special heading element or the text block.
Cheers!
IsmaelHey!
Please read the previous thread, it clearly explains the theme’s current stand regarding the sensei plugin. According to our team leader:
1) You have to update the template of the single lessons ( content-single-lesson.php ). Copy the template from the sensei folder into the theme folder.
2) No sidebar options, etc. are not supported. You can definitely add them but this would require advanced templates for sensei. Officially we don’t support this plugin (but just woocommerce, bbpress and WPML) and thus this customization is beyond the scope of our support forum. I recommend to hire a freelancer for this job.
You can contact codeable to configure the plugin: http://kriesi.at/contact/customization
Best regards,
IsmaelHey!
This is the first time this kind of question has been asked in the forum. We are not really sure what’s causing it and why it would happen on your installation but not from other enfold installations. Can you please provide any reference material related to the issue that we can check?
Regards,
IsmaelHey!
I would like to check the site but the wp login and wp admin isn’t working. Please check. After you add the code above, did you remove the browser cache before testing the page? Mobile browsers tends to hard cache a web page to improve browser experience.
Regards,
IsmaelHi!
Looks like you’re using a custom script or plugin inside the layer slider. I’m sorry but we don’t provide support for third party plugins. Please contact the plugin or script author for more info regarding the issue.
Regards,
IsmaelHi Kevin!
Thank you for using Enfold.
Unfortunately, you can’t add featured images on product tags. Please contact the woocommerce support. Or you can try this: http://www.websitehowtos.com/image-woocommerce-tags/
Cheers!
IsmaelHi stroudas!
Thank you for using Enfold.
Replace the code with this:
div#header_meta { padding: 0 50px; } #header_meta .container { min-height: 30px; background-color: #000; width: 100%; }
Best regards,
IsmaelMay 25, 2015 at 5:01 am in reply to: Menulinks in left sidebar disappear under screenwidth of 870px #449330Hey wordmax!
Thank you for using Enfold.
I checked the site and the left sidebar stays until the screen width is 769px. The main content width needs a bit of adjusting. Use this in the Quick CSS field:
@media only screen and (max-width: 767px) { .responsive #top .container .av-content-small, .responsive #top #wrap_all .flex_column, .responsive #top #wrap_all .av-flex-cells .no_margin { width: 100% !important; }}
Regards,
IsmaelHey almyles1975!
Thank you for using Enfold.
Can you please provide a link to the page in question? We would like to see it. A screenshot will help as well.
Regards,
IsmaelHi wrathyn!
Thank you for using Enfold.
Most of the learning management system or lms plugins are not free such as sensei, learndash etc. If you’re just looking to restrict certain pages with video or audio content in them, maybe these plugins will help:
https://wordpress.org/plugins/pagerestrict/
https://wordpress.org/plugins/membership/I think it’s better if you upload the video and audio files to a third party host such as vimeo, youtube, for audio you can use soundcloud. It will make the media buffering much more faster and you don’t have to worry about the server space.
Regards,
IsmaelHi!
You can try this in the Quick CSS field:
.home #wrap_all { background: #ffffff url(//media.sabinerosen.se/2015/03/snow-bg-3.jpg) top left repeat scroll; } .home .main_color.container_wrap, .home div#main { background-color: transparent; } div#testimonials, #boka, #sabinemethod, #om, #sabinemethod + div { max-width: 90% !important; position: relative; left: 50%; transform: translate(-50%, 0); -webkit-transform: translate(-50%, 0); -moz-transform: translate(-50%, 0); }
Best regards,
IsmaelHi!
OK. The featured images for each variation displays fine when you’re not using a plugin. Try to add this in the functions.php file:
add_action('wp_footer', 'ava_custom_script', 10); function ava_custom_script(){ ?> <script> (function($){ $('div.variations_button .button').click(function(e) { if($('#top .variations select')[0].selectedIndex === 0 ) { e.preventDefault(); alert('Please choose product options…'); } }); }(jQuery)); </script> <?php }
Best regards,
IsmaelHey!
Alright. Please post the login details here. We would like to check it.
Best regards,
IsmaelHey!
The translate method moves the element from its current position. You can test it here: http://www.w3schools.com/css/tryit.asp?filename=trycss3_transform_translate
In that case, you don’t actually need the transform property. Where do you want to position the widget? The left and top property should be enough in order to adjust the position of the widget element.
Best regards,
IsmaelHey LukasE!
Thank you for using Enfold.
I checked the site, both on chrome and firefox but I was not able to reproduce the issue on first load. Try to add this in the functions.php file:
function add_subset_func($fontlist) { $fontlist .= "&subset=latin,latin-ext"; return $fontlist; } add_filter('avf_google_fontlist', 'add_subset_func');
Also, maybe installing a cache plugin will help.
Best regards,
IsmaelHey!
You can add another video element with the same video url on top of the slider. We can force this video to only display on mobile devices. Use css media queries to hide or show an element. Please refer to these links for more info.
http://stackoverflow.com/questions/11796297/div-show-hide-media-query
https://kriesi.at/support/topic/how-to-hide-some-elements-in-mobile-version/#post-362263
https://kriesi.at/support/topic/is-there-an-option-to-create-a-separate-page-design-specific-to-mobile-devices/
https://kriesi.at/support/topic/displaying-another-slider-on-mobile-devices/
https://kriesi.at/support/topic/replace-slider-on-mobile/Turn on the custom css class field: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
Regards,
IsmaelHey!
Add this in the Quick CSS field:
@media only screen and (max-width: 767px) { .home div#av-layout-grid-1 div:nth-child(1) .flex_cell_inner { width: 100% !important; max-width: 100% !important; }}
In order to contain the effect of the css above, you can apply a unique id to the grid row section. Use “custom-grid” for example. You can replace “div#av-layout-grid-1” selector with “#custom-grid”.
Best regards,
IsmaelHey Nicola!
Thank you for using Enfold.
You can try this:
.avia-icon-list .iconlist_icon { height: 32px; width: 32px; line-height: 32px; font-size: 15px; margin-right: 15px; margin-left: 2px; top: 10px; }
Best regards,
IsmaelHi Holger!
Thank you for using Enfold.
Add this in the Quick CSS field:
form#formMain br { display: none; }
Regards,
IsmaelMay 24, 2015 at 3:48 am in reply to: Seite wird vollständig angezeigt und lädt und lädt, nur bei Chrome und Opera #449162Hi Daniela!
Thank you for using Enfold.
I’m sorry but what is the actual issue in the page? I translated the inquiry but I’m not sure what it’s meant by “charge indicator”? Anyway, there are a few script errors in the console from a third party plugin or a custom script (wp-retina, heights.js).
Regards,
IsmaelHi fizzylight!
Thank you for using Enfold.
Did you modify anything in the theme files? Please try to delete the entire enfold folder then upload it again via FTP.
Regards,
IsmaelHi almyles1975!
Thank you for using Enfold.
What is the current layout of the header? Is the menu container below the logo? Try this in the Quick CSS field:
#header #header_main_alternate .container { background-color: red; }
Cheers!
IsmaelHey!
The advance styling elements is limited to what is currently available in the settings panel. You can request the additional feature here: https://kriesi.at/support/enfold-feature-requests/
For now, please use the Quick CSS field.
Regards,
Ismael -
AuthorPosts