Forum Replies Created

Viewing 30 posts - 61,921 through 61,950 (of 66,017 total)
  • Author
    Posts
  • in reply to: Big issue: cannot load featured images anymore! #182752

    Hi!

    I added a featured image on this post and it works fine.

    http://www.geoclima.com/wp-admin/post.php?post=3732&action=edit&message=1

    http://www.geoclima.com/geoclima-new-website/

    Regards,
    Ismael

    in reply to: Buttons in menu instead of search #182751

    Hey vollern!

    You can create a button using the Advance Layout Editor then inspect the button element. Copy the actual html code. Edit header.php, find this code:

    do_action('ava_after_main_menu');
                            ?>

    Below, add the html code for the button.

    <div class="avia-button-wrap avia-button-center avia-builder-el-0 avia-builder-el-no-sibling "><a href="" class="avia-button avia-icon_select-yes avia-color-theme-color avia-size-medium avia-position-center "><span class="avia_button_icon" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello"></span><span class="avia_iconbox_title">Click me</span></a></div>

    Cheers!
    Ismael

    in reply to: Image spanning from header to footer #182750

    Hey!

    Please try this:

    .bottle{
    display: none;
    width: 153px;
    height: 737px;
    position: absolute;
    left: 75px;
    top: 54px;
    z-index: 1000;
    }
    
    .home .bottle{
    display: block !important;
    width: 153px;
    height: 737px;
    position: absolute;
    left: 75px;
    top: 54px;
    z-index: 1000;
    }
    

    Best regards,
    Ismael

    in reply to: Controlling Search Results for Portfolio Pages #182734

    Hey skosmer!

    Please use this plugin: http://wordpress.org/plugins/relevanssi/

    Use the Exclusions and restrictions to exempt the Portfolio page.

    Cheers!
    Ismael

    in reply to: Strange font behavior and problems with Chrome #182733

    Hi gianmarizzi!

    Can you please post a link to your website? Firefox should render the fonts properly. A screen cast or video to the second issue will help. I don’t think we can reproduce that on our end.

    Cheers!
    Ismael

    in reply to: Please contribute and translate Enfold #182727

    Hey!

    Looks like WPML and LayerSlider is not compatible with each other yet. You can create a different slider for each language.

    http://wpml.org/forums/topic/how-to-translate-layerslider-wp-text/

    Best regards,
    Ismael

    in reply to: mobile image aspect ratio #182717

    Hi!

    Can you please give us a link to the website? The theme demo used a 1500x1500px images for the full screen slider.

    Regards,
    Ismael

    in reply to: Sort portfolio entries alphabetically #182715

    Hi Michael!

    You can add this on functions.php:

    function custom_post_grid_query( $query, $params ) {
    $query['orderby'] = 'title';
    $query['order'] = 'ASC';
    return $query;
    }
    add_filter( 'avia_post_grid_query', 'custom_post_grid_query', 10, 2);

    Remove browser cache then reload the page.

    Cheers!
    Ismael

    in reply to: Enfold Theme Load Time – How Quick Should It Be? #182714

    Hey grpetz!

    You can use cache plugins like W3 Total Cache and WP Super Cache to improve page speed. Use minify plugins like Better WordPress Minify to opmitize scripts. Use less third party plugins as much as possible.

    Cheers!
    Ismael

    in reply to: Logo Issue with IE8 and New Update #182322

    Hey Jonathan!

    Please add this on your custom.css or Quick CSS:

    .logo img {
    min-height: 58px !important;
    height: auto;
    }

    Cheers!
    Ismael

    Hi hodgsondesign!

    You need to manually add the social buttons and provide the images. Edit js > avia.js, find this code:

    elements.prettyPhoto({ social_tools:'',slideshow: 5000, deeplinking: false, overlay_gallery:false, default_width: ww, default_height: wh });

    For example, we will add a facebook button. Replace the code above with this:

    elements.prettyPhoto({ social_tools:'<div class="pp_social"><div class="facebook"><a href="facebook.com" class="facebook-button"></a></div></div>',slideshow: 5000, deeplinking: false, overlay_gallery:false, default_width: ww, default_height: wh });

    Add this on your custom.css or Quick CSS:

    .pp_social .facebook .facebook-button {
    display: block;
    width: 20px;
    height: 20px;
    background: red;
    position: relative;
    margin-top: -15px;
    }
    
    .pp_social .facebook {
    overflow: visible;
    }

    You can replace the background with the facebook icon and replace the url with your account.

    Cheers!
    Ismael

    in reply to: Header/Site Map Font Color and size #182317

    Hey!

    You can use this:

    .header_color .main_menu ul:first-child > li > a {
    color: red;
    }
    
    .header_color .main_menu ul:first-child > li.active-parent-item > a {
    color: blue;
    }

    Best regards,
    Ismael

    in reply to: Submit button – use the enfold instead of the form button #182316

    Hey!

    The bg-button.png doesn’t exist. It should be located here: http://www.yourwebsite.com/wp-content/themes/enfold/images/layout/bg-button.png

    Cheers!
    Ismael

    • This reply was modified 11 years, 8 months ago by Yigit. Reason: website is private
    in reply to: Login Like the support forum #182315

    Hi magicInfluence!

    There are certain shortcodes that you can use on bbpress. You can create a login and register page using the shortcodes. http://codex.bbpress.org/shortcodes/

    Best regards,
    Ismael

    in reply to: Easy Slider Arrows #182314

    Hi optizign13!

    Please add this on your custom.css or Quick CSS:

    #top .avia-slideshow-arrows a {
    visibility: visible !important;
    opacity: 1 !important;
    }

    Best regards,
    Ismael

    in reply to: Vimeo URL Links not working #182310

    Hi!

    You can edit config-templatebuilder > aviashortcodes > button.php, find this code on line 226:

    $output .= "<a href='{$link}' class='avia-button ".$this->class_by_arguments('icon_select, color, size, position' , $atts, true)."' {$blank} {$style} >";

    Replace it with:

    $output .= "<a chref='{$link}' class='noLightbox avia-button ".$this->class_by_arguments('icon_select, color, size, position' , $atts, true)."' {$blank} {$style} >";

    Remove browser cache then reload the page.

    Cheers!
    Ismael

    in reply to: Copying/Moving Elements to Different Pages #182308

    Hi!

    What do you mean keep it up to date? You can create a layout using the Advance Layout Builder and save it as a Template. You can then use this template on different pages.

    Cheers!
    Ismael

    in reply to: Sidebar on Single Product #182307

    Hey!

    That is the way the single product is formatted. The sidebar on single product pages will always be on the left. You can choose not to show it, add this on your custom.css or Quick CSS:

    #top #main .single-product-main-image .sidebar, #top #main .single-product-main-image .inner_sidebar {
    display: none;
    }

    Cheers!
    Ismael

    in reply to: Trying to create image gallery in blog post- not working! #182306

    Hey!

    I visited the page and it looks like you managed to add a gallery. I tested this on my end the gallery shortcode works fine.

    [av_gallery ids='316,315,314,313' style='thumbnails' preview_size='portfolio' thumb_size='portfolio' columns='5' imagelink='lightbox' lazyload='avia_lazyload']

    You really have a lot of plugins installed. Please deactivate all of them then test it on another browser. Go to wp-content/plugins folder and delete unused plugin folders.

    Please post the login details here and set it as a private reply.

    Cheers!
    Ismael

    in reply to: Have image overlay always display #182301

    Hey!

    Please try to add this on your custom.css or Quick CSS;

    .image-overlay .image-overlay-inside {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    content: '\E897';
    font-family: 'entypo-fontello';
    border-radius: 10px !important;
    line-height: 60px !important;
    height: 60px !important;
    background-color: #DD0303 !important;
    font-size: 24px;
    }

    Regards,
    Ismael

    in reply to: Problem with update to 2.4.1 #182299

    Hey LRS123!

    Can you please post the link to the post with the featured image? You can hide it using CSS:

    .single .small-preview {
    display: none;
    }
    
    .single .big-preview.single-big {
    display: none;
    }

    Best regards,
    Ismael

    in reply to: Tabs Styling #182296

    Hi optizign13!

    If you want to change the style of a specific element on a certain page or post, you can use the Google Chrome Inspect Element. Look for the unique css body class.

    On the example above, the page’s unique selector is .page-id-2251. We can use it to change the element within that page. For example, if we want to change the header, we can use this on our Quick CSS field.

    .page-id-2251 #header_main {
    border-bottom-width: 3px;
    border-bottom-style: dotted;
    background: red;
    }

    Can you please post a screenshot of the changes you want for the tab?

    Best regards,
    Ismael

    in reply to: Icon box: text in field auto-inserted #182295

    Hi fusion01!

    You can add an invisible div container. Switch to Text mode then add this:

    <div class="space"></div>

    Regards,
    Ismael

    Hi!

    I visited the page here: http://liveurstory.com/hipster-trendster

    I don’t see any 2000px wide images. On the backend, you can switch to Text or HTML editor.

    Regards,
    Ismael

    in reply to: to change the product layout of the Woocommerce. #182291

    Hi!

    The images you uploaded are broken. Please post it again here.

    Regards,
    Ismael

    in reply to: Post featured image is resizing too big. #182290

    Hey heidi22!

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

    .single .fullsize .big-preview.single-big {
    width: 460px;
    margin: 0 auto;
    }

    Best regards,
    Ismael

    in reply to: different headers for same site #182287

    Hi!

    It should be hard coded on header.php. You can use conditional statements. I know the freelancer that you will hire will know these things.

    Best regards,
    Ismael

    in reply to: Unable to Update #182286

    Hey kevhortz!

    Please do a manual update via FTP. Looks like you have a very old version of the theme. Download the latest version on your themeforest account. https://vimeo.com/channels/aviathemes/64927356

    Cheers!
    Ismael

    in reply to: Blog not updating Settings – Part 2 #181440

    Hi!

    I created a page and insert the Blog Post element. I selected the WOD category because it is the only one available aside from uncategorized. I leave the other options as it is then publish the page. It works fine. I also updated the Blog Post element again and selected the Grid Layout style. The WOD category is still selected as you can see on this page. http://northplanocrossfit.pastygangsta.com/test/

    Cheers!
    Ismael

    Hi!

    You can post the login details here as a private reply. Did you add any plugins prior to the issue? Please deactivate all of them then test it on a different browser. A screenshot will help.

    Cheers!
    Ismael

Viewing 30 posts - 61,921 through 61,950 (of 66,017 total)