Forum Replies Created

Viewing 30 posts - 49,621 through 49,650 (of 66,182 total)
  • Author
    Posts
  • in reply to: Getting the Sidebar to show the Parent/Grandparent #411423

    Hi!

    It’s not working because you don’t have the latest version of WordPress. Please upgrade WordPress 4.1.1 then download the latest version of the theme, version 3.1.

    Regards,
    Ismael

    Hey!

    I tried to add a custom auto resize function inside the child theme’s functions.php file, unfortunately, it’s not working. I think the best thing to do is to contact the plugin author.

    Cheers!
    Ismael

    in reply to: Objects not showing up over video color section #411398

    Hi!

    Actually, I cannot reproduce the issue again. Please post the login details. Set it as a private reply.

    Best regards,
    Ismael

    in reply to: Masonry portfolio grid lightbox issue #411397

    Hey!

    What do you mean by ” filter does not filter the lightbox.”? I test this on my installation, defined a custom link (image) for a single portfolio item, set a masonry page, once clicked the image open in a lightbox but it doesn’t include other images in the masonry. Please provide a link to the page.

    Regards,
    Ismael

    in reply to: sub menu anchor link find not exact position #411391

    Hi!

    I checked the site, go to the Kontact page then hit the ZV menu item. I was redirected to the correct page and section. Same with sfpl and thc links.

    Regards,
    Ismael

    in reply to: email link, top bar styling for wpml #411388

    Hi Munford!

    Thank you for using Enfold.

    The site leads me to a 404 page. Please check. You can remove the default flag switcher. Refer to this link: https://kriesi.at/support/topic/wpml-language-switcher-position-and-theme-update/#post-394167

    Cheers!
    Ismael

    in reply to: Testimonial name on top #411385

    Hey!

    You can try this:

    function add_custom_script(){
    ?>
    <script>
    jQuery(function() {
    	jQuery(".avia-testimonial-meta").each(function(){
    		jQuery(".avia-testimonial_inner").prepend(jQuery(this));
    		
    	});
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_script');

    Adjust the content position using css.

    Best regards,
    Ismael

    in reply to: Error in Google Testing Tool #411382

    Hi!

    I tried to login to the site but I was being redirected to the my account page. I can’t access the dashboard because wp bar is missing.

    Best regards,
    Ismael

    in reply to: facebook widget font color #411381

    Hey surfersp!

    Thank you for using Enfold.

    Unfortunately, you can’t modify the facebook likebox app style. It’s either “light” or “dark”. Create your own facebook widget here: https://developers.facebook.com/docs/plugins/like-box-for-pages

    Best regards,
    Ismael

    in reply to: Advanced layer slider #411377

    Hey!

    Did you build the blog page using the advance layout builder or did you set the Blog Style to use the advance layout builder? Add it directly using the advance layout builder.

    Cheers!
    Ismael

    in reply to: Custom.css caching issue #411376

    Hi!

    Please update us if you encounter any issue.

    Best regards,
    Ismael

    in reply to: RGBA issue #411370

    Hey!

    Change the social bar area with this:

    #header_meta {
      background: red;
    }

    And the header with this:

    .header_color .header_bg {
      background-color: blue;
    }

    Can you please provide a screenshot of the “fake 3dstyle” design that you want?

    Regards,
    Ismael

    in reply to: Annoying Grey Color – Where to change? #411365

    Hi!

    Go to the Enfold > General Styling panel then browser through the different areas of the site (Logo Area, Main Content etc). Replace all GREY color with the color that you want.

    Regards,
    Ismael

    in reply to: Responsive issue #411363

    Hey!

    Adjust the css media queries above:

    @media only screen and (max-width: 1800px) {
    #sliderhp .av_two_third {
      margin-left: 0%!important;
      width: 100%;
    }
    #sliderhp .av_one_third {
      margin-left: 0%!important;
      width: 60%!important;
    }}

    Or use a layer slider. Set the right part of the slider as layer slider logo on Slider Settings.

    Regards,
    Ismael

    in reply to: logo custom size #411361

    Hey!

    I think you should separate the header background and the actual logo. Better if you can separate the header text, star and the other logo located at right. Is that possible?

    Regards,
    Ismael

    in reply to: A few simple questions #411359

    Hey!

    Use a hook on functions.php:

    add_action('ava_after_main_container', 'ava_after_main_container_mod');
    function ava_after_main_container_mod() {
    	echo '<a href="http://www.lightsandmusic.com/"><img class=" size-full wp-image-51945 aligncenter" src="http://test.theburningear.com/media/2015/03/TEST-Leaderboard.png" alt="TEST-Leaderboard" width="728" height="90"></a>';
    }

    Regards,
    Ismael

    in reply to: Stretched images IE8 #411358

    Hi!

    Please post the login details here. We would like to check it.

    Cheers!
    Ismael

    in reply to: Sidebar not showing up in the right place #410487

    Hi!

    The customization above is for the product sidebars. Please create a new thread for you inquiry. Anyway, looks like you’re using color sections on your pages. Note that color section will always push the sidebar underneath them. If you want to use the color section + sidebar on one page, set the page to have no sidebar then use the Widget Area element.

    Best regards,
    Ismael

    Hi!

    It takes time (an hour maybe) before facebook updates or scrape the information on a given url. Please try it tomorrow. If you want to check the facebook information for a given url, go here: https://developers.facebook.com/tools/debug/og/object/

    Regards,
    Ismael

    Hi!

    You will be able to create a custom Slideshow Image Size by adding the code inside the child theme’s functions.php:

    // add new size
    add_image_size( 'awesome-size', 1500, 630, true );
    
    // make the new size available in the media library (and image element etc.)
    add_filter( 'image_size_names_choose', 'my_custom_sizes' );
    
    function my_custom_sizes( $sizes ) {
        return array_merge( $sizes, array(
            'awesome-size' => __( 'Awesome Size' ),
        ) );
    }

    Upload the images again then select the “Awesome Size” in the easy slider’s Slideshow Image Size setting.

    Regards,
    Ismael

    in reply to: Custom menu based on portfolio category #410339

    Hi!

    If I may interject, you should try this plugin: https://wordpress.org/plugins/menu-items-visibility-control/

    Add the menu items inside the Enfold Main Menu then set the Visibility:

    is_tax( 'portfolio_entries', 'economics' );
    

    This will only show the menu item on portfolio category page “economics”. If you don’t want to show the default menu items inside the category page, use this:

    !is_tax( 'portfolio_entries', 'economics' );
    

    Regards,
    Ismael

    in reply to: Add embed field to post #410337

    Hey!

    Try to edit includes > loop-index.php, look for this code:

    echo $content;
    

    Below, add this:

    $mvp_video = get_post_meta( $the_id, 'mvp_video_embed', true );
    			if($mvp_video) { echo $mvp_video; }

    Best regards,
    Ismael

    in reply to: "Read more" at Masonry Blog #410335

    Hey!

    Looks like the filter isn’t working. Please edit config-templatebuilder > aviashortcodes > masonry_entries.php. Look for this code:

    if(empty($this->loop[$key]['content']))
    				{
    					$this->loop[$key]['content'] 	= avia_backend_truncate($entry->post_content, apply_filters( 'avf_masonry_excerpt_length' , 60) , apply_filters( 'avf_masonry_excerpt_delimiter' , " "), "…", true, '');
    				}

    Replace it with:

    if(empty($this->loop[$key]['content']))
    				{
    					$this->loop[$key]['content'] 	= avia_backend_truncate($entry->post_content, apply_filters( 'avf_masonry_excerpt_length' , 60) , apply_filters( 'avf_masonry_excerpt_delimiter' , " "), "…", true, '') . "<br /><span class='masonry-more-link-arrow'>".__('Read more','avia_framework')."</span>";
    				}

    Cheers!
    Ismael

    in reply to: Customize Language Selecter of WPML a bit #410334

    Hi!

    Editing the core theme files means that you will lose all modifications when you update the theme. I think it’s best if you add the css modifications inside the Quick CSS field. All you need to do is to get the proper selector. If you want to add margins or padding between the language selector, use this:

    .avia_wpml_language_switch li .language_flag {
      display: block;
      margin-right: 5px;
    }

    A screenshot will help.

    Best regards,
    Ismael

    in reply to: Menu not picking up styling #410332

    Hi!

    Did you install a different theme before Enfold? Try to create a dummy menu then set it as Enfold Main Menu, let us know what happens.

    Cheers!
    Ismael

    in reply to: Chrome bug #410329

    Hi!

    Try to increase the WordPress Memory Limit to at least 256M: http://docs.woothemes.com/document/increasing-the-wordpress-memory-limit/

    Cheers!
    Ismael

    Hey!

    Thank you for using Enfold.

    It is suppose to show that way because it is pulling the actual author slug or username which is “mad-rhino”. I think it’s best if you write the author name manually. You can fix the lowercase issue by adding a custom css:

    text-transform: capitalize;
    

    The dash symbol is not going to be remove though.

    Regards,
    Ismael

    in reply to: Responsive issue – Need Help #410323

    Hi!

    The layer slider applies the width of the background image dynamically to keep it inside the slider container. Since you’re not using any animations or effects on the slider, try to replace the layer slider with the fullwidth easy slider. Or add the image as a layer then set the width and height to 100%.

    Best regards,
    Ismael

    in reply to: Featured Images – Dealing With Portrait Sizes #410322

    Hey!

    I don’t think you can deal with this issue without compromising parts of the images specially when you have images that tall. Please deactivate the Simple Image Sizes plugin then edit functions.php, look for this code:

    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>423 );						// images for fullsize pages and fullsize slider
    

    Replace it with:

    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>423, 'crop' => array('center', 'top'));						// images for fullsize pages and fullsize slider
    

    Upload the image again. This time, the crop positioning of the image is center top which prevents the top and center part from being cut off.

    Cheers!
    Ismael

    in reply to: Blog Grid Layout problem #410318

    Hey!

    The maximum size of the small preview container is 180x180px. You can change that with this:

    .single-post .single-small.with-slider .small-preview {
      width: 180px;
      height: 180px;
    }

    Adjust the width and height then install this plugin: https://wordpress.org/plugins/simple-image-sizes/

    Go to Settings > Media panel, look for the square thumbnail size. Set the Cropping parameter to “No”. You can also adjust the width and height if you want. Update then save changes. Regenerate the thumbnails after.

    Best regards,
    Ismael

Viewing 30 posts - 49,621 through 49,650 (of 66,182 total)