Forum Replies Created

Viewing 30 posts - 60,991 through 61,020 (of 67,534 total)
  • Author
    Posts
  • in reply to: How can I add shortcode content to the header? #225977

    Hey!

    You can edit header.php, find this code on line 92:

    <div id='header_meta' class='container_wrap container_wrap_meta'>
    
                      <div class='container'>

    Create a new div below then use the do_shortcode function. Referring to the site, maybe you add something like this:

    <div class="stockQuote">
               <?php echo do_shortcode('[whatever_my_shortcode_is]');  ?>                       
    </div>

    Cheers!
    Ismael

    in reply to: Sidebar login #225975

    Hey Kevin!

    You can try a login widget like http://wordpress.org/plugins/sidebar-login/ or http://wordpress.org/plugins/login-with-ajax/

    Cheers!
    Ismael

    Hey!

    If you want to center align the logo, you can add this on Quick CSS or custom.css:

    .logo {
    width: 100%;
    }
    
    .logo a {
    width: 300px;
    margin: 0 auto;
    }
    

    Regards,
    Ismael

    in reply to: Enfold Showcase #225955

    Hi!

    Glad to see users helping each other out. :)

    Regards,
    Ismael

    in reply to: Video slide not working correctly in Firefox #225950

    Hi Jaap!

    Are you working on a MAC computer? I tested this on Firefox 28.0 Windows 8 and the video background works fine. I’ll report the problem to Kriesi. Meanwhile, please wait for Josue and Devin to respond. They can check this on a MAC.

    Regards,
    Ismael

    in reply to: Site is erroring suddenly #225949

    Hi charger70!

    This seems to be a server side issue. Please ask your host. Josue noted that you should have space in your /tmp directory, and with the correct permissions. If you don’t know anything about it please contact your hosting support. Do you have godaddy as host?

    Regards,
    Ismael

    in reply to: 2 new features for theme and a question #225948

    Hey!

    I’m sorry but most of your inquiry or expected features are not included within the theme. You should hire a freelance developer to add those features or find a plugin that may work around theme. Note, that we don’t fully support third party plugins. For inquiry number 3, you can create div on a Text Block, something like this:

    <div class="flex_column forty-percent-div first">PLACE CONTENT HERE</div>
    <div class="flex_column sixty-percent-div">PLACE CONTENT HERE</div>
    

    Then add this on Quick CSS to define the width of the containers:

    .forty-percent-div {
    width: 38% !important;
    }
    
    .sixty-percent-div {
    width: 56% !important;
    }

    Best regards,
    Ismael

    in reply to: Full page width the same size as post width #225947

    Hi Jack!

    You can this on Quick CSS to decrease the size of the page content just like the post without sidebar:

    .page .fullsize .content .entry-content-wrapper {
    padding-right: 0;
    max-width: 600px;
    margin: 0 auto;
    }

    Cheers!
    Ismael

    in reply to: Disable lightbox in portfolio #225945

    Hey!

    Aside from the changes above, please edit the same file then find this code on line 411:

    $output .= "<".$link_markup[0]." data-rel='grid-".avia_post_grid::$grid."' class='grid-image avia-hover-fx'>".$custom_overlay.$image."</".$link_markup[1].">";
    

    Replace it with:

     $output .= "<a class='grid-image avia-hover-fx'>".$custom_overlay.$image."</a>";
    

    This should remove the link from the portfolio thumbnails.

    Best regards,
    Ismael

    in reply to: Gallery titles #225943

    Hey!

    If you want to remove the title attribute for all images, you can edit js > avia.js. Find this code on line 5:

     $(document).ready(function()
        {

    Below, add this code:

    $('img').removeAttr('title');
    

    Please post the link to the actual website so that we can inspect it. Please try this on Quick CSS:

    .avia-tooltip {
    top: 400px !important;
    }

    Regards,
    Ismael

    in reply to: fontello uploading error #225942

    Hey!

    I’m not sure if it is possible to add fonts manually. I’ll ask Dude. Are you adding multiple icon fonts? Please try to select a single icon font then upload it on the iconfont manager.

    Best regards,
    Ismael

    in reply to: Firefox MAC can't play video background #225939

    Hey solljul!

    Please wait for Josue and Devin to respond. They can check it on their MAC system. AFAIK there is no issue with Firefox. We’ll report it to Kriesi.

    Regards,
    Ismael

    in reply to: adding links to a gallery #225935

    Hi!

    You should use the WP Gallery Custom Links plugin. Add Dude’s code at the very bottom of functions.php. Make sure you have the latest version of Enfold.

    add_filter('avf_avia_builder_gallery_image_link', 'avia_change_gallery_thumbnail_link', 10, 4);
    function avia_change_gallery_thumbnail_link($link, $attachment, $atts, $meta)
    {
        $custom_url = get_post_meta($attachment->ID, '_gallery_link_url', true);
        if(!empty($custom_url))
        {
            $link[0] = $custom_url;
            $link['custom_link_class'] = 'aviaopeninbrowser';
        }
        return $link;
    }

    This works on our end. As you can see on the screenshot the link of the hovered image is google.com, which is the url that we set for the image.

    Cheers!
    Ismael

    in reply to: Forum manager has gone #225934

    Hey!

    Can you please post the login details here? We would like to check it. Deactivate all existing plugins because we don’t want to mess up your plugin settings.

    Best regards,
    Ismael

    in reply to: Layerslider flickers on ipad #225931

    Hey!

    The website is on maintenance mode. You should probably disable it so that we can check the slider.

    Best regards,
    Ismael

    Hi!

    3.) You can set a minimum width for the menu but this might cause you trouble on smaller screen sizes. Use media queries to change the width on smaller screens. Add this on Quick CSS:

    .bottom_nav_header.social_header .main_menu ul:first-child>li a {
    min-width: 100px;
    text-align: center;
    }

    4.) Can you please post a screenshot of what you’re trying to do?

    Regards,
    Ismael

    Hey!

    Can you please give us a link to the page with the “Search” text? How did you add it?

    Best regards,
    Ismael

    in reply to: Portfolio title and padding #225611

    Hey awilson3rd!

    You can edit config-templatebuilder > avia-shortcodes > portfolio.php, find this code on line 432:

    $output .= "<h3 class='grid-entry-title entry-title' $markup><a href='{$title_link}' title='".esc_attr(strip_tags($title))."'>".$title."</a></h3>";
    

    Replace it with:

    $output .= "<h2 class='grid-entry-title entry-title' $markup><a href='{$title_link}' title='".esc_attr(strip_tags($title))."'>".$title."</a></h2>";
    

    Add this on Quick CSS or custom.css:

    #top .grid-entry.no_margin.av_one_third {
    padding: 10px;
    }

    Best regards,
    Ismael

    in reply to: No admin bar on the top #225606

    Hey!

    No, we are not aware of this problem with the plugin. Please contact the plugin author or disable it entirely.

    Best regards,
    Ismael

    in reply to: Forum manager has gone #225598

    Hey Indiatravelz!

    Are you talking about the BBpress forum? Maybe you deactivated it on the plugins panel.

    Regards,
    Ismael

    in reply to: 2 new features for theme and a question #225587

    Hey Miikey!

    1.) You can try this plugin: http://wordpress.org/plugins/subscribe-to-comments/

    2.) What do you mean by “internal links”?

    3.) You need to manually create a column like that. Set the width on Quick CSS or custom.css.

    4.) Please use a plugin like AddThis or ShareThis.

    Cheers!
    Ismael

    in reply to: Code not loaded when using Avia #225572

    Hey!

    Can you please post the login details here? Set it as a private reply.

    Best regards,
    Ismael

    in reply to: Search box appearing in the wrong place #225568

    Hey dngood!4

    The search tool tip is working properly on our end so it must be a plugin on your end that is causing the issue. Please deactivate all plugins then remove browser cache or test it on another browser.

    Regards,
    Ismael

    in reply to: Create subfolders in Media #225560

    Hey CivilC!

    I don’t think it is possible to create subfolders on the Media Library panel but you can change the upload directory. Please refer to this link.

    Cheers!
    Ismael

    in reply to: blog-meta title contains all text #225552

    Hey Stingery!

    Please edit includes > loop-index.php, find this code on line 70:

    $featured_img_desc = get_post_field('post_content', get_post_thumbnail_id());
    

    Replace it with:

    $featured_img_desc = get_post_field('post_title', get_post_thumbnail_id());
    

    Best regards,
    Ismael

    in reply to: Animated elements in page for touch devices #225544

    Hey!

    What kind of touch device are you testing this? Please give us a link to the website with the animations.

    Regards,
    Ismael

    in reply to: distortions since 2.5.1 #225530

    Hey!

    I’m sorry but I don’t understand the problem clearly. Can you please post a screenshot of how you want the post to look like? Starting from “Will Saving Poor Children Lead To Overpopulation?” heading.

    Best regards,
    Ismael

    in reply to: Toggle tab text position #225526

    Hey!

    The login credentials are invalid. Please check. Post the actual link to the page.

    Cheers!
    Ismael

    in reply to: Dutch translation #225523

    Hi!

    Did you translate the string “You are here” to “U bevindt zich hier” using the codestyling localization plugin? Please post the login details here, we would like to inspect it.

    Regards,
    Ismael

    in reply to: SLOW LOAD enfold #225520

    Hey!

    Have you tried increasing the wordpress php memory limit? Please refer to this link. You can post the link of the website here so that we can check it.

    Best regards,
    Ismael

Viewing 30 posts - 60,991 through 61,020 (of 67,534 total)