Forum Replies Created
-
AuthorPosts
-
October 19, 2015 at 7:06 am in reply to: Need to add javascript, css and links to files in head of a single page #520742
Hi!
Are you trying to open the link into a lightbox? Add the iframe=true parameter in the url.
<a id="jobSearchLink" href="https://secure.entertimeonline.com/ta/i.SWMC.jobs?JobsSearch=1&iframe=true">Career Opportunities</a>Check it now: http://sonomawestmedicalcenter.com/careers/
NOTE: You don’t need the fancybox script.
Best regards,
IsmaelHi Julie!
Thank you for using Enfold.
Use the nth-child selector. Something like this:
.main_color .av_toggle_section:nth-child(even) .toggler { background: red !important; }Regards,
IsmaelHey!
The images in the fullscreen slider items are set as background and the background-size property is set to “cover”. The “cover” tells the browser to make sure the image always covers the entire container. This is useful if you don’t want to see distorted images. However, it will have to stretch the image or cut a little bit off one of the edges to keep its proportion. The fullwidth easy slider on other side contains the image and set it’s height proportional to the width of the image so you will be able to see the whole image. Although if you have a fairly tall image, parts of it will go below the fold. Unfortunately, you can’t set the full width easy slider to have a parallax effect because the images are not set as background unlike in the fullscreen slider.
Point is, there’s no way to contain the whole image on a full screen slider without distorting the images. You have to choose between a full screen slider with parallax which enables the whole slider to be visible above the fold or the full width easy slider that contains and display the whole image without the parallax effect. You can also try the layer slider or the revolution slider plugin but I think you will encounter the same issue.
We apologize for the previous thread.
Regards,
IsmaelHey!
Try this in the Quick CSS field:
#top #wrap_all .avia-gallery-1 .avia-gallery-thumb a:nth-child(n+2) { max-width: 50%; float: left; }It will set the width of the gallery items to 50% except for the first item.
Best regards,
IsmaelHey!
You can update WordPress manually via FTP including the theme. Please follow the procedure here: http://kriesi.at/documentation/enfold/portfolio-item/update-theme-files-with-ftp/
Best regards,
IsmaelHi ftt123!
Thank you for using Enfold.
Yes, this is possible. Please follow the solution provided here: https://kriesi.at/support/topic/un-mute-audio-in-an-embedded-video-in-a-color-section/#post-228062
Remove browser cache or hard refresh before testing the page.
Regards,
IsmaelHey!
You can modify the js > avia.js file, look for this code around line 716:
tempPadding = (tempPadding / 2 ) + non_shrinking + non_shrinking2;.. replace it with:
tempPadding = (tempPadding / 2 ) + non_shrinking + non_shrinking2 - 60;It will increase the scroll position. Remove browser cache then reload the page.
Best regards,
IsmaelHi!
I checked the Media page again and it looks different. Did you change the layout?
Best regards,
IsmaelHey!
Unfortunately, it’s not possible to modify a static method outside the class. You will have to edit the file directly.
Regards,
IsmaelHi!
I checked the latest news widget and it has an inline style. It shouldn’t be there by default:
<a class="news-link" title="Палец пораженный гангреной" href="http://www.webplanets.ru/palets-porazhennyj-gangrenoj/" style="width: 100%;"><span class="news-thumb "><img width="267" height="229" src="http://www.webplanets.ru/file/2015/10/Gangrenous-Finger-SFX-makeup-tutorial-267x229.jpg" class="attachment-widget wp-post-image" alt="Gangrenous-Finger-SFX-makeup-tutorial" style="width: 100%;"></span><strong class="news-headline">Палец пораженный гангреной<span class="news-time">13.10.2015 - 21:05</span></strong><span class="image-overlay overlay-type-extern" style="left: -1px; top: 8px; overflow: hidden; display: block; height: 229px; width: 277px;"><span class="image-overlay-inside"></span></span></a>Notice the “style=”width: 100%;” part? Did you add any javascript?
Cheers!
IsmaelHey!
Make sure that you switch to the TEXT or HTML mode of the editor before adding the “greater than” html entity code.
Best regards,
IsmaelHey!
Add this in the Quick CSS field:
.ui-datepicker-calendar tr td:first-child { pointer-events: none; } .ui-datepicker-calendar tr td:first-child a { background: gray; }Best regards,
IsmaelHey!
Look like you managed to disable it because I don’t see the whitespace above the posts anymore. If not, try to hide the title container on Enfold > Header panel. Disable the “Header Title and Breadcrumbs” option.
Cheers!
IsmaelOctober 18, 2015 at 10:21 am in reply to: Ajax 4 Column Portfolio Resizing/Responsiveness Issue #520574Hi!
I can reproduce the issue by resizing the browser screen to a certain width (928px to 931px). It is almost impossible to reproduce if you’re browsing the site casually. Anyway, I guess this is a little bug in the isotope script which fails to calculate the correct position of the items on certain screen width. Try to fix it with this:
#top .no_margin.av_one_fourth { width: 24.9999%; }Regards,
IsmaelOctober 18, 2015 at 10:04 am in reply to: Magnific Popup on iphone portrait behaves strangely #520570Hey!
It looks OK on a browser emulation. Please try to add this in the Quick CSS field:
img.mfp-img { height: auto !important; }Best regards,
IsmaelHey!
Did you use the yellow image (lista-de-precios-2015.jpg) on another page? What happens when you delete the file in the media library?
Best regards,
IsmaelHi!
I’m not sure if this is going to work but try to replace the code in the functions.php file:
//same category add_filter('avia_post_nav_settings','avia_same_category_filter', 10, 1); function avia_same_category_filter($settings) { if(is_singular('portfolio')) { $id = avia_get_the_id(); $exclude = array(); $categories = get_the_terms($id, 'portfolio_entries'); foreach($categories as $category) { $exclude[] = $category->term_id; } $include = array_shift($exclude); $settings['same_category'] = true; $settings['excluded_terms'] = $exclude; } return $settings; }This will exclude all categories except for the first category of the post.
EDIT: We modified the code a bit.
Best regards,
IsmaelHey mindator!
Thank you for using Enfold.
Edit the icon element then set the “Icon Style” to the second option. Add a link. It will automatically add the sonar hover effect.
Regards,
IsmaelHi!
It works OK when I check it. Please remove the cache / history in your mobile browser before checking the page.
Cheers!
IsmaelOctober 16, 2015 at 8:09 am in reply to: Two Ajax Portfolio Preview Problems – Audio shortcode, broken Permalinks #519698Hey!
This is the same as the issue here: https://kriesi.at/support/topic/contact-form-resetting-to-defaults/#post-391712
SOLUTION:
1. Create a page rule for -> mysite.com/wp-admin/*
2. Turn OFF -> Security Email Obfuscation, Server Side Excludes and Web Application Firewall
Regards,
IsmaelOctober 16, 2015 at 7:52 am in reply to: Header Styling (Right Header Link & Header Bottom Boarder) #519693Hey!
The login credentials above are not working. Please check. I tried to access the home page to check the header but it redirects me to the login page.
Regards,
IsmaelHey!
I checked the site on IE 11 and it looks the same as any browsers.

Best regards,
IsmaelHi!
Please turn on the custom css class: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
Edit the first column in the row, remove the border and the background then add a custom css class. Use “custom-column” for example then add this in the Quick CSS field:
.custom-column:after { width: 94%; height: 92%; background-color: #292928; position: absolute; top: 4%; left: 3%; content: ''; display: block; overflow: hidden; visibility: visible; z-index: -1; }This might need a few adjustments on smaller screens.
Best regards,
IsmaelHi!
We added this code in the functions.php file:
add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2); function avia_change_category_blog_layout($layout, $context){ if($context == 'archive') $layout = 'blog-grid'; return $layout; }Please check it here: http://explorenayarit.com/blog/category/what-to-do/
If you want to set the columns to two, modify archive.php then look for this code:
'columns' => 3,Adjust the value.
Cheers!
IsmaelHey dkowalewski!
Thank you for using Enfold.
We answered your inquiry here: https://kriesi.at/support/topic/big-mobile-pics/#post-519114
Cheers!
IsmaelOctober 16, 2015 at 6:56 am in reply to: Parent and Child Functions.php no longer responding after update #519679Hi!
Please undo the modification then look for this code:
if(empty($this->atts['thumbnails'])) { $image = ""; $extraClass = "av-magazine-no-thumb"; }Below, add this:
$excerpt = !empty($entry->post_excerpt) ? $entry->post_excerpt : avia_backend_truncate($entry->post_content, apply_filters( 'avf_magazine_excerpt_length' , 10) , apply_filters( 'avf_magazine_excerpt_delimiter' , " "), "…", true, '');Cheers!
IsmaelHey!
I’m sorry if I didn’t notice the button. It’s not included in the theme by default and I just realized I helped you implement the toggle button. I was able to reproduce the issue so you have to modify the code in the previous thread: https://kriesi.at/support/topic/technical-question-2/#post-470089
Replace it with:
add_action('ava_after_main_container', function() { echo "<a href='#' class='click-me-toggle'>Click This</a>"; }); add_action('wp_footer', 'ava_custom_script', 10); function ava_custom_script(){ ?> <script> (function($) { var sidebar = $('.html_header_left #top #header'), main = $('.html_header_left #main'); $('.click-me-toggle').click(function() { $(sidebar).toggle('slide'); $(window).trigger('resize'); if($(main).css('margin-left') == '300px') { $(main).css('margin-left', 0); } else { $(main).css('margin-left', '300px'); } }); }(jQuery)); </script> <?php }Please remove browser cache then reload the page. If it’s not working, II’ll ask someone else to check the site.
Best regards,
IsmaelHi!
1.) Did you set it again to stretched layout? Please set it back to boxed layout so that we can inspect the site.
2.) The logo is vertically align when I checked the site. What browser are you using?
3.) Add this in the Quick CSS field in order to move the slider:
#top .avia-smallarrow-slider .avia-slideshow-arrows { width: 100%; top: 50px; height: 24px; }Regards,
Ismael -
AuthorPosts
