Forum Replies Created

Viewing 30 posts - 45,091 through 45,120 (of 66,159 total)
  • Author
    Posts
  • Hi!

    You need to have the Social Meta Module panel in the seo plugin to enable the og tags but I don’t see it in the dashboard, must be a plugin conflict. Please contact the plugin author. http://semperplugins.com/documentation/social-meta-module/

    You can also try the jetpack’s open graph settings.

    Best regards,
    Ismael

    in reply to: How to switch date order in French from English #517149

    Hi tremblayly!

    Thank you for using Enfold.

    Please try this in the functions.php file:

    // filter time
    add_filter('get_the_time', function($d) {
    	global $sitepress;
    	if($sitepress->get_current_language() == 'fr') {
    		$d = 'j F y';
    	}
    	
    	return $d;
    }, 10, 1);

    If you can open a new ticket in the WPML support, it will help as well.

    Best regards,
    Ismael

    in reply to: Portfolio – List of items #517135

    Hi!


    @kallym
    : What is the login url? I tried wp-admin and wp-login but it’s not working. A screenshot of the issue will help as well. Use imgur or dropbox.

    Best regards,
    Ismael

    in reply to: Blog Categories #517133

    Hi!

    I’m sorry I forgot about that issue entirely. I refresh the loop-index.php file and it looks OK now: http://xandrianoir.com/2015/10/04/ethically-locked-up/

    Use the Excerpt box or the more tag to specify an excerpt in the blog overview page: https://en.support.wordpress.com/more-tag/

    Cheers!
    Ismael

    in reply to: columns, right size #517129

    Hi!

    Please use 1/4 columns then wrap the columns in a color section element. Add a unique id in the section field, use “custom-section” for example. We’ll adjust the size of the columns via the Quick CSS field. The css should look like this:

    #custom-section .flex_column.av_one_fourth:nth-child(1) {
    width: 16%;
    }
    
    #custom-section .flex_column.av_one_fourth:nth-child(2) {
    width: 32%
    }
    
    #custom-section .flex_column.av_one_fourth:nth-child(3) {
    width: 32%
    }
    
    #custom-section .flex_column.av_one_fourth:nth-child(4) {
    width: 16%;
    }

    Regards,
    Ismael

    in reply to: A solvable problem in relation to Font Size Error #517124

    Hey elliotstiller!

    Thank you for using Enfold.

    Could you please provide a screenshot of the issue? Use imgur or dropbox. A link to the actual page with the issue will help. You can change the font size of the text elements in the Enfold > Advanced Styling panel or via Quick CSS field.

    Regards,
    Ismael

    in reply to: The drag and drop feature broke #517122

    Hey!

    1.) I checked the Theme Update panel but you didn’t enter the account username and api key. Please get it on your themeforest account: http://themeforest.net/help/api

    2.) I’m sorry but we don’t provide that kind of service. All support inquiries are handled through the forum

    3.) If you download the theme from the themeforest account download panel, it should be the latest version so you don’t have to check it.

    I don’t get it, because my folder appears to be already unzipped.
    The folder on desktop is titled Enfold—responsive theme [etc]
    I click on it; there is a folder inside called “enfold”

    That is actually the correct theme zip file. You have to extract ( for pc: https://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/cf_extract.mspx?mfr=true for mac: http://support.topspinmedia.com/hc/en-us/articles/204262713-How-to-extract-a-zip-file-on-a-Mac) the actual enfold zip from the theme zip package. You can do that by simply dragging the enfold folder within the enfold theme zip package to your desktop. Use that file to update the theme. If you can send us a copy of the file, we’ll update it for you. Upload it on mediafire or dropbox.

    Regards,
    Ismael

    Hey dialedinmarketing!

    Thank you for using Enfold.

    You need to remove the post meta info completely. Edit includes > loop-index.php file, remove this block of codes:

    
                    echo "<span class='post-meta-infos'>";
                    $markup = avia_markup_helper(array('context' => 'entry_time','echo'=>false));
                    echo "<time class='date-container minor-meta updated' $markup>".get_the_time(get_option('date_format'))."</time>";
                    echo "<span class='text-sep text-sep-date'>/</span>";
    
                        if ( get_comments_number() != "0" || comments_open() ){
    
                        echo "<span class='comment-container minor-meta'>";
                        comments_popup_link(  "0 ".__('Comments','avia_framework'),
                                              "1 ".__('Comment' ,'avia_framework'),
                                              "% ".__('Comments','avia_framework'),'comments-link',
                                              "".__('Comments Disabled','avia_framework'));
                        echo "</span>";
                        echo "<span class='text-sep text-sep-comment'>/</span>";
                        }
    
                        $taxonomies  = get_object_taxonomies(get_post_type($the_id));
                        $cats = '';
                        $excluded_taxonomies =  apply_filters('avf_exclude_taxonomies', array('post_tag','post_format'), get_post_type($the_id), $the_id);
    
                        if(!empty($taxonomies))
                        {
                            foreach($taxonomies as $taxonomy)
                            {
                                if(!in_array($taxonomy, $excluded_taxonomies))
                                {
                                    $cats .= get_the_term_list($the_id, $taxonomy, '', ', ','').' ';
                                }
                            }
                        }
    
                        if(!empty($cats))
                        {
                            echo '<span class="blog-categories minor-meta">'.__('in','avia_framework')." ";
                            echo $cats;
                            echo '</span><span class="text-sep text-sep-cat">/</span>';
                        }
    
                        echo '<span class="blog-author minor-meta">'.__('by','avia_framework')." ";
                        echo '<span class="entry-author-link" '.avia_markup_helper(array('context' => 'author_name','echo'=>false)).'>';
                        echo '<span class="vcard author"><span class="fn">';
                        the_author_posts_link();
                        echo '</span></span>';
                        echo '</span>';
                        echo '</span>';
                    echo '</span>';

    Best regards,
    Ismael

    in reply to: Full screen video with audio #516794

    Hi janetgot!

    Thank you for using Enfold.

    I tested this on my installation and it is working as expected. Please do the modification suggested on the previous thread then hard refresh the page or remove browser cache.

    Cheers!
    Ismael

    in reply to: Active link / hover color on sticky header #516791

    Hey brendymullan!

    Thank you for using Enfold.

    You can try this in the Quick CSS field:

    .header-scrolled .av-main-nav > li.current-menu-item a > .avia-menu-text {
        color: #0071ce !important;
    }
    
    .header-scrolled .av-main-nav > li:hover a > .avia-menu-text {
        color: #0071ce !important;
    }

    Cheers!
    Ismael

    in reply to: Page Preloading logo lower #516789

    Hey mcraig77!

    Thank you for using Enfold.

    Add this in the functions.php file:

    function avia_preload_screen()
    	{
    		$class = avia_get_option('preloader_transitions') != "disabled" ? 'av-transition-enabled' : "";
    		$label = __('Loading','avia_framework');
    		$logo  = avia_get_option('preloader_logo');
    		if(is_numeric($logo)){ $logo = wp_get_attachment_image_src($logo, 'full'); $logo = $logo[0]; }
    		
    		if($logo) 
    		{
    			$class .= " av-transition-with-logo";
    			$logo = "<img class='av-preloading-logo' src='{$logo}' alt='{$label}' title='{$label}' />";
    		}
    		
    		$output  = "";
    		$output .= 	"<div class='av-siteloader-wrap {$class}'>";
    		$output .= 		"<div class='av-siteloader-inner'>";
    		$output .= 			"<div class='av-siteloader-cell'>";
    		$output .= 			$logo;
    		$output .= 			"<div class='av-siteloader'><div class='av-siteloader-extra'></div>";
    		$output .= 			"</div>";
    		$output .= 		"</div>";
    		$output .= 	"</div>";
    		$output .= "</div>";
    		
    		return $output;

    Modify this line:

    $logo = "<img class='av-preloading-logo' src='{$logo}' alt='{$label}' title='{$label}' />";
    

    Another another image tag.

    Regards,
    Ismael

    in reply to: Previous and Next Post Popout Links at Edges of Window #516788

    Hey!

    Try to use this instead:

    add_filter('avia_post_nav_entries','avia_same_category_filter', 10, 1);
    function avia_same_category_filter($settings) {
         $settings['same_category'] = true;
         return $settings;
    }

    Cheers!
    Ismael

    in reply to: 'Masonry Gallery' & 'Portfolio Grid' Image Hover Effects #516787

    Hi!

    Thank you for the update.

    If possible, please create a separate thread for each inquiry. It will make it easier for us to answer your questions and for users searching for the same issue.

    1.) Add this in the Quick CSS field:

    .av-masonry-image-container, .av-inner-masonry-content, .av-masonry-pagination {
        -webkit-transition: all 2s ease-in-out;
        transition: all 2s ease-in-out;
    }

    2.) Try to replace the arrow icon with this in the Quick CSS field:

    .image-overlay.overlay-type-extern .image-overlay-inside:before {
        content: url(image.jpg);
    }

    https://css-tricks.com/almanac/properties/c/content/

    3.) Add this in the Quick CSS field:

    #top .avia-slideshow-arrows a {
        background-color: transparent;
    }

    4.) We answered your inquiry here: https://kriesi.at/support/topic/fullscreen-slider-button-color/

    Best regards,
    Ismael

    in reply to: bg_container IE 8 Css Error #516785

    Hey pbennion!

    Thank you for using Enfold.

    It is a fullscreen background fix for IE browsers. You can just ignore the error. If you want to remove it, edit the footer.php file:

    if(isset($avia_config['fullscreen_image']))
    		{ ?>
    			<!--[if lte IE 8]>
    			<style type="text/css">
    			.bg_container {
    			-ms-filter:"progid:DXImageTransform.Microsoft.AlphaImageLoader(src='<?php echo $avia_config['fullscreen_image']; ?>', sizingMethod='scale')";
    			filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='<?php echo $avia_config['fullscreen_image']; ?>', sizingMethod='scale');
    			}
    			</style>
    			<![endif]-->
    		<?php
    			echo "<div class='bg_container' style='background-image:url(".$avia_config['fullscreen_image'].");'></div>";
    		}

    Regards,
    Ismael

    in reply to: White space problem #516784

    Hey elliotstiller!

    Thank you for using Enfold.

    If you put an element outside a color section, the theme will automatically create a section for that particular element. Each section has a top and bottom padding of 50px. Include the hr element inside the color section or try to create a gap via css:

    #av_section_1 {
        margin-top: 100px;
    }

    The Section ID field is going to be handy in this case. Adjust the value as you please.

    Regards,
    Ismael

    in reply to: Custom Social Icons – Showing wrong Fontello icons #516783

    Hi!

    Replace entypo-fontello with fontello:

    //custom social icons
    
    add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
    function avia_add_custom_icon($icons)
    {
    $icons['Spotify'] = array( 'font' =>'fontello', 'icon' => 'ue401');
    $icons['reverbnation'] = array( 'font' =>'fontello', 'icon' => 'ue402');
    $icons['itunes'] = array( 'font' =>'fontello', 'icon' => 'ue403');
    $icons['cdbaby'] = array( 'font' =>'fontello', 'icon' => 'ue404');
    $icons['indieonthemove'] = array( 'font' =>'fontello', 'icon' => 'ue405');
    
    return $icons;
    }

    If it’s not working, try to move the code below line 17 of functions.php file.

    Best regards,
    Ismael

    in reply to: Desktop Header Responsive Logo and Page Width #516782

    Hey!

    I get the same “this is enfold” text in a white page. Please ask your hosting provider to check the site.

    Best regards,
    Ismael

    in reply to: Fullscreen slider button color #516780

    Hey!

    Thank you for using Enfold.

    You can try this in the Quick CSS field:

    .avia-button.avia-color-orange {
        background-color: yellow;
        color: red;
    }

    Cheers!
    Ismael

    in reply to: Making the product grid 'flow' like Pinterest-style #516779

    Hey!

    I’m sorry I misunderstood your question. Did you try the masonry element in the ALB? The element is using the same isotope script (http://isotope.metafizzy.co/). However, the product buttons will be removed. You can contact codeable in order to implement the same script in the product pages: http://kriesi.at/contact/customization

    Regards,
    Ismael

    Hey!

    The images are inside the grid row element, that’s why it starts at the left edge of the page. Grid row is a full width element. Try to place the special headings inside a grid row element.

    Regards,
    Ismael

    in reply to: Breadcrumbs Problems #516773

    Hi!

    Great! Glad we could help. :)

    Regards,
    Ismael

    in reply to: Cannot chance sides #516772

    Hey!

    I modified Rikard’s text block. Please check it at the very bottom of the page. (Test Again.. Test Test)

    Regards,
    Ismael

    in reply to: Blog Categories #516771

    Hi!

    My bad. Something is missing in the code. You can check it now: http://xandrianoir.com/blog-and-reviews/

    NOTE: I disabled the W3 Total Cache temporarily. You can enable it back.

    Regards,
    Ismael

    in reply to: Problem with related_posts in secondary language with WPML #516770

    Hey!

    I checked the tag_id variable and it returns an array with the id 87 and 2, if I am not mistaken, which are the ids for the “product” and “customization” tags. However, I think the problem is that you created a post and another page with the exact same name and slug as the “Customization” tag. Please try to remove the post and the page.

    Cheers!
    Ismael

    Hey!

    You didn’t add any terms to the “activiteiten” taxonomy. Please edit the post:

    http://anv.qombine.nl/wp-admin/post.php?post=547&action=edit

    Set the “Hierarchical” option to true if you want it to work like the default post category.

    Cheers!
    Ismael

    in reply to: How to apend additional icon font #516766

    Hi!

    I’m sorry but we don’t usually hand any information like that. Is there any way we can access the site without our ip address?

    Cheers!
    Ismael

    in reply to: Align partners logo on one row on mobile #516765

    Hey!

    Please try to adjust the code a bit:

    @media only screen and (max-width: 480px) {
    .responsive #top #wrap_all .avia-content-slider-even .slide-entry.slide-parity-odd, .responsive #top #wrap_all .avia-content-slider-odd .slide-entry.slide-parity-even {
        padding: 0 2%;
        float: left;
        width: 23% !important;
        clear: none !important;
    }
    }

    Best regards,
    Ismael

    in reply to: Tablet Asus / Samsung header problem #516763

    Hi!

    Yes, screenfly is not the most reliable testing tool for mobile testing but Google chrome has an emulator which can spoof user agents. Anyway, I’ll ask the rest of the support to check it on an actual device. Please wait for their response.

    Cheers!
    Ismael

    in reply to: link on Latest portfolio entries widget opening in lightbox #516761

    Hey!

    Please try this:

    body {
        text-align: center !important;
    }

    The modification might affect other areas in the site.

    Cheers!
    Ismael

    in reply to: Subtitle in masonry post excerpt overlay #516760

    Hey!

    The data-sub attribute should be added inside the #top .isotope-item container. Please check. Maybe, the plugin is not working. Please test if the $sub variable is not empty, try the var_dump function. A link to the actual page will help.

    Cheers!
    Ismael

Viewing 30 posts - 45,091 through 45,120 (of 66,159 total)