Forum Replies Created

Viewing 30 posts - 47,431 through 47,460 (of 65,998 total)
  • Author
    Posts
  • in reply to: Safari on iPhone/iPad mini #452203

    Hi hyperbayes!

    Thank you for using Enfold.

    That is a strange issue. Which specific products are mismatched? Please provide a screenshot. The website looks the same on Chrome and Safari, Windows 7.

    Best regards,
    Ismael

    in reply to: How to add this symbol to the main menue? #452202

    Hi Phenomedial!

    Thank you for using Enfold.

    That is added using css:

    .jobs-menu > a > span.avia-menu-text:after {
      content: "4";
      font-size: 9px;
      color: #FFF;
      background: #42A0BD;
      line-height: 17px;
      width: 17px;
      display: inline-block;
      text-align: center;
      border-radius: 100px;
      position: relative;
      top: -9px;
      left: 2px;
    }

    Add a custom css class to the menu: http://sevenspark.com/how-to/how-to-add-a-custom-class-to-a-wordpress-menu-item

    In the “Jobs” menu item, the custom css class attribute is “jobs-menu”.

    Best regards,
    Ismael

    in reply to: Add tracking code to custom page #452201

    Hey!

    Try to use the wp_head action hook: https://codex.wordpress.org/Plugin_API/Action_Reference/wp_head

    add_action('wp_head','ava_google_analytics');
    
    function ava_google_analytics() {
         $output = "GOOGLE ANALYTICS CODE HERE";
         echo $output;
    }

    Add the is_page conditional function in order to apply it on a specific page: https://codex.wordpress.org/Function_Reference/is_page

    Cheers!
    Ismael

    in reply to: Margins on Boxed layout and menu width #452199

    Hi!

    1.) Use this to increase the width of the container:

    .responsive .boxed#top, .responsive.html_boxed.html_header_sticky #header, .responsive.html_boxed.html_header_transparency #header {
      width: 100%;
      max-width: 98%;
    }

    2.) Try this to increase the mega menu width:

    #header .twelve.units {
      width: 1200px !important;
    }

    Use css media queries to adjust the width for smaller screens.

    Regards,
    Ismael

    Hey!

    Did you copy the code right from your email? Please compare it to the code above, see the difference. If I am not mistaken, you’ll see the single quote and quotes symbols converted to something else. The code works fine on our installation. If you want a right sidebar, just change this line:

    .single-product .product {
    width: 68%;
    margin-left: 4%;
    clear: none;
    float: right;
    }

    to this:

    .single-product .product {
    width: 68%;
    margin-right: 4%;
    clear: none;
    float: left;
    }

    And this code:

    function avf_product_sidebar_layout_mod($layout){
     if( is_single() )$layout = "sidebar_left";
     return $layout;
    }

    to this:

    function avf_product_sidebar_layout_mod($layout){
     if( is_single() )$layout = "sidebar_right";
     return $layout;
    }

    Regards,
    Ismael

    in reply to: Add costom php or shortcode to all portfolio Pages #452196

    Hey Christian!

    Thank you for using Enfold.

    Did you use the advance layout builder to build the portfolio items? You can add the shortcode or element individually or edit template-builder.php. Add a conditional function, is_singular(‘portfolio’) will do.

    Regards,
    Ismael

    in reply to: header and menu styling question #452195

    Hi simonac!

    Thank you for using Enfold.

    1.) Use this:

    @media only screen and (min-width: 989px) {
       div#header_meta {
      position: absolute;
      border: 0;
      top: 20%;
      }
    
    div#header_main {
      border-top: 0;
    }}

    2.) Use this:

    #top .av-subnav-menu > li.current_page_item a {
      color: red;
    }

    3.) Try this:

    .avia-menu.av-main-nav-wrap {
    text-align: center;
    }
    
    ul#avia-menu {
      float: none;
      display: inline-block;
    }

    Regards,
    Ismael

    Hi!

    Thank you for using Enfold.

    You can use this to define another background image for smaller screens:

    @media only screen and (max-width: 767px) {
      .header_color .header_bg {
        background: #ffffff url(//www.skloff.com/wp-content/uploads/2015/05/new-header.jpg) top center repeat scroll;
      }
    }

    Adjust the image url.

    Cheers!
    Ismael

    in reply to: Fatal error trying to visit a category page #452193

    Hi!

    What is the issue with the excerpt? Please open a new thread regarding the issue.

    Cheers!
    Ismael

    Hi enzowillemstad!

    Thank you for using Enfold.

    Unfortunately, it’s not possible to exclude an item. It’s either you set all links to open in a new tab or not.

    Regards,
    Ismael

    in reply to: How to remove elements in Avia layout builder? #452189

    Hi!

    Try this:

    function ava_remove_video_element() {
    echo '<style type="text/css">#avia_builder { display: none !important; }</style>';
    }
    
    add_action('admin_head', 'ava_remove_video_element');

    Regards,
    Ismael

    in reply to: Remove image overlay on single image in footer #452176

    Hey simonac!

    Thank you for using Enfold.

    Add this in the Quick CSS field:

    #footer .image-overlay { 
         display: none !important; 
    }

    Cheers!
    Ismael

    Hi Tilman!

    Thank you for using Enfold.

    The link above doesn’t exist. Please check if it’s the right one. The excerpt should be limited to a certain character or word count. You can use this plugin to control it: https://wordpress.org/plugins/advanced-excerpt/

    Cheers!
    Ismael

    in reply to: EasySlider not working on mobile #452174

    Hey!

    I’m sure you’re testing this by resizing the browser screen. Have you checked it on an actual mobile device? The slider should work there.

    Cheers!
    Ismael

    in reply to: Enfold Child Theme : CSS and other files not loaded #452173

    Hey yegortitov!

    Thank you for using Enfold.

    Please make sure that the wp-content folder have the correct file permission. Check the wp-content > uploads > dynamic_avia folder. Check if the enfold_child.css exists. Post the link to the website so that we can inspect it.

    Best regards,
    Ismael

    in reply to: Files to Edit Blog Layout #452169

    Hey!

    1.) Edit includes > loop-index.php, look for this code:

      echo '<span class="blog-categories minor-meta">'.__('in','avia_framework')." ";
    

    Adjust the “in” string.

    2.) Looks like you figured it out.

    Cheers!
    Ismael

    in reply to: help with noindex and seo settings #452166

    Hi!

    how does the search engine know if its a coming soon page or not?

    It doesn’t, but since there is nothing to do in the coming soon page, no content, crawlers will ignore it. The suggestion above is enough to disallow crawlers from the rest of the site: https://support.google.com/webmasters/answer/93710?hl=en

    Regarding the forum, that is a random issue, unfortunately, we haven’t figured out why it’s happening. Just refresh the page if you encounter it again.

    Regards,
    Ismael

    in reply to: Install a Version two times? #452160

    Hey Manuel!

    Thank you for using Enfold.

    Yes, you have to. The regular license is only good for a single end product or account.

    Best regards,
    Ismael

    in reply to: Layout query (widgets) #452154

    Hi!

    Bumping the thread will only push it at the end of the queue so we will not able to answer it. Please refrain from answering your own thread unless you don’t mind getting a late response.

    I checked the screenshot that you provided and the current state of the site but I don’t see any resemblance so I’m not sure where to start.

    Yes, it’s possible to add more than one image on a cell but that’s not what you want. Add another grid row below the existing one. If you use the layer slider, you can position the images manually. The design that you want cannot be automatically achieve with the builder alone, you need to use custom css modifications. Please hire a freelance developer or contact codeable: http://kriesi.at/contact/customization

    Best regards,
    Ismael

    in reply to: Good widget for external links (e.g. press coverage)? #452148

    Hey DalandanUX!

    Thank you for using Enfold.

    You can use the Logo/Partner element or the Image element plus column layouts, set the link manually.

    Best regards,
    Ismael

    in reply to: Theme Options changes not working #452147

    Hey!

    The only explanation is the memory limit still hasn’t change. We installed a plugin to show the current memory limit and it’s still set to 40MB. Please contact your hosting provider regarding the issue. You can find the info at the bottom of the dashboard:

    Thank you for creating with WordPress. | Memory : 40.85 of 40

    Ask your hosting provider for any imposed limitation on your server.

    Cheers!
    Ismael

    Hey!

    The code is working, all you need to do is to adjust it. You can request it here: https://kriesi.at/support/enfold-feature-requests/

    Best regards,
    Ismael

    in reply to: Video in slider not playing #452142

    Hey smorrone!

    Thank you for using Enfold.

    The theme is outdated, version 3.0.4. Please update to 3.1.5. That should fix the issue.

    Regards,
    Ismael

    in reply to: < > Being insert in codeblock #452139

    Hey!

    Please create a test page with the issue. I checked the page but I don’t see any unwanted “signs” or symbols in the table.

    Regards,
    Ismael

    Hey!

    Unfortunately, that modification is no longer working. It presents too much layout complications. Try to add this to the functions.php:

    #
    # wrap single product image in an extra div
    #
    
    function avia_add_image_div() {
     echo "<div class='single-product-main-image alpha'>";
    }
    
    function avia_close_image_div() {
     echo "</div>";
    }
    
    #
    # wrap single product summary in an extra div
    #
    
    function avia_add_summary_div() {
     echo "<div class='single-product-summary'>";
    }
    
    function avia_close_summary_div() {
     echo "</div>"; //close out the summary
     get_sidebar();
    }
    
    function avf_product_sidebar_layout_mod($layout){
     if( is_single() )$layout = "sidebar_left";
     return $layout;
    }
    
    add_action('init', 'ava_product_sidebar_mod');
    function ava_product_sidebar_mod() {
     add_action( 'woocommerce_before_single_product_summary', 'avia_add_image_div', 2 );
     add_action( 'woocommerce_before_single_product_summary', 'avia_close_image_div', 20 );
     add_action( 'woocommerce_before_single_product_summary', 'avia_add_summary_div', 25 );
     add_action( 'woocommerce_after_single_product_summary', 'avia_close_summary_div', 3 );
     add_filter( 'avf_product_sidebar_layout', 'avf_product_sidebar_layout_mod', 5);
    }

    Edit config-woocommerce > config.php file, look for this code:

    $sidebar_setting = avia_layout_class( 'main' , false );
    

    Replace it with:

    $sidebar_setting = apply_filters( 'avf_product_sidebar_layout', avia_layout_class( 'main' , false ) );
    

    After that, add this in the Quick CSS field.

    .single-product .product {
    width: 68%;
    margin-left: 4%;
    clear: none;
    float: right;
    }

    The sidebar should switch to the left.

    Cheers!
    Ismael

    in reply to: Übersetzung Enfold Options #451938

    Hi Ralf!

    Thank you for using Enfold.

    I’m sorry but the theme options translation is disabled because it breaks the options. If you want to translate the front end, you can use this plugin: https://wordpress.org/plugins/loco-translate/

    Regards,
    Ismael

    in reply to: CSS changes not working #451936

    Hey!

    The current font doesn’t support font weight of 500. Try to use 400:

    #top #wrap_all .header_color h3, #top #wrap_all .main_color h3, #top #wrap_all .alternate_color h3 {
      font-family: 'Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
      font-weight: 400;
    }
    

    Cheers!
    Ismael

    in reply to: Magazine Element Shortcode #451935

    Hey Wils1234!

    Thank you for using Enfold.

    You can use the Enfold Latest News widget or generate the magazine shortcode then copy it on a text widget.

    Best regards,
    Ismael

    in reply to: Margins on Boxed layout and menu width #451933

    Hi thecszone!

    Thank you for using Enfold.

    I want to check the page but it gives me a forbidden 404 error. Please make sure that you’re running Enfold 3.1.5 on WordPress 4.2.2.

    Cheers!
    Ismael

    in reply to: Original icons! #451930

    Hi!

    You can use an actual icon image instead of the default icon font. After you add the custom css class attribute, use it again in the Quick CSS field. For instagram, you can try this:

    .icon-instagram [data-av_icon]::before {
      content: url(ICON IMAGE URL HERE);
    }

    http://www.w3schools.com/cssref/tryit.asp?filename=trycss_content_url

    Regards,
    Ismael

Viewing 30 posts - 47,431 through 47,460 (of 65,998 total)