Forum Replies Created

Viewing 30 posts - 62,161 through 62,190 (of 67,003 total)
  • Author
    Posts
  • in reply to: Can anyone recommend a community plugin? #197517

    Hey David!

    You can use the bbPress plugin. Also, visit http://codecanyon.net/ for more wordpress community plugin like this: http://codecanyon.net/item/sabaidiscuss-for-wordpress/3455723?WT.ac=category_item&WT.seg_1=category_item&WT.z_author=onokazu

    Regards,
    Ismael

    in reply to: Mobile Posts have large space between logo and page title #197514

    Hey!

    I tested the code I gave you and it works fine. This is how it should look like after you added the css modifications:

    I modified the code a bit. Please use this:

    @media only screen and (max-width: 767px) {
    #header_main {
    max-height: 100px;
    }
    .mobile_active #advanced_menu_toggle {
    top: 50px;
    }
    
    .responsive .mobile_slide_out .logo {
    position: relative;
    top: 5px;
    }
    
    .responsive.social_header .phone-info {
    margin-top: 10px;
    }
    }

    Remove browser cache then reload the page a few times.

    Cheers!
    Ismael

    in reply to: "Custom Background Image" Optimum Dimensions / File Size #197505

    Hi!

    1.) This is a sample of a custom background use on the demo. The file size is 181kb. http://kriesi.at/themes/enfold/files/2013/04/floor.jpg

    2.) Where is this happening? Can you please give us a link to the actual page with the fullwidth image?

    Regards,
    Ismael

    in reply to: bbPress 2.5 #197504

    Hey!

    You can change the background color using this:

    #bbpress-forums div.odd, #bbpress-forums ul.odd {
    background-color: black !important;
    }

    Regards,
    Ismael

    in reply to: Blog – Masonry #197503

    Hey!

    You can watch this video: http://vimeo.com/channels/aviathemes/77433498

    Best regards,
    Ismael

    in reply to: Extra pages and SEO #197501

    Hey MaxMyBody1!

    Did you import the dummy data? You can delete those pages or set it as draft.

    Best regards,
    Ismael

    in reply to: No animation on gallery load #197500

    Hey JaredBurnett!

    Please edit shortcode.js, find this code on line 673:

    //trigger displaying of thumbnails
    gallery.on('avia_start_animation', function()
    {
    images.each(function(i)
    {
    var image = $(this);
    setTimeout(function(){ image.addClass('avia_start_animation') }, (i * 110));
    });
    });

    Replace it with:

    //trigger displaying of thumbnails
    gallery.on('avia_start_animation', function()
    {
    images.each(function(i)
    {
    var image = $(this);
    setTimeout(function(){ image.addClass('avia_start_animation') }, (i * 110));
    });
    }).trigger('avia_start_animation');

    Remove browser cache then reload the page a few times.

    Regards,
    Ismael

    in reply to: How to manipulate alignment in color-sections #197499

    Hi!

    It shouldn’t break the theme. If you have an empty child theme functions.php, it should look like this when you add the code:

    <?php
    
    /*
    * Add your own functions here. You can also copy some of the theme functions into this file. 
    * WordPress will use those functions instead of the original functions then.
    */
    
    add_theme_support('avia_template_builder_custom_css');

    Regards,
    Ismael

    in reply to: Spacing Issue on Mobile View #197493

    Hey Gstar72!

    You can add this on your custom.css or Quick CSS:

    @media only screen and (max-width: 767px) {
    #header_main {
    padding-bottom: 20px;
    }
    }

    Best regards,
    Ismael

    in reply to: Full Screen Slider Not Showing #197492

    Hey!

    Try to disable it using this on Quick CSS:

    #menu-item-search {
    display: none;
    }

    Regards,
    Ismael

    in reply to: How to center buttons at the advanced layer slider? #197192

    Hi!

    Please edit the layer then go to Attributes panel. Add a unique css selector on the layer then use media queries to position it on different screen sizes. :)

    Regards,
    Ismael

    in reply to: 2nd logo in header #197191

    Hey!

    I don’t see the second logo on the link you gave me. Don’t forget to add the php closing and opening tags.

    Regards,
    Ismael

    in reply to: How big does the graphic have to be? #197189

    Hey justinwheelon!

    The suggested image size is 1600x470px if you want a high quality slider but 900x350px image dimension will do.

    Cheers!
    Ismael

    in reply to: Can someone please help me update #197185

    Hi!

    The latest version of the theme is 2.4.2. Please delete the enfold folder on wp-content/themes/ folder. You can install the theme via FTP, watch this video: http://vimeo.com/channels/aviathemes/64927356

    Cheers!
    Ismael

    in reply to: Enfold install failure #197184

    Hi!

    Maybe a file is corrupt. Please download the theme again on your themeforest account.

    Best regards,
    Ismael

    in reply to: Missing "Advanced Layout Editor" since WP Update 3.7.1 #197183

    Hey!

    Please download the latest version of the theme on your themeforest account. Create a backup of your current installation including the database. Watch this video on how to update using FTP: http://vimeo.com/channels/aviathemes/67209750

    Cheers!
    Ismael

    in reply to: Linking the Iconbox #197182

    Hi!

    Please edit js > avia.js, find this code on line 5:

    $(document).ready(function()
        {

    Below, add Josue’s code with a few modifications:

    jQuery(".home article.iconbox, .page-id-2378 article.iconbox").each(function(){ 
        var theLink = jQuery(this).find("a").attr("href");
    	jQuery(this).on("click", function(){
    		window.location.href = theLink;
    	});
    });

    Add this on your custom.css or Quick CSS:

    .page-id-2378 .iconbox_icon, .home .iconbox_icon  {
    cursor: pointer;
    }

    Regards,
    Ismael

    in reply to: Tweak the blog posts – excerpts, formatting, etc. #197181

    Hi mgerenser!

    Can you please give us a link to the website? You can modify the thumbnail size on functions.php, find this code:

    $avia_config['imgSize']['portfolio'] = array('width'=>495, 'height'=>400 ); // images for portfolio entries (2,3 column)

    Change the width and height then use this plugin to regenerate the thumbnails: http://wordpress.org/plugins/regenerate-thumbnails/
    Still, the size of the images will depend on the width of the container. Do you have a sidebar on the homepage?

    2.) You can use the Excerpt box option. Edit a post then look for Screen Options, enable the Excerpt box.

    3.) Is this a separate page or the blog that you have on the homepage? Please give us a link to the website.

    Regards,
    Ismael

    in reply to: Testimonials sizing #197179

    Hi simplefly!

    We need to the actual link to the website so that we can inspect it. Please post it here.

    Regards,
    Ismael

    in reply to: I need a mobileMenu for iPad (landscape) view #197178

    Hey!

    Sorry, wrong screenshot. Please add the code on custom.css:

    @media only screen and (max-width: 989px) and (min-width: 768px) {
    .responsive .mobile_menu_tablet .main_menu {
    display: block;
    bottom: -60px;
    right: 175px;
    }
    }

    This is supposed to be what it looks like after you added the code:

    Cheers!
    Ismael

    in reply to: Hover in pictures #197176

    Hi autogrupo!

    Actually, you can’t. It depends on the browser. You can change the name of the file on Media > Library. You can also remove the title attribute.

    Cheers!
    Ismael

    in reply to: Background image for all content #196923

    Hi derek62!

    You can use the Color Section. Upload a background image then set the Background Repeat to Stretch to fit. Add the content inside the color section.

    Cheers!
    Ismael

    in reply to: Home page Post Slider–full content #196917

    Hi!

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

    $prepare_excerpt = !empty($entry->post_excerpt) ? $entry->post_excerpt : avia_backend_truncate($entry->post_content, apply_filters( 'avf_postgrid_excerpt_length' , 60) , apply_filters( 'avf_postgrid_excerpt_delimiter' , " "), "…", true, '');

    Replace it with:

    $prepare_excerpt = !empty($entry->post_excerpt) ? $entry->post_excerpt : avia_backend_truncate($entry->post_content, apply_filters( 'avf_postgrid_excerpt_length' , 300) , apply_filters( 'avf_postgrid_excerpt_delimiter' , " "), "…", true, '');

    Cheers!
    Ismael

    in reply to: minimum height for main content #196915

    Hi!

    No, it’s not possible. Enfold offers a lot of layout structure and yours might be different from what we have on our end. Please post a screenshot here.

    Cheers!
    Ismael

    in reply to: Problem with portofolio #196914

    Hey georgescumariusss!

    Please flush the permalink settings on Settings > Permalinks a few times. Change it then revert it back a few times. Please refer to this link for further solutions: http://codex.wordpress.org/Using_Permalinks#Fixing_Permalink_Problems

    Cheers!
    Ismael

    in reply to: Green mouse over for links only works sometimes? #196913

    Hey!

    Please set it again or recreate the first and last images from scratch. Remove browser cache then reload the page a few times.Test it on another browser. The animated images should render html tags like this:

    <img class="avia_image avia_animated_image avia_animate_when_almost_visible top-to-bottom avia_start_animation" src="http://luma-products.com/wp-content/uploads/2013/10/cowpots_logo-300x116.png" alt="" title="" itemprop="contentURL">

    I don’t see this one on the first and last images.

    Regards,
    Ismael

    in reply to: Static front page #196912

    Hi Kindbowebb!

    Please don’t set any page on Settings > Reading > Front page displays > Static page. You can define the homepage on Enfold > Theme Options > Frontpage Settings.

    Regards,
    Ismael

    in reply to: FOOTER SOCKET ISSUE ON HOME PAGE/MENU DISAPPEARS #196911

    Hi silviouk!

    It is on the maintenance mode. Can you please give us a temporary login credentials? Post it here as a private reply.

    Best regards,
    Ismael

    in reply to: Schriftgröße der Kommentarbox und Kontaktbox #196910

    Hi crevlon!

    What headings? Can you please post a screenshot? A link to the page with the comment box and contact box will help. I don’t see any particular heading on the comment box.

    Cheers!
    Ismael

    in reply to: How to center buttons at the advanced layer slider? #196909

    Hi jacobsever!

    The buttons are center aligned when I check the website.

    Best regards,
    Ismael

Viewing 30 posts - 62,161 through 62,190 (of 67,003 total)