Forum Replies Created

Viewing 30 posts - 61,441 through 61,470 (of 67,145 total)
  • Author
    Posts
  • in reply to: Top Navigation not being displayed on Search Results Page #211697

    Hi Anthony!

    Seems like a plugin issue to me. 35 plugins will possibly cause you an issue or two. Please post the login details here as a private reply. Deactivate all plugins first. We would like to check it after you deactivate all the plugins because we don’t want to mess with your plugin settings.

    Best regards,
    Ismael

    in reply to: Problem with Mega Menu #211693

    Hey!

    Edit js > avia.js, find this code on line 1011:

    if(pos.left + megaDiv.width() < parentContainerWidth)
    						{
    							megaDiv.css({right: -megaDiv.outerWidth() + item.outerWidth()  });
    							//item.css({position:'static'});
    						}
    						else if(pos.left + megaDiv.width() > parentContainerWidth)
    						{
    							megaDiv.css({right: -mainMenuParent.outerWidth() + (pos.left + item.outerWidth() ) });
    						}

    Replace it with:

    if(pos.left + megaDiv.width() < parentContainerWidth)
    						{
    							megaDiv.css({right: 0 });
    							//item.css({position:'static'});
    						}
    						else if(pos.left + megaDiv.width() > parentContainerWidth)
    						{
    							megaDiv.css({right: 0 });
    						}

    Remove browser cache then reload the page a few times.

    Cheers!
    Ismael

    in reply to: Icon Box Title link bug I think. #211687

    Hey caesss!

    Thank you for the heads up. Appreciated! Anyway, the markup has been changed on latest version of Enfold.

    $link = aviaHelper::get_url($link);
                    if(!empty($link))
                    {
                        $title = "<a href='$link' title='".esc_attr($title)."' $blank>$title</a>";
                    }

    Regards,
    Ismael

    Hi Anthony!

    Edit framework > php > class-framework-widgets.php, find this code on line 594:

    echo $before_widget;
    				$output = "";
    				if(isset($twitter))
    				{
    					$link = 'http://twitter.com/'.$twitter.'/';
    					$before = apply_filters('avf_social_widget', "", 'twitter');
    					$output .= "<a href='$link' class='asc_twitter $addClass'>{$before}<strong class='asc_count'>".__('Follow','avia_framework')."</strong><span>".__('on Twitter','avia_framework')."</span></a>";
    					
    				}
    
    				if($rss)
    				{
    					$output .= "<a href='$rss' class='asc_rss $addClass'>".apply_filters('avf_social_widget',"", 'rss')."<strong class='asc_count'>".__('Subscribe','avia_framework')."</strong><span>".__('to RSS Feed','avia_framework')."</span></a>";
    				}

    Replace it with:

    echo $before_widget;
    				$output = "";
    				if(isset($twitter))
    				{
    					$link = 'http://twitter.com/'.$twitter.'/';
    					$before = apply_filters('avf_social_widget', "", 'twitter');
    					$output .= "<a target='_blank' href='$link' class='asc_twitter $addClass'>{$before}<strong class='asc_count'>".__('Follow','avia_framework')."</strong><span>".__('on Twitter','avia_framework')."</span></a>";
    					
    				}
    
    				if($rss)
    				{
    					$output .= "<a target='_blank' href='$rss' class='asc_rss $addClass'>".apply_filters('avf_social_widget',"", 'rss')."<strong class='asc_count'>".__('Subscribe','avia_framework')."</strong><span>".__('to RSS Feed','avia_framework')."</span></a>";
    				}

    Regards,
    Ismael

    Hi thyon!

    You can use the Icon shortcode. Render it using a test page then copy the shortcode. Place inside a Text widget.

    Regards,
    Ismael

    in reply to: add class to avia-section? #211680

    Hi pako69!

    You can add a unique selector for each Avia Elements. Edit functions.php, find this code:

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

    Below, add this code:

    add_theme_support('avia_template_builder_custom_css');

    Edit any avia elements then look for “Custom Css Class”.

    Best regards,
    Ismael

    in reply to: Image hover – items underneath jumping #211676

    Hey Artinet!

    I’m sorry but there is no content below the image on the link you gave us. I don’t see the “jump”. This usually happens when you add the alignleft, alignright css selectors if I am not mistaken.

    Regards,
    Ismael

    in reply to: Sidebar menu: need to emphasize ! #211674

    Hi!

    Glad you found it. You can also add the code on css > custom.css file.

    Cheers!
    Ismael

    in reply to: Responsive Facebook widget #211672

    Hi!

    Glad it worked. :)

    Regards,
    Ismael

    in reply to: Enfold edit header / css / search bar #211671

    Hi!

    Please give us a link to the website and if possible please translate the inquiry in english. Thanks.

    Best regards,
    Ismael

    in reply to: Avia Advanced Layout Builder for posts #211670

    Hi fjrichart!

    he Advanced Layout Builder is not set up to run on posts correctly so it isn’t something we support. You can watch this video how: http://vimeo.com/64996057

    These are the following problems that may occur when you switch to Advance Layout Builder on posts.

    – Featured image will be lost on the single post view.
    – The post title will switch to the left of the header instead of below the featured image.
    – You can’t comment on posts.
    – No related posts will be shown or interesting links.

    Best regards,
    Ismael

    in reply to: Modal popup with promo box / button #211667

    Hi biekhois!

    You can use the prettyPhoto functionality, when clicked the button will open a lightbox popup. Please refer to this link, you can either use an inline content or an external site: http://www.no-margin-for-errors.com/projects/prettyphoto-jquery-lightbox-clone/

    Regards,
    Ismael

    in reply to: Straighting-up Enfold Breadcrumbs #211665

    Hi!

    You can edit the file on Appearance > Editor. Look for the Themes Functions.

    Best regards,
    Ismael

    in reply to: font-size and color: Your comment is awaiting moderation #211664

    Hi fjrichart!

    You can add this on Quick CSS to change the font size:

    .comment_text em {
    font-size: 11px;
    }

    Best regards,
    Ismael

    in reply to: Show Author Information in post #211661

    Hey leomiranda92!

    Edit includes > loop-index.php, find this code on line 173:

    echo $content;

    Below, add this code:

    `$description = get_the_author_meta(‘description’, $author_id);
    echo “<div class=’author_description_text'” .avia_markup_helper(array(‘context’ => ‘description’,’echo’=>false)).”>”.wpautop($description).”</div><span class=’author-extra-border’></span></div>”;`

    Regards,
    Ismael

    in reply to: layer slider shift #211333

    Hey MUNFORD!

    Please add this code on Quick CSS:

    .entry-content-wrapper a:hover .aligncenter {
    clear: both;
    display: block;
    margin: 0;
    padding: 0;
    }

    Regards,
    Ismael

    in reply to: Responsive Facebook widget #211328

    Hi etiagomail!

    Please use this on Quick CSS or custom.css:

    @media only screen and (max-width: 989px) and (min-width: 768px) {
    .fb_iframe_widget iframe {
    width: 220px !important;
    }
    }

    Remove browser cache then reload the page.

    Best regards,
    Ismael

    in reply to: IE breaks columns & icons #211323

    Hey hetveer!

    Can you please give us a link to the actual website? Do you have the latest version of Enfold?

    Regards,
    Ismael

    Hey!

    1.) Please try this, remove browser cache then reload the page a few times after:

    @media only screen and (min-width: 1140px) {
    .responsive .container {
    width: 1060px;
    }
    }
    
    .container {
    width: 940px;
    padding-left: 15px;
    }
    
    @media only screen and (max-width: 989px) and (min-width: 768px) {
    .responsive .container {
    width: 712px;
    }
    }
    
    @media only screen and (max-width: 767px) and (min-width: 480px) {
    .responsive .container {
    width: 458px;
    padding: 0 15px;
    }
    }

    2.) It’s not possible to have a full width layer slider using the Boxed Layout.

    Regards,
    Ismael

    in reply to: Enfold theme options – styling #211318

    Hi!

    Please locate the enfold.css file on wp-content/uploads/dynamic_avia folder. Set the file permission to 755 then try to change the settings again.

    Cheers!
    Ismael

    in reply to: Images not resizing propoerly #211116

    Hey!

    Let us know if the Easy Slider resize properly.

    Best regards,
    Ismael

    in reply to: Images not resizing propoerly #211114

    Hey!

    You can upload large images, say 1000x400px, the theme will automatically crop or resize the image into different thumbnail sizes. You can insert the Easy Slider on a 1/3 column then select the thumbnail size that you want on “Slideshow Image Size”. Choose “Medium(300×300): to be exact.

    Regards,
    Ismael

    in reply to: HTML Editor is missing in Version 2.4.5 #211113

    Hi!

    Yes, you need to add it every time you update the theme unless you created a child theme. Please watch this video on how to set up a child theme: https://vimeo.com/channels/aviathemes/67221517

    Best regards,
    Ismael

    in reply to: Featured Image hosted on a separate server #211112

    Hi controlC!

    You can try this plugin but you can only use it on posts: http://wordpress.org/plugins/featured-image-via-url/

    Regards,
    Ismael

    in reply to: Images not resizing propoerly #211106

    Hi!

    I’m sorry if you feel that way, we are trying our best to help you. If you’re expecting the Easy Slider to actually resize when you select the size of the image thumbnail on “Slideshow Image Size” then you’re wrong. The Easy Slider will inherit the size of the container. The “Slideshow Image Size” option choose which image size is going to be use on the slider. You need to place the Easy Slider inside a column layout like 1/2 or 1/3 etc to restrict the size or place it inside a div or container with specific height and width that you set using css. This post has been flag for the support team member’s attention. Please wait for additional responses.

    Cheers!
    Ismael

    in reply to: Footer text working only in one language #211105

    Hey!

    You forgot to set the “Default Footer Widgets & Socket Settings” to “Display footer widget and socket” on the English version.

    Regards,
    Ismael

    in reply to: Header CSS Issue – #211101

    Hi reddog4955!

    You have a lot of plugins installed. Please deactivate them, see if the issue persist. Post the login details here after you deactivate the plugins so that we can inspect it.

    Regards,
    Ismael

    in reply to: HTML Editor is missing in Version 2.4.5 #211099

    Hey!

    We have version 2.4.5 now. Please download the theme again on your themeforest account the update it via FTP. Watch this video by Devin: https://vimeo.com/channels/aviathemes/64927356

    Edit functions.php again, find this code:

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

    Below, add this code:

    //set builder mode to debug
    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug()
    {
    return "debug";
    }

    Updating the theme will remove the modifications that you made unless you’re using a child theme.

    Regards,
    Ismael

    in reply to: Mobile questions #211096

    Hey pako69!

    Please give us a link to the actual website. Add this on Quick CSS to display the scroll to top link on mobile devices:

    @media only screen and (max-width: 767px) and (min-width: 480px) {
    .responsive #scroll-top-link {
    display: block;
    }
    }

    Best regards,
    Ismael

    Hi!

    Please refer to this link then look for Dude’s solution: https://kriesi.at/support/topic/create-portafolio-entry-and-404-error/

    Best regards,
    Ismael

Viewing 30 posts - 61,441 through 61,470 (of 67,145 total)