Forum Replies Created

Viewing 30 posts - 57,451 through 57,480 (of 67,476 total)
  • Author
    Posts
  • in reply to: Enfold Social Media Links at Top – Yelp? #290732

    Hey Micheal0424!

    Yes, this is possible but, sadly, I can’t find any yelp icon on http://fontello.com/. If you find the icon, you can do the following:

    Edit functions.php, find this code on line 16:

    if(isset($avia_config['use_child_theme_functions_only'])) return;
    

    Below, add this code:

    add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
    function avia_add_custom_icon($icons)
    {
    $icons['new-social-icon']	 = array( 'font' =>'fontello', 'icon' => 'ue970');
    return $icons;
    }
    
    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
    function avia_add_custom_social_icon($icons)
    {
    $icons['New Social Icon'] = 'new-social-icon';
    return $icons;
    }

    If that doesn’t work please download the font that you want on http://fontello.com/ then upload it via Enfold > Enfold > Import/Export panel > Iconfont Manager. Edit functions.php, find this code:

    'scrolltop' 	=> array( 'font' =>'entypo-fontello', 'icon' => 'ue876'),
    

    Below, add this code:

    'new-social-icon' 	=> array( 'font' =>'fontello', 'icon' => 'ue802'),
    

    I used the checkmark from Font Awesome. Edit includes > admin > register-admin-options.php, find this code on line 971:

    'Youtube'   => 'youtube',
    

    Below, add this code:

    'New Social Icon'   => 'new-social-icon',
    

    You can now select the Slideshare social icon. You can do the same with yelp icons. Regarding the icon codes, you need to remove the plus sign. U+E802 should be converted to ue802. You can do the same with different social icons.

    Refer to this thread for more info: https://kriesi.at/support/topic/head-with-social-media-and-large-logo/

    Regards,
    Ismael

    in reply to: masonry galley loading all items in gallery library #290730

    Hi!

    Thank you for the info.

    I’m not sure if this is going to work on your installation but please refer to this link: https://kriesi.at/support/topic/gallery-edit-issues#post-277654

    Cheers!
    Ismael

    in reply to: custom sidebar wont go live #290725

    Hi!

    Thank you for the update.

    The login credentials that you provided are not working. Please check. We would like to check the page and widget settings.

    Regards,
    Ismael

    in reply to: Make Mobile Menu the Desktop Menu #290724

    Hi!

    Thank you for the update.

    Unfortunately, this particular request is beyond the scope of support and is not a theme related issue. You might need to find a plugin like ubermenu or hire a freelance developer to add the feature for you. Please visit Envato Studio or Werkpress for further customization. You can also vote or post the feature on our Feature Requests page.

    If you have any further questions about the theme, we are more than happy to provide you with assistance

    Cheers!
    Ismael

    in reply to: Post Photo Snippets #290723

    Hi srmathis!

    Thank you for using the theme!

    What do you mean by “photo-snippets”? Can you please elaborate or explain it a bit further?

    Regards,
    Ismael

    in reply to: Landingpage Style 1 #290722

    Hey luoja!

    Thank you for using the theme.

    The section is created using color sections, 1/3 columns and iconbox. Add a background on the color section then insert 3 column layouts. On each columns, add the icon box element. In case you have any questions, please take some time to review all of the resources in the Theme Documentation as a lot of basic stuff like theme installation, css snippets etc are already available in there with better explanation and awesomeness. Watch some of our Video Tutorials to learn more about the different aspect of the theme. You can also search the forums for queries that has been answered before that might be related to your problem.

    If you find that you still have questions after taking the time on our documentations, don’t hesitate to let us know and we will be happy to assist you. If you have any requests or you feel like giving us a warm hug? You can definitely post it on our Feature Requests page. :)

    Regards,
    Ismael

    in reply to: Photo arrow expanders #290721

    Hi!

    Thank you for using the theme!

    I think he’s talking about the image overlay. Use this on Quick CSS or Custom.css:

    span.image-overlay.overlay-type-extern {
    display: none !important;
    }

    Cheers!
    Ismael

    in reply to: replace date with price #290720

    Hey Roy!

    Thank you for using the theme.

    Please edit config-templatebuilder > avia-shortcodes > postslider.php, find this code on line 386:

    $output .= "<time class='slide-meta-time updated' $markup>" .get_the_time(get_option('date_format'), $the_id)."</time>";
    

    Replace it with:

    global $product;
    						$product = new WC_Product( $entry->ID );
    						$price = $product->price;
    						$output .= "<time class='slide-meta-time updated' $markup>" .$price."</time>";

    Regards,
    Ismael

    in reply to: "Meet the team" page #290719

    Hi luoja!

    Thank you for using the theme.

    Which part are you having trouble with? If you import the dummy data, the team page is already included.

    Best regards,
    Ismael

    in reply to: Slider 1 pixel gap and Full-width masonry gallery #290717

    Hi juliuspang!

    Thank you for using the theme.

    Please use this on Quick CSS or custom.css to remove the 1px gap on the slider:

    .avia-slideshow-inner {
    overflow: visible;
    width: 100%;
    }

    Best regards,
    Ismael

    in reply to: portfolio url issue #290716

    Hey!

    I’m sorry but you might need to hire someone if you want the navigation to perform that way. Please visit Envato Studio or Werkpress for further customization. You can also vote or post the feature on our Feature Requests page.

    Cheers!
    Ismael

    Hey mattock!

    Thank you for visiting the support forum!

    Add this on Quick CSS or custom.css to adjust the width of the portfolio items on iPad view:

    @media only screen and (max-width: 989px) and (min-width: 768px) {
    #top .grid-sort-container .no_margin.av_one_fifth {
    width: 25%;
    }
    }

    Great work! Love the portfolio.

    Best regards,
    Ismael

    in reply to: responsive mode – center text #290712

    Hey sineadh!

    Thank you for using the theme.

    Please post the website url here. We need to inspect it. A screenshot will help. :)

    Regards,
    Ismael

    in reply to: Blog Page #290711

    Hi!

    Thank you for the link although I’m not really sure which blog style you’re referring to since you added an iframe link. Do you want this kind of blog? http://kriesi.at/themedemo/?theme=enfold

    If that’s what you want, on Enfold > Blog Layout > Blog Style. Select Multi Author Blog.

    Regards,
    Ismael

    in reply to: Adding your own Icon Fonts with child theme #290708

    Hey!

    Thank you for the update.

    The ziparchive class is not enabled on your installation. If you check on the layer slider import/export panel, you’ll see the warning: http://www.purepepper.de/wp-admin/admin.php?page=layerslider

    It says: “Status: ZipArchive isn’t avilable”.

    Regards,
    Ismael

    in reply to: Showing text if no posts found Magazine module #290705

    Hey df50!

    Thank you for using the theme.

    Please edit magazine.php, find this code on line 512:

    if($loop !== 1 && !empty($this->atts['first_big_pos'])) $output .= "</div>";
    				
    				$output .= "</div>";
    			}
    			
    			return $output;

    Below, add this code:

    if($loop !== 1 && !empty($this->atts['first_big_pos'])) $output .= "</div>";
    				
    				$output .= "</div>";
    			} else {
    				
    				$output .= "<div class='av-magazine-group {$css}'>";
    			
    				echo "My awesome message here";
    				
    				$output .= "</div>";
    			}
    			
    			return $output;
    

    Cheers!
    Ismael

    in reply to: Slider Export/Import #290701

    Hey!

    Thank you for the update.

    I tested and the execution limit time max out so please try to increase the limit to 120. Refer to this link for more info: http://codex.wordpress.org/Common_WordPress_Errors#Maximum_execution_time_exceeded

    Cheers!
    Ismael

    in reply to: Accordion slider #290700

    Hey Thomas!

    Thank you for using the theme.

    Unfortunately, you need to hire someone if you want to add the Newscast accordion slider. Anyway, they are the same accordion slider. What do you mean by “its dark”? Are you referring to the caption background? You can change it with this:

    #top .aviaccordion-preview-title-wrap {
    position: relative;
    display: table;
    height: 100%;
    width: 100%;
    background: #000;
    background: rgba(0,0,0,0.5);
    padding: 0;
    filter: alpha(opacity=60);
    }

    Change the background color and opacity.

    Best regards,
    Ismael

    Hey!

    Thank you for using the theme.

    You can use this on Quick CSS or custom.css to disable the captions on mobile devices especially on iPhones:

    @media only screen and (max-width: 767px) {
    .main_color .container .av-inner-masonry-content {
    display: none;
    }
    }

    Cheers!
    Ismael

    in reply to: new lightbox iframe #290697

    Hi!

    Thank you for the update.

    Right now, we’re still looking into making more simple but you can try this:

    On a text editor, add this code:

    <a class="iframe-popup" href="kriesi.at">Open PopUp</a>
    

    Then edit js > avia.js, look for this code on line 6:

    $(document).ready(function()
        {	

    Below, add this code:

    	$('.iframe-popup').magnificPopup({
      type: 'iframe',
      
      
      iframe: {
        patterns: {
          kriesi: {
           
            index: 'kriesi.at',
            
            id: '/',
            
            src: 'http://%id%'
            
          }
        }
      }
     
    });

    Change url on the index parameter.

    Regards,
    Ismael

    in reply to: New Glassy header do not work with custome header size #290685

    Hey pako69!

    Thank you for using the theme.

    It looks fine when I tested it on my end. Please post the website URL here. We would like to check it.

    Cheers!
    Ismael

    in reply to: Center Captions of Masonry Elements #290684

    Hey!

    Thank you for the update.

    Please edit the masonry gallery then look for Image Title and Caption. Select “Display Neither”.

    Cheers!
    Ismael

    in reply to: Best way to update theme using child theme #290682

    Hey!

    Also, try logging out and in again on wordpress dashboard. Maybe this is just a cache issue.

    Cheers!
    Ismael

    in reply to: Comentarios No Follow en los comentarios #290681

    Hey!

    Thank you for using the theme.

    If possible, please avoid creating duplicated posts. Please refer to this link: https://kriesi.at/support/topic/no-follow-in-the-comments/

    Regards,
    Ismael

    in reply to: Warning on Masonry Entries page #290676

    Hi!

    Thank you for the update.

    You can add this on functions.php to disable the theme session but this might break the breadcrumbs:

    add_theme_support('avia_no_session_support');
    

    If you have the time, please try this fix: https://kriesi.at/support/topic/help-trying-to-understand-error-message/

    Best regards,
    Ismael

    in reply to: Remove image preview for video on mobile #290674

    Hi courtney_martin!

    Thank you for using the theme.

    Please add this on Quick CSS or custom.css to remove the slider on mobile device:

    @media only screen and (max-width: 767px) {
    .page-id-2 div#full_slider_1 {
    display: none !important;
    }
    }

    Note that videos on the sliders won’t play on mobile device so you have to add a fallback image.

    Regards,
    Ismael

    in reply to: LayerSlider WP – Preview not matching live #290671

    Hey!

    Thank you for using the theme.

    I checked the website and the layer slider looks good. Sometimes the preview might differ because some stylesheets are not loaded on wp dashboard like shortcodes.css etc. What you can do is estimate the adjustments to make it just right on the frontend. Anyway, please download the latest version of the theme Enfold 2.9.1. Some really cool stuff added on the latest patch. Enjoy the theme!

    Regards,
    Ismael

    in reply to: Enfold – Display breadcrumbs only option #290669

    Hey!

    Thank you for using the theme.

    If you want to remove the title and leave the breadcrumbs. Please add this on Quick CSS or custom.css:

    .title_container .main-title {
    display: none;
    }

    Regards,
    Ismael

    in reply to: Display error: additional dropdown menu #290667

    Hey themanwhoknows!

    Thank you for using the theme!

    Do you mind if we take a look at your installation? Please go to Enfold > Header Layout > Extra Elements panel. Disable the Header Secondary Menu.

    Regards,
    Ismael

    in reply to: Sortable Table Rows #290666

    Hi!

    Thank you for visiting the support forum.

    Actually it is possible now. Download Enfold 2.9.1, you’ll see arrows to move the table columns and rows.

    Best regards,
    Ismael

Viewing 30 posts - 57,451 through 57,480 (of 67,476 total)