Viewing 30 results - 209,761 through 209,790 (of 244,617 total)
  • Author
    Search Results
  • #337369

    Topic: UberMenu 3

    in forum Enfold
    jalmz
    Participant

    Hi Guys,

    Im here again..

    I followed this instruction..
    http://sevenspark.com/docs/ubermenu-3/theme-integration/enfold

    My problem is that my picture background of my header is not align with the menu,,

    I want the height of my background image to 137 px.. as you can see there’s a green in below the background image.. i want to eliminate that,,

    Thanks for the support

    • This topic was modified 11 years, 6 months ago by jalmz.
    #337351

    Hey!

    Please try adding following code to Functions.php file in Appearance > Editor

    // temporary fix for woocommerce 2.2+ and enfold 3+: woocommerce_product_subcategories() not available in admin mode
    
    add_action('woocommerce_init', function() {
      if ( ! function_exists( 'woocommerce_product_subcategories' ) )
        include_once( __DIR__.'/../../plugins/woocommerce/includes/wc-template-functions.php' );
    } );

    Cheers!
    Yigit

    #337328

    My coder @vileworks.com wrote me:
    This is the jQuery code I’m using. You can try running (testing) this code on the Enfold demo page if you know how to use the javascript console in Chrome or Firefox: http://kriesi.at/themes/enfold/shortcodes/images-with-hotspots/

    $=jQuery;
    $(‘.av-hotspot-fallback-tooltip’).hide();

    $(‘.av-hotspot-fallback-tooltip-count’).on(‘click’,function(e) {
    $(‘html,body’).animate({ scrollTop: $(‘#main’).offset().top },’slow’);
    $(‘.av-hotspot-fallback-tooltip’)
    .slideUp(500);
    });

    $(‘.av-image-hotspot’)
    .each(function(){
    $(this).on(‘click’,function(e) {
    var hotspot_number = $(this).index() + 2;
    $(‘.av-image-hotspot .av-image-hotspot_inner’).removeClass(‘active’);
    $(this).find(‘.av-image-hotspot_inner’).addClass(‘active’);
    $(‘.av-hotspot-fallback-tooltip’).hide();
    $(‘.av-hotspot-fallback-tooltip:nth-child(‘+hotspot_number+’)’)
    .slideDown(500);;
    $(‘html,body’).animate({ scrollTop: $(‘.av-hotspot-fallback-tooltip:nth-child(‘+hotspot_number+’)’).offset().top – 100 },’slow’);
    });
    })
    .on(‘hover’,function(){ return false; });

    $(‘.av-hotspot-fallback-tooltip-inner p:empty’).remove();

    #337313

    Hi Effektid!

    You can find the file inside Enfold/includes/helper-social-media.php file.

    Please also try to increase the allocated memory to 128M: http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP
    You can contact your service provider and they can do it for you.

    Cheers!
    Yigit

    #337310

    In reply to: Iconbox in mobile view

    Hi!

    After adding the code to functions.php file you should see custom CSS class field – http://kriesi.at/documentation/enfold/wp-content/uploads/sites/2/2013/12/blur.jpg
    You can follow the instructions i posted here – https://kriesi.at/support/topic/iconbox-in-mobile-view/#post-336807
    and display different icons on mobile

    Best regards,
    Yigit

    #337301

    In reply to: Hide menu on home page

    Hi mixedmedia99!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .home nav.main_menu { display: none !important; }

    If that does not work, please post the link to your website

    Regards,
    Yigit

    #337300

    Hey!

    Please add following code to Quick CSS

    @media only screen and (max-width: 480px) {
    .responsive .logo a, .responsive .logo img { max-width: 90%!important; height: auto !important; }}

    and change header height in Enfold theme options > Header tab. It should make logo smaller automatically

    Regards,
    Yigit

    #337293

    Thanks Yigit!

    Works great. Any chance it can be applied to the Enfold Combo widget as well showing up within the page? Date can be still seen there.

    Thank you :)

    Antonio

    #337287

    Hey!

    Great!
    For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
    And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
    For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)

    Best regards,
    Yigit

    #337282
    Marie
    Participant

    Hey!
    I’ve tried to apply code given on #302398 but it doesn’t seem to work.
    Want to replace the default video icon by another one I have imported. (For blog page/posts mainly – second post on private link – and why not for the whole site).
    Here is the code I put in enfold child / functions.php
    Thanks for your help.

    Cheers!
    Marie

     $avia_config['font_icons'] = apply_filters('avf_default_icons', array(
     
        //post formats +  types
        'video'   		=> array( 'font' =>'entypo-fontello', 'icon' => 'ue808'),
    	
    	//image hover overlays
    	'ov_video'   		=> array( 'font' =>'entypo-fontello', 'icon' => 'ue808'),
    
    ));
    #337275

    Hi Damian,

    You mentioned that you have bought Enfold many times, please install one of them. That should be ok for this time since you have a new license for the new project

    Regards,
    Yigit

    #337268

    In reply to: Display typefaces

    Hey!

    Unfortunately previewing fonts is currently not possible but please feel free to request it here – https://kriesi.at/support/enfold-feature-requests/ :)

    Best regards,
    Yigit

    #337261

    Same Problem. WP4, Enfold 3.0.1. PHP 5.4. My own created Sliders doesnt work at the backend, on the Website it works. The Demo Slider works at the backend. I have no saving button and cant click the slides on the slider, cant edit the slider. All plugins deactivated

    • This reply was modified 11 years, 6 months ago by bur2000.
    #337254

    In reply to: Portfolio Post 404

    Hey!

    Please see – http://kriesi.at/documentation/enfold/how-to-add-an-orderorderby-option-to-the-blogpost-sliderportfoliomasonry-grid-element/
    and then add following code to Functions.php file in Appearance > Editor and change “All New” as needed

    add_filter('avf_masonry_sort_first_label','new_first_label');
    function new_first_label() {
    $first_item_name = "New All";
    return $first_item_name;
    }

    and add following code to Quick CSS in Enfold theme options under General Styling tab

    #top .isotope-item {
    padding-right: 5px;
    padding-bottom: 5px;
    }

    Best regards,
    Yigit

    #337242

    Hey stepheng!

    Please request such feature here – https://kriesi.at/support/enfold-feature-requests/

    Cheers!
    Yigit

    ZenZu
    Participant

    Can i import contents from custom cms to Enfold maintening the same layout created with Avia Editor for every page?

    #337239
    abortolotti
    Participant

    Hi guys,

    which code should I add in the quick CSS to remove comment counts and dates from the post slider element & the Enfold Combo Widget within the blog page?

    See the page here:

    https://casateulada.com/activities/

    Thank you!

    Antonio

    PS: Basically, I don’t want the date and comments to show up anywhere…

    • This topic was modified 11 years, 6 months ago by abortolotti.
    #337238
    Heng Gao
    Participant

    Hi enfold team:

    I wonder if there is a good way to remove the “You are here:” text in the child theme?

    BR//

    Heng GAO

    #337232
    jalmz
    Participant

    Hi Guys,

    I would like to ask on how change the width of my facebook comments. The width should be 714 px responsive..

    Im using http://peadig.com/wordpress-plugins/facebook-comments/

    #337231

    In reply to: Language Switcher

    Hey,
    thanks to you, the language switcher is back!

    Unfortunately, I liked it much better, when it was part of the menu, as in the older versions of enfold/wpml – especially on small screens.
    Is there a way, to got this layout back?

    Best
    Julia

    #337228
    Zijlstra
    Participant

    Hi there,

    really love the theme. But i do have a question:

    I have imported dummy data and i want the “Enfold – most beautiful theme ever” to be on my homepage. (default homepage that is in Pages) I have upload a new picture and it works fine in the editing mode, but when i view the page it doesn’t show up? The header is white and doesnt show any image.

    What am i doing wrong? Please help

    Extra info: ( i run xampp so the website is local at the moment)

    Kind regards,

    Ralph

    Hi

    I have updated the theme on live server. but it’s still only loading. I can’t edit anything.
    Current Configuration: live server: WordPress 4.0 running Enfold 3.0.1

    Regards,
    Sam

    #337221

    Hi again!
    I just overwrite enfold_de.css & enfold_fr.css with enfold.css content and now all is in the same side!
    That’s a workaround but it works like a charm, thanks again to Zohar for pointing the files to edit and wich lines of code where responsible for the issue.
    Thanks for your support!

    #337207

    Is there any estimated time for this update? Because this is the only reason, I can`t switch to enfold 3 with my live server.

    #337204

    Hi C-LabMX,

    I’ve tried using Josue’s method and it works!

    Find the functions.php file at this location: /themes/enfold/

    Just go to line 465, after

    avia_register_avia_widgets(); //call the function immediatly to activate
    }

    and before

    /*
     *  add post format options
     */
    add_theme_support( 'post-formats', array('link', 'quote', 'gallery','video','image','audio' ) );
    

    and paste this code:

    function add_custom_script(){
    ?>
    <script>
    jQuery(window).load(function(){
    jQuery('.av-masonry a').each(function(){
    jQuery(this).attr('target', '_blank');
    });       
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_script');
    

    Save and ftp back to the directory.

    Hope this helps.

    Cheers :)

    horwitzpro
    Participant

    Hi,

    The advanced layout editor has stopped working and theme options not showing on my live server installation.
    I have tried various suggestions mentioned in this forum, but still have the problem.
    My configuration details:
    Theme Version: 2014 July 9th – Version 2.9.1
    Live server: WordPress 4.0 running Enfold Child theme with layout editor issues.
    Development server: WordPress 3.9.2 running Enfold Child theme fine.

    Left side tab navigation menu on ‘Enfold Child Theme Options’ page is not showing.
    I have stopped all the plugins and tried, but no change.
    I tried after clearing my cache also, but the problem still exists

    I can’t open the screen options section.
    when I click ‘screen-options’ link look like: post.php?post=3898&action=edit#screen-options-wrap
    when I click ‘Advanced Layout Editor’: post.php?post=3898&action=edit#

    ‘Insert theme shortcode’ button generates popup, but I can’t save the modification.
    I’ve deactivated all of my plugins and it didn’t make a difference.
    I have tried by increasing php memory limit to 96mb, but it’s still only loading. I can’t edit anything.
    I am racing against time to deliver the website. Please help me.

    Thank you for your time,
    Sam

    Hi!

    Thank you for using Enfold.

    The logo on the theme can be easily modified using css if you you’re not satisfied with the default logo settings. If you noticed, beside the logo uploader, we added a simple note:

    Logo Dimension: 340px * 156px (if your logo is larger you might need to modify style.css to align it perfectly)
    

    I’ll ask Kriesi to comment on this thread.

    Best regards,
    Ismael

    #337187

    I encountered this issue as well – for some reason when you change the width, it should update the dynamic_avia but it does not,i suspect it might be a bug but i found a way to workaround.

    in order to work around this, i manually changed the enfold_child.css and enfild_child_en.css (your files might be named differently, depending on your actual theme name – mine is a child theme) which are located in “wp-content\uploads\dynamic_avia”.

    .container {width:100%;} .container .av-content-small.units {width:73%; }
    			
    			  .responsive .boxed#top , .responsive.html_boxed.html_header_sticky #header{ width: 1310px; max-width:90%; }
    			  .responsive .container{ max-width: 1310px; }

    (your setting might look different – mine is boxed and 1310px wide)

    please note that as far as i understand, the files are generated by script so if you change the layout later, you might need to change the settings again.

    it worked for me but please note that i’m just a user like you, maybe the guys in kriesi will have a better solution (mine works though.. :)

    Zohar

    #337183

    Hey simonac!

    Thank you for using Enfold.

    Can you please give us a link to the actual page with the issue? A screenshot will help.

    Cheers!
    Ismael

Viewing 30 results - 209,761 through 209,790 (of 244,617 total)