Viewing 30 results - 82,051 through 82,080 (of 142,836 total)
  • Author
    Search Results
  • #770497
    diggital
    Participant

    Hi, I imported the Enfold Shop Demo – everything looks fine, but the main navigation menu contains the shop menu items as well.

    In your demo there is only the main navigation and when I edit it, there are no shop items like “My Account, Cart, Checkout”. How can I get rid of these, because now its doubled (also in the second menu on top of the page)?

    Best regards,
    D.

    #770489

    Hi Grey,

    Great, glad you got it working and thanks for the feedback. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

    #770480

    Hi,
    I believe I addressed this in https://kriesi.at/support/topic/image-in-place-of-text-to-caption-title-in-fullwidth-easy-slider/#post-770430
    If I’m wrong just let me know :)
    Best regards,
    Mike

    Hey venomroms,
    The login is not working, nonetheless your “entypo-fontello.woff Failed to load with 503 error”
    Please make sure that wp-content/uploads folder has correct permissions ( 755 )
    Please try: https://kriesi.at/support/topic/fontello-icon-fonts-missing-all-browsers/#post-425914 or https://kriesi.at/support/topic/fontello-icon-fonts-missing-all-browsers/#post-427603

    Best regards,
    Mike

    #770471

    Hey enricobaumgart,
    you can follow the info here: https://kriesi.at/support/topic/structured-data-html/#post-758414
    But note that the structured data tool is not meant for websites / blogs:

    Structured data refers to kinds of data with a high level of organization, such as information in a relational database. When information is highly structured and predictable, search engines can more easily organize and display it in creative ways.

    https://developers.google.com/search/docs/guides/intro-structured-data?visit_id=1-636246650229734911-91592462&hl=en-GB&rd=1

    Best regards,
    Mike

    #770456

    Perhaps this is a related question: how do I create a full page background image? On some of the pages the previous Admin makes it appear as though the page has a background image but he used the Color Section instead. The content inside the color section vertically aligns in the middle. What I want is a page with a full page background image and the content aligning to the top. See http://www.thelastpig.com/join-the-herd/

    This page uses the transparent header and the page content is inside a Color Section. The “Join The Herd” header is inside a Special Heading block. I don’t want all the space between the header and the menu bar.

    Thanks!

    #770450
    mikogradle
    Participant

    Hi

    my site is here…

    my question is… why doesnt the top menu appear AT ALL unless I scroll down? I UNCHECKED and saved Sticky Header, so it’s not supposed to be sticky.

    thoughts?

    Miko

    #770444

    by the way – go and have a look here – there are some hints to settings:

    https://kriesi.at/support/topic/ability-to-select-header-position-on-page-overwrite-theme-settings/

    #770441

    Hi,
    Try this code in the General Styling > Quick CSS field:

    a#scroll-top-link, a#scroll-top-link:hover {
    background-color: red!important; 
    }

    Best regards,
    Mike

    #770440

    well there was a snippet ( a bit bigger than the others) to have for each page/post the opportunity to choose if header is top, left or right.
    for that snippet you have to use by default first the top header and than switch on the page.

    add_filter('avf_builder_elements', 'register_meta_elements', 10, 1);
    function register_meta_elements($avf_builder_elements) {
      $avf_builder_elements[] = array(
        "slug"  => "layout",
        "name"  => __("Header Position",'avia_framework'),
        "id"    => "header_position",
        "desc"  => "Select the position of the header",
        "type"  => "select",
        "std"   => "",
        "class" => "avia-style",
        "subtype" => array( 
                            __("Default",'avia_framework') => '',
                            __('Top Header','avia_framework') =>'header_top',
                            __('Sidebar Header (Left)','avia_framework') =>'header_left header_sidebar',
                            __('Sidebar Header (Right)','avia_framework') =>'header_right header_sidebar',
    
                    )
      );
    
      return $avf_builder_elements;
    }
    
    if(!function_exists('avia_header_setting'))
    {
      function avia_header_setting($single_val = false)
      {
        global $avia_config;
        if(isset($avia_config['header_settings']) && $single_val && isset($avia_config['header_settings'][$single_val])) return $avia_config['header_settings'][$single_val];
        if(isset($avia_config['header_settings']) && !$single_val) return $avia_config['header_settings']; //return cached header setting if available
        
        $defaults = array(  'header_position' => 'header_top',
                  'header_layout'=>'logo_left menu_right', 
                  'header_size'=>'slim', 
                  'header_custom_size'=>'', 
                  'header_sticky'=>'header_sticky', 
                  'header_shrinking'=>'header_shrinking', 
                  'header_title_bar'=>'',
                  'header_social'=>'',
                  'header_unstick_top' =>'',
                  'header_secondary_menu'=>'', 
                  'header_stretch'=>'',
                  'header_custom_size'=>'',
                  'header_phone_active'=>'',
                  'header_replacement_logo'=>'',
                  'header_replacement_menu'=>'',
                  'header_mobile_behavior' => '',
                  'header_searchicon' => true,
                  'header_mobile_activation' => 'mobile_menu_phone',
                  'phone'=>'',
                  'sidebarmenu_sticky' => 'conditional_sticky',
                  'layout_align_content' => 'content_align_center',
                  'sidebarmenu_widgets' => '',
                  'sidebarmenu_social' => 'disabled',
                  'header_menu_border' => '',
                  'header_style'  => ''
                  );
                  
        $settings = avia_get_option();
        
      
    
        //overwrite with custom fields if they are set
        $post_id = avia_get_the_id();
        if($post_id && is_singular())
        { 
          $custom_fields = get_post_custom($post_id);
          
          foreach($defaults as $key =>$default)
          {
            if(!empty($custom_fields[$key]) && !empty($custom_fields[$key][0]) ) 
            {
              $settings[$key] = $custom_fields[$key][0];
            }
          }
          
          //check if header transparency is set to true
          $transparency = post_password_required() ? false : get_post_meta($post_id, 'header_transparency', true);
    
          if(get_post_meta($post_id, 'header_position', true)){
    
            $header['header_position'] = get_post_meta($post_id, 'header_position', true);  
          }
          
        }
            
        $header = shortcode_atts($defaults, $settings);
        $header['header_scroll_offset'] = avia_get_header_scroll_offset($header);
        
        if($header['header_position'] != "header_top") return avia_header_setting_sidebar($header, $single_val);
        
        //set header transparency
        $header['header_transparency'] = "";
        if(!empty($transparency)) $header['header_transparency'] = 'header_transparency';
        if(!empty($transparency) && strpos($transparency, 'glass')) $header['header_transparency'] .= ' header_glassy';
        if(!empty($transparency) && strpos($transparency, 'hidden')) $header['disabled'] = true;
        if(!empty($transparency) && strpos($transparency, 'scrolldown')) 
        {
          $header['header_transparency'] .= ' header_scrolldown';
          $header['header_sticky'] = 'header_sticky';
        }
        
        
        //deactivate title bar if header is transparent
        if(!empty($transparency)) $header['header_title_bar'] = 'hidden_title_bar';
        
        //sticky and shrinking are tied together
        if($header['header_sticky'] == 'disabled') { $header['header_shrinking'] = 'disabled'; $header['header_scroll_offset'] =  0; }
        
        //if the custom height is less than 70 shrinking doesnt really work
        if($header['header_size'] == 'custom' && (int) $header['header_custom_size'] < 65) $header['header_shrinking'] = 'disabled';
        
        //create a header class so we can style properly
        $header_class_var = array(  'header_position', 
                      'header_layout', 
                      'header_size', 
                      'header_sticky', 
                      'header_shrinking', 
                      'header_stretch', 
                      'header_mobile_activation', 
                      'header_transparency', 
                      'header_searchicon', 
                      'header_unstick_top',
                      'header_menu_border',
                      'header_style'
                    );
                    
        $header['header_class'] = "";
        
        foreach($header_class_var as $class_name)
        {
          if(!empty($header[$class_name]))
          {
            if($header[$class_name] == "disabled") $header[$class_name] = $class_name."_disabled";
            $header['header_class'] .= " av_".str_replace(' ',' av_',$header[$class_name]);
          }
        }
        
        //set manual flag if we should display the top bar
        $header['header_topbar'] = false;
        if(strpos($header['header_social'], 'extra_header_active') !== false || strpos($header['header_secondary_menu'], 'extra_header_active') !== false || !empty($header['header_phone_active'])){ $header['header_topbar'] = 'header_topbar_active'; }
        
        //set manual flag if the menu is at the bottom
        $header['bottom_menu'] = false;
        if(strpos($header['header_layout'],'bottom_nav_header') !== false) 
        {
          $header['bottom_menu'] = 'header_bottom_menu_active'; 
        }
        else
        {
          $header['header_class'] .= " av_bottom_nav_disabled ";
        } 
        
        
        
        //header class that tells us to use the alternate logo
        if(!empty($header['header_replacement_logo']))
        {
          $header['header_class'] .= " av_alternate_logo_active"; 
          if(is_numeric($header['header_replacement_logo']))
          { 
            $header['header_replacement_logo'] = wp_get_attachment_image_src($header['header_replacement_logo'], 'full'); 
            $header['header_replacement_logo'] = $header['header_replacement_logo'][0]; 
          }
        
        }
        
        //header class that tells us to use the alternate logo
        if(empty($header['header_menu_border']))
        {
          $header['header_class'] .= " av_header_border_disabled"; 
        }
        
        
        $header = apply_filters('avf_header_setting_filter', $header);
    
        //make settings available globaly
        $avia_config['header_settings'] = $header;
        
        if(!empty($single_val) && isset($header[$single_val])) return $header[$single_val];
        
        return $header;
      }
    }

    f.e. look here: https://webers-testseite.de/kokon/beispiel-seite/

    and than have a look to the other pages.

    Hi,
    I think I understand, try these :)
    postimage
    For logo too large on phone, Try this code in the General Styling > Quick CSS field:

    @media only screen and (max-width: 479px) {
    #top div .caption_center .slideshow_caption {
        left: 25% !important; 
        width: 50% !important; 
        text-align: center !important; 
    }}

    postimage
    For menu showing on tablet, Try this code in the General Styling > Quick CSS field:

    @media only screen and (max-width: 768px) {
    .responsive .main_menu ul:first-child > li > a {
        padding: 0 5px 0 5px !important; 
    }}

    postimage
    For logo too large on laptop, Try this code in the General Styling > Quick CSS field:

    @media only screen and (max-width: 1024px) and (min-width: 770px) {
    .logo img {
        padding: 10% 0 0 0 !important; 
        width: 65% !important; 
    }}

    Best regards,
    Mike

    #770423

    Ok… had to make some additional changes to the code. Here is what I’m using that finally worked (when all the curly brackets were in place!):

    .avia_transform #top .av_font_icon {
            opacity: 1 !important;
            -moz-transform:scale(1) !important;
            -webkit-transform:scale(1) !important;
            -o-transform:scale(1) !important;
            transform: scale(1) !important;
    }
    
    .avia_transform #top .av_font_icon { 
    	-webkit-animation: none !important;
    	-moz-animation: none !important;
    	-o-animation: none !important;  
    	animation: none !important;    
    }
    #770414

    In reply to: Masonry gallery error

    Hi dadisk8!

    In the Masonry Gallery do you have the lightbox feature turned off?

    Then you are not alone with this problem:

    https://kriesi.at/support/topic/masonry-gallery-bug-since-4-0-3-when-lightbox-is-deactivated/#post-766548

    Regards,
    Nic

    Good afternoon Mike. Your quick response is unreal! Wow!

    You do not see a code snippet because I did not not have any to add. Tried numerous times running through the code in the forums with no luck so gave up.

    (I guess my class=”custom-image”> can be whatever I decide to reference?

    Here is all the CSS Code I have at the moment – nothing that would effect the Title Caption.

    .current_page_item a > .avia-menu-text {color:#a4a4a4!important;}
    }
    #advanced_menu_toggle, #advanced_menu_hide {
    background-color: #a4a4a4!important;
    }
    .sub_menu_socket {
    display:none !important;
    }
    .phone-info {
    font-size: 14px;
    }
    @media only screen and (max-width: 767px) {
    .responsive #scroll-top-link {
    display: block !important;
    }}
    .av_promobox {
    background-color: transparent!important;
    }
    .avia-promocontent p {
    font-size: 21px;
    }

    #770407
    #770404

    Hi,

    The child theme is not activated because I went back to the parent theme. Please see the pictures I posted on this reply: https://kriesi.at/support/topic/adding-taglineslogan-on-home-page/#post-768544

    If you can tell me what I can do after the child theme is activated so it would look like the website I had set up in parent theme, I would appreciate it. Or if you want to activate the child theme yourself since I have given my log in information, you can feel free to that as well. I would just like to know what you did so I can know for future reference.

    Thanks

    #770403
    pamk21
    Participant

    Using below in the caption title of Fullwidth Slider for an image works fine on desktop. Cannot get it to resize for mobile devices – i.e. too big on phone, etc.

    Anyone css that works?

    #770352

    Hey mariasol3,

    Here is a nice article on the topic.

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #770351

    Hey Joe McGrath,

    Try removing the avia.js from child theme and using the one in parent theme (especially if there were no modifications to avia.js and your parent theme has been updated).

    Also, the error is in Isotope which you have v2.0.0 and current is v3.0.2. So you can put a fresh avia.js into child theme folder and see what happens.

    Let us know if the problem persists.
    Best regards,
    Victoria

    #770350

    In reply to: Adding a Plugin

    Hey tim_t20,
    To add a plugin to your WordPress click Plugin > Add New from the main left side menu, then you can upload from the top left button or search and add from the right side search box. This is for all of your themes :)
    postimage
    Maybe this video will help:

    Best regards,
    Mike

    No problem. In the private content area, I provided links to to images. The image called “grid-layout-ipad-mini.jpg” shows 2 columns of progressive bars in a 2 column, 1/2 by 1/2 grid layout. As you will see, the two columns of progressive bars are next to each side by side and way too skinny and the words run into each other. The image called “grid-layout-mobile.jpg” shows each of the 2 columns of progressive bars laid out on top of each other, stacked rather than side by side. Hoping you have some CSS that forces the columns in a grid layout to stack rather than displaying side by side on an iPad mini like they do on a mobile. As I mentioned, it looks great on a desktop and on an iPad Mini landscape orientation. The problem is with the iPad Mini portrait orientation. Thanks!

    #770335

    Hi Sigmund,

    Please add this code to your /themes/enfold-child/style.css

    
    #top .av-masonry-load-more:hover {
            letter-spacing: 1px;
    }
    

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #770333
    ikaika72
    Participant

    Hello,

    I currently have two full screen slider images that are fixed. They look great on desktop, but on mobile they are huge and blurry. Will you please advise on how to fix this? Thank you.

    Hi Daryi,

    You can use WordPresses hooks and filters instead of modifying that class. Please refer to this thread for a possible solution.

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #770318

    In reply to: Functions.php

    Hey Jessica,

    Please remove the code that is breaking things for you and refer to this thread for a possible solution.

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #770300

    In reply to: POST SLIDER TITLE SIZE

    Hi,

    Please try this instead:

    #topslide .slide-entry-title a { 
      font-size: 50px !important;
    }

    Best regards,
    Rikard

    #770260
    ftomassetti
    Participant

    Hi,
    I would simply like to insert an HTML code block that span for the whole width of the page like the Fullwidth easy slider or the Fullwidth sub menu. I tried inserting an HTML code and selecting the option “Deactivate schema.org markup” but it does not seem to work. It worked the first time I hit the preview button and it stopped after that (I saw this behavior multiple times).

    Any suggestion?

    #770238

    Hey mesenrj,

    This link should help you: https://kriesi.at/support/topic/mailchimp-api-not-connecting/#post-552739

    Best regards,
    John Torvik

    #770231

    Hey zetharia,

    To change the button position, just apply top, bottom, left and right values using this custom CSS code at Enfold Theme Options > General Styling > Quick CSS

    
    .slideshow_align_caption .avia-button {
      top: 40px;
    }
    

    Just change or add the top,bottom, left or right property.

    Best regards,
    John Torvik

    santanin
    Participant

    Good day. My site looks awesome on desktop, mobile, and iPad Mini landscape. But it does not look good on iPad Mini Portrait due to the issue of having elements across 3 columns and grid layouts with 2 columns. I have seen some posts about this, but not too many, and I was not able to find my answer.

    I found this code from one of your threads that solved the issue of my 2 and 3 column layouts that had simple elements like the image element and the text block element. On the iPad Mini portrait, the photos and text block no longer appear next to each other, but now appear stacked like on mobile using this CSS:

    @media only screen and (max-width: 890px)
    {
    .flex_column { width: 100% !important; margin-left: 0 !important; }
    }

    So that’s good. However, the Grid Layout elements still appear next to each other, which looks awful on the iPad Mini portrait view. The above CSS did not make them stacked. Can you offer some additional CSS that will make the Grid Layout columns to become stacked on the iPad Mini portrait (just like it happens on a mobile device)? I provided a link to my staging site in the Private Content area if you need it.

    Thank you.

Viewing 30 results - 82,051 through 82,080 (of 142,836 total)