Forum Replies Created
-
AuthorPosts
-
Hey elames!
Thank you for using Enfold.
You can use the Color Section element instead of the default header background option.
Regards,
IsmaelHi elames!
Thank you for using Enfold.
I’m not sure why your website is not loading on my end. I’ll ask the rest of the support to check this.
Regards,
IsmaelHi!
The sticky header should be disabled on mobile devices by default. Try to add this on Quick CSS:
@media only screen and (max-width: 767px) { .responsive #top #wrap_all #header { position: relative !important; }}
Regards,
IsmaelHey!
Thank you for using Enfold.
It has nothing to do with the category. Since you define “News” as the blog page, the title of all single post view will be set to “News”. You can add this on functions.php to modify the title of the Fira blog single post view:
add_filter( 'avf_title_args', 'avf_product_titlee', 0, 2 ); function avf_product_titlee( $args, $id ) { if ( in_category('Fira Blog')) { $args['title'] = "Fira"; } return $args; }
Regards,
IsmaelHi javieraisa!
Thank you for the kind words.
You can use this on Quick CSS to remove the featured image on archive pages:
.archive .big-preview.single-small { display: none; }
Cheers!
IsmaelHi diefleischerei!
Thank you for using Enfold.
Please download the latest version of the theme, 3.0.5. Refer to this link for a possible fix: http://www.fontsquirrel.com/blog/2010/11/troubleshooting-font-face-problems
Cheers!
IsmaelHi!
Unfortunately, the poster image feature isn’t available for self hosted videos for now. I’ll ask Kriesi to take a look. Use this on Quick CSS to force the controls to show by default.
.mejs-controls { visibility: visible !important; }
It is better to upload the videos on vimeo or youtube. https://www.wp101.com/10-reasons-why-you-should-never-host-your-own-videos/
Cheers!
IsmaelHey JerrelZ!
Thank you for using Enfold.
It is not possible to just remove the pause button but you can hide the whole controls. Look for the Hide Video Controls on the Video Slide option.
Regards,
IsmaelJanuary 22, 2015 at 1:15 pm in reply to: Single product page – main image – not visible when choosing variations #383647Hi!
Try this on functions.php:
/** * Modify Product Layout */ add_filter('wp_footer', 'avf_product_layout', 10); function avf_product_layout() { ?> <script> (function($){ $(window).load(function(){ $('#top .variations_form').insertAfter('.product_title.entry-title'); }); })(jQuery); </script> <?php }
Remove browser cache then reload the page.
Cheers!
IsmaelHey!
You don’t need to remove the image. You need to replace it with the PNG file format image that you just created:
add_action('ava_after_main_menu','custom_things'); function custom_things() { echo '<div class="secondary-logo"><a href=" http://dentists.theimplantexperts.com/"><img src="http://theimplantexperts.com/wp-content/uploads/2015/01/TIE_WebHeader_Patientslink.png" /></a></div>'; }
Please make sure that this PNG image has no transparent whitespace or gap.
Regards,
IsmaelHi TF_Photography!
Thank you for using Enfold.
I checked the site on Windows 8 Chrome and the parallax effect is working fine. I’ll ask the rest of the support team to check this.
Cheers!
IsmaelJanuary 22, 2015 at 12:49 pm in reply to: Contact form, breadcrumbs, slide, change word "all" in filter #383638Hi!
It is working fine. Please check the page now: http://www.take-ad-way.com/portfolio-item/yamaha/
Best regards,
IsmaelHi!
I’m not sure why the plugin is not working on the ALB so you should probably try to use the actual shortcode of the Color Section on page.php. Something like this:
<?php echo do_shortcode("[av_section color='main_color' custom_bg='#7123dd' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' min_height='50' min_height_px='500px' padding='default' shadow='no-shadow' bottom_border='no-border-styling' id='' custom_class=''][/av_section]"); echo "</div></div></div></div></div>"; ?>
Add the code right below this line:
if( get_post_meta(get_the_ID(), 'header', true) != 'no') echo avia_title(); ?>
You have to add 5 closing divs for each color section shortcode to fix the layout. I already switched the advance layout builder to debug mode so you’ll be able to generate the color section shortcode on a temporary page.
https://openfin.co/wp-admin/post.php?post=2089&action=edit&message=1
Cheers!
IsmaelHey!
@Bernewton: Is it possible for you to post a screenshot? Please try this on Quick CSS:@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and ( min--moz-device-pixel-ratio: 2), only screen and ( -o-min-device-pixel-ratio: 2/1), only screen and ( min-device-pixel-ratio: 2), only screen and ( min-resolution: 192dpi), only screen and ( min-resolution: 2dppx) { img, a img { max-width: 100%; } }
Cheers!
IsmaelHey!
Are you referring to single post view or the archive (tag /category) page? The single post view looks fine as well as the category page. It is showing the full content.
Regards,
IsmaelJanuary 22, 2015 at 12:00 pm in reply to: how to make background of main page content transparent or almost transparent? #383612Hi!
I’m sorry but the page is blank. Can you please provide a screenshot of what you’re trying to do with this page? If you want to a apply a custom background on a page, use the Color Section element. We’ll then figure out the semi transparent container background.
Regards,
IsmaelHey!
Oh. My bad. I didn’t know you have to click the map. I thought it is on maintenance mode. The .com site is inside a frame and it is breaking the responsiveness of the site. Why did you add it inside an frame?
Regards,
IsmaelJanuary 22, 2015 at 11:38 am in reply to: Some Issue with the post slider element when used on a single page multiple time #383601Hey!
You have to remove the css code we suggested above. If there is only one image or item in the page, use the Image element instead of the masonry element. You can’t center align the masonry items because the position of the entries is calculated dynamically via isotope script.
Regards,
IsmaelHi!
Do you want to remove the title or just change the h1 tag to something else? You can change the post title heading tag to h2 with this on functions.php:
function avia_default_title_filter($current_post) { if(!empty($current_post['title'])) { $heading = is_singular() ? "h2" : "h3"; $output = ""; //$output .= "<{$heading} class='post-title entry-title ". avia_offset_class('meta', false). "'>"; $output .= "<{$heading} class='post-title entry-title' ".avia_markup_helper(array('context' => 'entry_title','echo'=>false)).">"; $output .= " <a href='".get_permalink()."' rel='bookmark' title='". __('Permanent Link:','avia_framework')." ".$current_post['title']."'>".$current_post['title']; $output .= " <span class='post-format-icon minor-meta'></span>"; $output .= " </a>"; $output .= "</{$heading}>"; $current_post['title'] = $output; } return $current_post; }
Cheers!
IsmaelHi!
Add a unique class attribute on the buttons and text then modify the script above:
function add_custom_script(){ ?> <script> jQuery(window).load(function(){ jQuery('.ga-buy-1 a').attr('onclick', 'ga(\'send\', \'event\', \'Buy Button\', \'Resume\', \'Resume Template Download\')\;'); jQuery('.ga-buy-2 a').attr('onclick', 'ga(\'send\', \'event\', \'Buy Button\', \'Resume\', \'Resume Template Download\')\;'); jQuery('.ga-buy-3 a').attr('onclick', 'ga(\'send\', \'event\', \'Buy Button\', \'Resume\', \'Resume Template Download\')\;'); }); </script> <?php } add_action('wp_footer', 'add_custom_script');
Regards,
IsmaelHi!
On what page are you trying to add the widget? Unfortunately, we don’t provide support for third party plugins. Your best shot is to contact the plugin author to debug the issue.
Regards,
IsmaelHey!
Make sure that the Background Repeat option in the Color Section is set to Stretch to Fit.
Best regards,
IsmaelHey!
Yes, this falls as a custom work and is beyond the scope of support. You might need to hire a freelance developer or find a plugin. I don’t know of any specific plugin that do exactly what you wanted so I guess a custom script from a developer is your best shot.
Best regards,
IsmaelHey!
It should be easily editable on Appearance > Menus panel. Just change the Navigation Label to something else. The problem is, it’s not working on your installation. It seems to be stuck to the old menu. We don’t know why. I’ll ask the rest of the support team to take a look.
Regards,
IsmaelJanuary 22, 2015 at 7:23 am in reply to: Easy Slider on mobile devices – Headings not visible #383536Hi!
You should probably create another slider specifically for mobile devices. Try to add another fullscreen slider. Refer to this link on how to hide or show specific elements on different screen sizes using custom css class and media queries:
https://kriesi.at/support/topic/displaying-another-slider-on-mobile-devices/
https://kriesi.at/support/topic/replace-slider-on-mobile/
Regards,
IsmaelHey!
Did you try the solution provided above? It should fix the issue for websites using older version of PHP.
Regards,
IsmaelHi!
Let us know if the correct menu is showing after the update. We’ll keep the thread open.
Regards,
Ismael -
AuthorPosts