Forum Replies Created
-
AuthorPosts
-
June 22, 2014 at 4:47 pm in reply to: Incorporating video into a color area or otherwise and playing command vs auto #282170
Hi!
iPhones last I checked will not autoplay any video under any conditions. The user must have control of starting the video and needs to click on it, press play etc in order for it to start.
Is it working if you click on the image/video area?
Cheers!
DevinHi lflask!
Within the theme the only thing that would be able to support anything close to that would be the prettyPhoto lightbox script but the whole slideshow with captions would need to be custom coded.
As an example, the theme pulls together the photos in galleries into a lightbox like on this page when you click on an image: http://kriesi.at/themes/enfold/shortcodes/gallery/
But you would need to build the code for the link custom into a code element using the demos here: http://www.no-margin-for-errors.com/projects/prettyphoto-jquery-lightbox-clone/
The non-code route would be to find a plugin that does what you are looking for instead which there is most likely one that fits your needs out there somewhere.
Regards,
DevinWe aren’t able to debug/re-write code or css for you but in general the css syntax looks like this:
So you have the selector and then the declarations. Each declaration is typically on a new line with the curly brackets enclosing all of them. For media queries, the curly brackets of the media query enclose anything you want to be in that media query.
To add a phone icon you can generate the icon shortcode and then copy out the html for it and add it into the field. Ex:
<span class="av_font_icon avia_animate_when_visible av-icon-style- avia-icon-pos-left avia_start_animation avia_start_delayed_animation" style="color:#ffffff; border-color:#ffffff;"><span class="av-icon-char" style="font-size:20px;line-height:20px;" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello"></span></span>
Hi trevorjohnston!
The ones I see that are incorrect are at the bottom. The last 2 media queries don’t have closing brackets and the radius property names are all broken.
Eg these:
b}}-radius: 1000px; b}}-width: 0px; b}}-style: none;
and then
b}}-color: none;
Best regards,
DevinHey!
What is actually happening is that you are setting your widget content to a static width which isn’t planning for the site being responsive. So when the sidebar adapts to the browser width, the width you’ve set on those widgets is larger than the sidebars actual visible space.
So even if you do something like this to change the margin to be zero on screens below 1140px wide:
@media screen and (max-width: 1139px){ .inner_sidebar { margin-left: 0px; } }
The widgets still wont fit unless you change their widths to something ore like 180px since I don’t think Facebook has responsive code snippets at this point.
Regards,
DevinGlad you were able to get it sorted out. Let us know if you have any other questions or issues.
Is it when turning the device or even on first loading the page or something else?
Hey Sophieja23!
No unfortunately not. The porfolio elements are only set up to handle content that has a taxonomy. So if it has categories or tags then it can be queried like that.
You could use the partner/logo element and then set the pages manually to get something similar but nothing automatic: http://kriesi.at/themes/enfold/shortcodes/partnerlogo-element/
Regards,
DevinJune 21, 2014 at 5:45 pm in reply to: Replacing Layer Slider on mobile browsers with load-friendly slider #282002Hey!
That is a good solution for a performance improvement but I don’t know if that will have any effect on SEO at all. If its only effecting mobile users I don’t think it would effect things negatively but I can’t say for sure.
Best regards,
DevinJune 21, 2014 at 5:38 pm in reply to: Give editor rank and below (They are not able to use AVIA Drag n drop) #282000Hey!
You could try something like this function:
add_action('admin_enqueue_scripts', 'avia_deactivate_builder', 10); function avia_deactivate_builder() { $is_post_edit_page = in_array(basename($_SERVER['PHP_SELF']), array('post.php', 'page.php', 'page-new.php', 'post-new.php')); if($is_post_edit_page && !current_user_can('manage_options')) { if(!current_user_can('manage_options')) { echo "<style>#avia_builder > .inside > .avia_meta_box_visual_editor > .shortcode_button_wrap { visibility: hidden; }</style>"; } } }
But I’m not really sure what effects that may have. The user can still manipulate the layout and access templates etc. If you want further customization of the editor for the non-admins you’ll need to look into a freelance developer from somewhere like Codeable.io .
Best regards,
DevinHi!
I’m not sure I understand what the issue is. The menu appears to work correctly on your site right now in both desktop and mobile views.
Regards,
DevinUnfortunately I’m not able to get it working either. I’ll ask Kriesi if he is able to take a look at it again but if not I’ll just remove the topic so that it doesn’t cause issues for anyone else. As Kriesi mentioned in the topic its outside of normal support scope and you can see how even after getting it working on his end it still has some issues.
Hey SergeVG!
There are a couple of ways to do it but it depends on how comfortable you are with coding them. Using an iframe is the easiest but you could also create your own shortcode that pulls in the php page data.
Nothing wrong with using an iframe however. It just needs a bit of css to keep the frame full width usually.
Regards,
DevinHey @tlow87!
Try updating to the latest bug fix release which I believe had a fix for that. You can either update from within WordPress if you’ve added in your themeforest username and api or via FTP.
For a quick guide on updating your theme take a look at this video on updating the Enfold theme via FTP: https://vimeo.com/channels/aviathemes/67209750
Regards,
DevinJune 20, 2014 at 6:44 pm in reply to: woocommerce product catalog size and single product image size #281724Hi bodnikwebservices!
What is the size you’ve set for the images on each page?
Right now you are forcing the images to a size that is causing them to be skewed in the catalog view. (175×305). If you remove that css snippet then they all should be displayed correctly.
Best regards,
DevinHi Iano999!
No, the two don’t allow for switching between them. You’ll need to enable the debug field for the ALB to view what shortcodes are being used.
See: http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/
Regards,
DevinHi romero2!
Unfortunately you’ll need to use a third party plugin for more advanced filtering like that. The built in portfolio and gallery elements only support a single level of sorting and it only sorts what is visible on the page.
Regards,
DevinI’ll try tagging the rest of the support crew as so far I’ve been unable to duplicate the same issue on my end.
That first image above is with a galaxy tab but it doesn’t show any issue even with a sticky header.
Hi KK!
Unless you’ve done any changes to the theme files you won’t lose anything when you update.
If you want to download a pre-created child theme we have one to download here: http://kriesi.at/documentation/enfold/using-a-child-theme/
We don’t have anything written or recorded at the moment for creating a child theme and moving to it after setting up the main site but I’ll add it to my to-do list.Edited as details are included on the theme documention site.
Regards,
Devin- This reply was modified 10 years, 5 months ago by Devin.
That would be part of how the events plugin by Tribe displays events and has nothing to do with the theme.
Hey!
For me at least, using IE9 on Windows 7 I don’t see what browser shots shows. Maybe its taking the screenshot too early or its an un-updated version of IE9.
This is what I see:
Regards,
DevinJune 20, 2014 at 5:35 pm in reply to: Replacing Layer Slider on mobile browsers with load-friendly slider #281693Hey mndawood!
You can yes but it still loads in both sliders into the page when you do this. One is hidden on desktop, one is hidden on mobile.
So it may look nicer but it can decrease performance if the slideshows are very full of content.
You will need to add the mobile slideshow to the page and then we can help you target that slideshow to be hidden on desktop with css in the same way you’ve hidden the LayerSlider one on mobile.
Regards,
DevinHi smorrone!
When you updated over FTP did you change the name of the theme or anything like that?
I’m getting a 403 error when trying to access the wp-admin to log in so I’m not sure what is happening there.
Try re-naming your plugins folder to temp-plugins and see if you can log in then. That will temporarily deactivate all of your plugins. Then when you change the folder name back to plugins it should keep them deactivated so you can re-activate one at a time.
When disabling any caching plugin make sure to always clear the cache its using so that its not still pulling it up on the front end even with it not active.
Best regards,
DevinHey checkitwriteit!
I don’t think so since the pages don’t have a taxonomy to select from. If you use this plugin however you might be able to get that working since it would give your pages the same taxonomy that posts have so you could select the masonry elements by the category of your pages at that point: http://wpthemetutorial.com/plugins/post-tags-and-categories-for-pages/
Best regards,
DevinHi!
The sortby is a WordPress parameter not the theme. That function gives the user the ability to easily tap into the core WordPress function but what you are looking for is to add something new to WordPress.
Events, as a post type, are supported. How they are viewed by WordPress is: a post type. The date is just some meta data added on that could easily be any other value.
Best regards,
DevinI’ve added it to our internal repo to take a look at :)
If Kriesi has any thoughts he wants to add on the topic he will open it and respond here.
Regards,
Devin
Hey Julie!
Please don’t create new topics on issues that are still waiting on an answer. Kriesi has a private queue and we will often close a topic so that we don’t need to keep responding with “Kriesi hasn’t been able to respond yet”.
We see and respond to each and every post that comes up on the forums but for issues we on the support crew can’t answer immediately its up to Kriesi’s availability to check on.
You can of course always ping him on twitter if you are impatient.
Best regards,
DevinHey!
Is that after refreshing the page? I know it will do that if you first visit and then turn while on the same image since their isn’t a detection for rotation changes most of the time.
For me at least I get this:
(the outside background is from my screenshot program)Regards,
Devin- This reply was modified 10 years, 5 months ago by Devin.
Hey Mohan-Iyer!
See: http://kriesi.at/documentation/enfold/change-the-footer-text-and-link/
Regards,
DevinJune 19, 2014 at 4:24 am in reply to: Deeplinks to Layer Slider Slides don't work. Safari escapes hashtag #280947Hi PixxAgentur!
What version of Safari is this happening on and what OSX version?
Best regards,
Devin -
AuthorPosts