Forum Replies Created

Viewing 30 posts - 48,961 through 48,990 (of 67,537 total)
  • Author
    Posts
  • in reply to: Fontello – Possible to upload via FTP? #452411

    Hi jklillibridge!

    Thank you for using Enfold.

    Download the fontello files then extract it. Make sure that it contains all the font icons you need. Go to wp-content > uploads folder. Create a folder called avia_fonts then inside create another called fontello. Copy the following files from the extracted folder:

    config.json
    fonts > fontello.eot
    fonts > fontello.svg
    fonts > fontello.ttf
    fonts > fontello.woff

    After that, create a php file and name it “charmap“, add this code:

    <?php $chars = array();
    $chars['fontello']['ue800'] = 'ue800';
    $chars['fontello']['ue801'] = 'ue801';
    $chars['fontello']['ue802'] = 'ue802';
    

    The code above represents 3 icons. If you have more than 3 icons, just add another array by following the pattern.

    Regards,
    Ismael

    in reply to: Blog Page sidebar #452390

    Hi!

    Set the Blog Layout > Blog Style to “Use the advance layout builder..”. Please check it now: http://p262306.mittwaldserver.info/aktuelles/

    Cheers!
    Ismael

    in reply to: main content background image not showing #452383

    Hi!

    All you need to do is to replace the background-color property with the background or background-image property: http://www.w3schools.com/css/css_background.asp

    Set the background position then enable background repeat if you’re applying a pattern. A screenshot of what you’re after will help.

    Regards,
    Ismael

    in reply to: woocommerce custom product data field #452382

    Hi!

    The code is working but it doesn’t get the actual value:

    add_action( 'woocommerce_product_options_pricing', 'wc_new_option_field' );
    function wc_new_option_field() {
        woocommerce_wp_select( array(
          'id' => 'newoptions',
          'class' => 'newoptions',
          'label' => __('Testing Multiple Select', 'woocommerce'),
          'description' => __( 'Choose a value.', 'woocommerce' ),
          'options' => array(
            '1' => __( 'Option 1', 'woocommerce' ),
            '2' => __( 'Option 2', 'woocommerce' ),
            '3' => __( 'Option 3', 'woocommerce' ),
          ))
        );
    }
    
    add_action( 'save_post', 'wc_rrp_save_product' );
    function wc_rrp_save_product( $product_id ) {
        // If this is a auto save do nothing, we only save when update button is clicked
    	if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE )
    		return;
        // Select
      if ( isset( $_POST['newoptions'] ) ) {
    		update_post_meta( $product_id, 'newoptions', $_POST['newoptions'] );
    	} else {
        delete_post_meta( $product_id, 'newoptions');
      }
    }
    
    add_action( 'woocommerce_single_product_summary', 'wc_rrp_show', 5 );
    function wc_rrp_show() {
        global $product;
    		$option = get_post_meta( $product->id, 'newoptions', true );
    		echo '<div class="woocommerce_msrp">';
    		_e( 'New Option: ', 'woocommerce' );
    		echo '<span class="woocommerce-newoption">' . $option . '</span>';
    		echo '</div>';
    
    }
    

    Please contact the woocommerce support.

    Best regards,
    Ismael

    Hi!

    Remove the hr or separator element then edit the color section after the slider. Apply a unique id in the Section ID field. Use “custom-section” for example. Add this in the Quick CSS field to add a white space on top of the section:

    #custom-section {
       margin-top: 10px;
    }

    Cheers!
    Ismael

    Hi!

    You can set all default styling in the Main Content panel. Alternate Content settings will only be applied if you use a color section then set the Section Background > Section Colors to Alternate Content. All elements inside the color section will inherit the alternate content settings. And if you want to use your own custom css modifications, use the Quick CSS field.

    Regards,
    Ismael

    Hi!

    How did you set a different menu? Did you use a plugin?

    Best regards,
    Ismael

    in reply to: magazine blog layout as grid #452207

    Hey!

    You can add two blog posts element, set the second blog post element to grid layout. Enable the Offset Number to avoid duplicated posts.

    Best regards,
    Ismael

    Hey!

    I checked some of the links and they’re working:

    http://mcm-ct.com/t/stock-market/
    http://mcm-ct.com/t/markets/
    http://mcm-ct.com/t/mcm/
    http://mcm-ct.com/t/mcm-gap-index/

    Try to reset the permalink settings. Unfortunately, we don’t provide support for third party plugins. Please contact the plugin author.

    Best regards,
    Ismael

    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

Viewing 30 posts - 48,961 through 48,990 (of 67,537 total)